基於pandas的時間序列處理方法

import pandas as pd import numpy as np #生成時間序列 rng = pd.date_range('2016/1/1', periods=20, freq='D') time = pd.Series(np.random.rand(20), index=rng) #print(time) #過濾數據 time.truncate(before='2016-1-10'
相關文章
相關標籤/搜索