绘制(5,4)熊猫数据框

时间:2018-09-23 23:18:01

标签: python pandas dataframe

我有一个library(stringr) str_remove(x, "\\.[^.]*$") #[1] "ENST00000338167" "ABCDE.42927" 形状的DataFrame:

x <- c("ENST00000338167.9", "ABCDE.42927")  

我正在尝试使用(5, 4)值作为X轴标签和kernel linear poly rbf sigmoid 0.001 0.030457 0.042301 0.272420 0.272420 0.010 0.013536 0.035533 0.272420 0.025381 0.100 0.008460 0.023689 0.042301 0.108291 1.000 0.005076 0.016920 0.015228 0.111675 10.000 0.003384 0.016920 0.010152 0.113367 Cpoly,{{1 }}。我该怎么办?

我尝试linear,但这产生了一个在X轴上有6个值而不是我想要的5个值的图。我不确定为什么会有6个值

尝试:

rbf

2 个答案:

答案 0 :(得分:2)

已更新:图表使用对数线性轴。

df.plot.line(x='kernel', y=df.columns[1:], style='-o', logx=True)

enter image description here 您可以根据需要添加网格,标签和标题。

答案 1 :(得分:0)

for col in df_p.columns.difference(['C']):
    plt.plot(df_p['C'], df_p[col])