#範例3-1:繪圖(y=x^2)串列數據 import pandas as pd dataframe = pd.DataFrame([1,4,9,16,25,36]) dataframe.plot(kind='line',title='y=x^2')