Как построить многоколоночную гистограмму с использованием Seaborn? - PullRequest
0 голосов
/ 07 марта 2019

У меня есть фрейм данных, как показано ниже: enter image description here

Я хочу структурировать его таким образом, чтобы иметь возможность строить гистограмму, как показано ниже:

enter image description here

Данные здесь .

Примечание: данные Echo API = данные-посредники

Мой существующий код показан ниже, я не знаю, как с ним работать. Любая помощь очень ценится.

def save_bar_chart(title):
    filename = "response_time_summary_" + str(message_size) + "_" + str(backend_delay) + "ms.png"
    print("Creating chart: " + title + ", File name: " + filename)
    fig, ax = plt.subplots()
    fig.set_size_inches(11, 8)

    df_results = df.loc[(df['Message Size (Bytes)'] == message_size) & (df['Back-end Service Delay (ms)'] == backend_delay)]

    df_results = df_results[
        [ 'Scenario Name','Concurrent Users', '90th Percentile of Response Time (ms)', '95th Percentile of Response Time (ms)',
         '99th Percentile of Response Time (ms)']]

1 Ответ

2 голосов
/ 07 марта 2019

Вы хотите melt, а затем используйте барплот с hue:

import seaborn as sns

small_data = df_results[[ 'Scenario Name','Concurrent Users', '90th Percentile of Response Time (ms)', 
                 '95th Percentile of Response Time (ms)','99th Percentile of Response Time (ms)']]
small_data = small_data.melt(id_vars=['Scenario Name', 'Concurrent Users'])
small_data['new_var'] = small_data.variable + ' - ' + small_data['Scenario Name']

g = sns.barplot(x="Concurrent Users", y="value", hue='new_var', data=small_data)
sns.set(rc={'figure.figsize':(11,8)})

Выход:

enter image description here

Для сохранения используйте

fig = g.get_figure()
fig.savefig(filename)

И просто оберните все это в функцию.

...