溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python數(shù)據(jù)分析之時間序列

發(fā)布時間:2020-07-10 06:56:27 來源:網(wǎng)絡(luò) 閱讀:946 作者:up4ever 欄目:編程語言

1. 時間序列類型

  • 時間戳(timestramp)
    即特定的時刻
  • 固定時期(period)
    如2018年1月或2018年1月1日
  • 時間間隔(interval)
    由起始和結(jié)束時間戳表示

2. Python處理模塊

Python標(biāo)準(zhǔn)庫包含用于日期和時間數(shù)據(jù)的數(shù)據(jù)類型,主要用到datetime、time、calendar模塊。
datetime模塊常使用datetime和timedelta兩種實例方法

  • datetime:以毫秒形式存儲日期和時間
  • timedelta:表示兩個datetime對象的時間差

引入datetime模塊

import datetime

生成datetime對象

start_date = datetime(2018,1,1)
print(type(start_date))
end_date = datetime(2018,12,31)
print(type(end_date))
delta_date = end_date - start_date
print(type(delta_date))

Python數(shù)據(jù)分析之時間序列

字符串轉(zhuǎn)化datetime對象

  • datetime.strptime()
    date_str = '2018-1-1'
    date_strptime = datetime.strptime(date_str, '%Y-%m-%d')
    print(type(date_strptime))
    print(date_strptime)

    Python數(shù)據(jù)分析之時間序列

  • dateutil.parser.parse()
    date_str2 = '1-1-2018'
    date_parse = parse(date_str2)
    print(type(date_parse))
    print(date_parse)

    Python數(shù)據(jù)分析之時間序列

  • pandas.to_datetime()
    date_arr = ['1/1/2018','12/31/2018']
    date_todatetime = pd.to_datetime(date_arr)
    print(type(date_todatetime))
    print(date_todatetime)

    Python數(shù)據(jù)分析之時間序列

datetime對象轉(zhuǎn)化字符串

  • str

    start_date = datetime(2018,1,1)
    str_start_date = str(start_date)
    print(type(str_start_date))
    print(str_start_date)

    Python數(shù)據(jù)分析之時間序列

  • strftime
    start_date = datetime(2018,1,1)
    strftime_start_date = start_date.strftime('%Y-%m-%d')
    print(type(strftime_start_date))
    print(strftime_start_date)

    Python數(shù)據(jù)分析之時間序列

3. Pandas 時間處理

  • serial

    ts = pd.Series(np.random.randn(6), index=date_list)
    print(type(ts))
    print(ts)

    Python數(shù)據(jù)分析之時間序列

  • date_range()

    dates = pd.date_range('2018-1-1', periods=5, freq='W-SAT') 
    print(dates)
    print(pd.Series(np.random.randn(5), index=dates))

    Python數(shù)據(jù)分析之時間序列

    date_index = pd.date_range('2018/1/1', '2018/2/1')
    print(date_index)

    Python數(shù)據(jù)分析之時間序列

  • 移動數(shù)據(jù)
    ts = pd.Series(np.random.randn(5), index=pd.date_range('20180101', periods=5, freq='W-SAT'))
    print(ts)

    Python數(shù)據(jù)分析之時間序列

    print(ts.shift(1))

    Python數(shù)據(jù)分析之時間序列

    print(ts.shift(-1))

    Python數(shù)據(jù)分析之時間序列

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI