尝试使用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)