【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事

如何使用statsmodel

  • 安装statsmodel
    • 使用easy_install或pip安装statsmodels

      easy_install -U statsmodels
      pip install -U statsmodels

      【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第1张图片
      【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第2张图片
    • 使用源代码安装statsmodels
  • 最小二乘法拟合

    1. 加载数据
      import statsmodels.api
      data = statsmodels.api.datasets.copper.load_pandas()

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第3张图片

    1. 拟合数据
      x, y = data.exog, data.endog
      fit = statsmodels.api.OLS(y, x).fit()

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第4张图片

    import statsmodels.api
    data = statsmodels.api.datasets.copper.load_pandas()
    
    x, y = data.exog, data.endog
    
    fit = statsmodels.api.OLS(y, x).fit()
    print "Fit params", fit.params
    print 
    print "Summary"
    print 
    print fit.summary()

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第5张图片
    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第6张图片

  • 重采样时间序列数据

    1. 创建一个日期时间索引对象
      dt_idx = pandas.DatetimeIndex(quotes.date)

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第7张图片

    1. 创建DataFrame对象
      df = pandas.DataFrame(quotes.close, index = dt_idx, columns = [symbol])

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第8张图片

    1. 重采样
      resampled = df.resample('M', how=numpy.mean)

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第9张图片

    1. 绘图
      df.plot()
      resampled.plot()
      show()

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第10张图片

    import pandas
    from matplotlib.pyplot import show, legend
    from datetime import datetime
    from matplotlib import finance
    import numpy
    
    start = datetime(2011, 01, 01)
    end = datetime(2012, 01, 01)
    
    symbol = "AAPL"
    quotes = finance.quotes_historical_yahoo_ochl(symbol, start, end, asobject = True)
    
    dt_idx = pandas.DatetimeIndex(quotes.date)
    
    df = pandas.DataFrame(quotes.close, index = dt_idx, columns = [symbol])
    
    resampled = df.resample('M', how=numpy.mean)
    print resampled
    
    df.plot()
    resampled.plot()
    show()

    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第11张图片
    【脚本语言系列】关于Python统计分析statsmodel,你需要知道的事_第12张图片

什么是statsmodel

statsmodels的发行版有很多的范例数据集。

你可能感兴趣的:(脚本语言)