1
import pandas as pd
import numpy as np
dates =pd.date_range('20150501',periods=5)
df =pd.DataFrame(np.random.randn(5,4),index=dates,columns="i know its example".split())
df.describe()
與df.describe
相比給出了不同的結果。請向我解釋這些模塊之間的區別。df.describe和df.describe之間的區別()
'describe'是數據幀對象的方法。要調用方法,您必須使用方括號。沒有括號,它只是給你方法對象本身,而不是它的結果。 – joris