Yinxing commited on
Commit
1b07538
·
verified ·
1 Parent(s): e3af80f

Update Linear.py

Browse files
Files changed (1) hide show
  1. Linear.py +1 -0
Linear.py CHANGED
@@ -3,6 +3,7 @@
3
  #x, yをpandas DataFrameで入力、self.olsは(coef, SE, t値, p値)のDataFrame
4
  from scipy.stats import t
5
  import numpy as np
 
6
 
7
  class linear_regression():
8
  def __init__(self, fit_intercept = True):
 
3
  #x, yをpandas DataFrameで入力、self.olsは(coef, SE, t値, p値)のDataFrame
4
  from scipy.stats import t
5
  import numpy as np
6
+ import pandas as pd
7
 
8
  class linear_regression():
9
  def __init__(self, fit_intercept = True):