Skip to content
Permalink
Browse files
Created Statistical Model
Regression model
  • Loading branch information
twiningo committed Mar 5, 2021
1 parent 773faca commit ebe325f980c1e53b28cc4bd2e59ccd5acdde6370
Showing 1 changed file with 0 additions and 14 deletions.
@@ -73,21 +73,7 @@ client.loop_forever()



#X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.3, random_state = 42)

#regressor = LinearRegression()

#regressor.fit(X_train, y_train)

#y_pred =regressor.predict(X_test)

#X = sm.add_constant(X)
##Train-test split
#train_X, test_X, train_y, test_y = train_test_split(X, y, train_size = 0.8, random_state = 42)
##Linear regression model
#model = sm.OLS(train_y, train_X)
#model = model.fit()
#print(model.summary2())



0 comments on commit ebe325f

Please sign in to comment.