2016-05-31 71 views
0

如何將DataFrame列彼此忽略忽略索引?例如針對彼此繪製DataFrame列

讓一個DataFramedf1如下:

x y 
0 0 5 
1 1 10 
2 2 15 
3 3 20 
4 4 25 

我已經試過:

import matplotlib.pyplot as plt 
import pandas as pd 
df1.plot() 
df1.plot(df1['x'],df1['y']) 

第一種情況產生兩個地塊,一個爲縱座標的每一列和索引作爲橫座標,第二個產生越界索引錯誤。

回答

1

,你可以:

df1.set_index('x').plot() 
+0

完美,現在我覺得啞巴 – Vyraj