简体   繁体   English

Plot 一棒 plot 使用 Seaborn

[英]Plot a bar plot by using Seaborn

I am new in data visualization.我是数据可视化的新手。 I am practicing Seaborn and I am trying to plot a barplot with this dataframe.我正在练习 Seaborn 并且我正在尝试使用 dataframe 制作 plot 条形图。 I want the chart has 3 bars on each symbol, however, the output has only 1 bar on each symbol.我希望图表在每个符号上有 3 个柱,但是,output 每个符号只有 1 个柱。 May I know how to fix it?我可以知道如何解决吗?

Part of the DataFrame... DataFrame部分...

        returns_7d  returns_30d returns_ytd
symbol          
TDOC    -0.210839   -17.712095  -3.922423
EXAS    -4.649067   -6.439275   -1.415680
PACB    -2.953760   11.886232   37.815711
REGN    0.465364    5.803325    -0.629814
TWST    6.707956    3.619967    10.4043

The code like this:像这样的代码:

import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns

# Change the style of the figure to the "dark" theme
sns.set_style("darkgrid")

plt.figure(figsize=(12,6))
plt.title('YTD Returns')

sns.barplot(x=returns_all.index,y=returns_all['returns_7d'],color='b',edgecolor='w',label='returns_7d')
sns.barplot(x=returns_all.index,y=returns_all['returns_30d'],color='r',edgecolor='w',label='returns_30d')
sns.barplot(x=returns_all.index,y=returns_all['returns_ytd'],color='g',edgecolor='w',label='returns_ytd')


plt.xlabel('symbol', fontsize=11)
plt.ylabel('%', fontsize=11)
plt.xticks(rotation = 90)
plt.legend()
plt.show()

Output like this: Output 像这样:

在此处输入图像描述

I think pandas.DataFrame.plot() is all your need.我认为pandas.DataFrame.plot()就是你所需要的。

df.plot(kind='bar')

在此处输入图像描述

To create such a plot using seaborn, note that seaborn prefers its data in "long form" .要使用 seaborn 创建这样的 plot,请注意 seaborn 更喜欢“长格式”的数据。 reset_index converts the index to a regular column, and melt converts the columns to <variable, value> pairs. reset_index将索引转换为常规列,并将melt转换为<variable, value>对。

import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
from io import StringIO

data_str = '''   returns_7d  returns_30d returns_ytd  
TDOC    -0.210839   -17.712095  -3.922423
EXAS    -4.649067   -6.439275   -1.415680
PACB    -2.953760   11.886232   37.815711
REGN    0.465364    5.803325    -0.629814
TWST    6.707956    3.619967    10.4043'''
df = pd.read_csv(StringIO(data_str), delim_whitespace=True)
df.index.name = 'symbol'
df_long = df.reset_index().melt(id_vars='symbol')

sns.barplot(data=df_long, x='symbol', y='value', hue='variable', palette='rocket')
plt.show()

seaborn barplot 与长格式的列

The long dataframe looks like:长 dataframe 看起来像:

   symbol     variable      value
0    TDOC   returns_7d  -0.210839
1    EXAS   returns_7d  -4.649067
2    PACB   returns_7d  -2.953760
3    REGN   returns_7d   0.465364
4    TWST   returns_7d   6.707956
5    TDOC  returns_30d -17.712095
6    EXAS  returns_30d  -6.439275
7    PACB  returns_30d  11.886232
8    REGN  returns_30d   5.803325
9    TWST  returns_30d   3.619967
10   TDOC  returns_ytd  -3.922423
11   EXAS  returns_ytd  -1.415680
12   PACB  returns_ytd  37.815711
13   REGN  returns_ytd  -0.629814
14   TWST  returns_ytd  10.404300

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM