赞
踩
以下是用Python进行方差分析的代码:#导入库 import pandas as pd import statsmodels.api as sm#读取数据 data = pd.read_csv('data.csv')#构建模型 model = sm.OLS.from_formula('y ~ a + b + c + a:b + b:c + a:c', data)#运行方差分析 result = model.fit()#打印结果 print(result.summary())
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。