今天要來介紹:Python Pandas 資料分析 - Series 單維度資料
1.內建索引
#載入Pandas模組
import pandas as pd
#以列表資料為底,建立Series
pd.Series(列表)
2.自訂索引
#載入Pandas模組
import pandas as pd
#以列表資料為底,建立Series
pd.Series(列表, index=索引列表)
1.資料型態
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.dtype)
2.資料數量
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.size)
2.資料索引
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.index)