:11.541KB : :1 :2022-01-04 15:07:25
线性回归方程代码如果开发者对于本文件有需要的可以参考。
#从excel文件中读取数据
def read(file):
wb = xlrd.open_workbook(filename=file)#打开文件
sheet = wb.sheet_by_index(0)#通过索引获取表格
rows = sheet.nrows # 获取行数
all_content = [] #存放读取的数据
for j in range(0, 2): #取第1~第2列对的数据
temp = []
for i in range(1,rows) :
cell = sheet.cell_value(i, j) #获取数据
temp.append(cell)
all_content.append(temp) #按列添加到结果集中
temp = []
return np.array(all_content) #返回读取的数据
#获得拟合函数并绘制图象