Statmodel Johansen coint测试仅返回对象,但不返回实际测试结果

时间:2019-06-14 17:58:56

标签: python-3.x statsmodels

尝试使用statsmodels函数获取Johansen集成测试结果。但是我只能得到一个持有人对象

我尝试打印对象。

render () {
  const { search } = this.props.location
  const shouldDisplayRowDetail = search.includes('rowId')
  return (
    <div>
       { 
         !shouldDisplayRowDetail && 
         <div> Parent content </div>
       }
       { 
         shouldDisplayRowDetail && 
         <div> Row content </div>
       }
    </div>
  )
}

我希望函数返回其将返回的内容(一系列统计测试结果),但它只会返回以下内容:

from statsmodels.tsa.vector_ar.vecm import coint_johansen

coint_johnsen(data, 0, 1)

0 个答案:

没有答案