答案 0 :(得分:0)
您只需要绘制专栏A
,默认情况下x
使用y
的索引和#line is default method, so omitted
Test['A'].plot(style='o')
的值:
index
另一个解决方案是Series.plot
,适用于来自Test.reset_index().plot(x='index', y='A', style='o')
和reset_index
的列:
Test=pd.DataFrame({'A':[3.0,4,5,10], 'B':[3.0,4,5,9]})
print (Test)
A B
0 3.0 3.0
1 4.0 4.0
2 5.0 5.0
3 10.0 9.0
Test['A'].plot(style='o')
样品:
print (Test.reset_index())
index A B
0 0 3.0 3.0
1 1 4.0 4.0
2 2 5.0 5.0
3 3 10.0 9.0
Test.reset_index().plot(x='index', y='A', style='o')
UInt32