Skip to content

Commit

Permalink
removed non usable importing lines...!
Browse files Browse the repository at this point in the history
  • Loading branch information
KasunHewagama committed Oct 9, 2020
1 parent d6a27d4 commit fbe673d
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions models/Score_Prediction_by_GS_MLR.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# -- coding: utf-8 --

import os

import pickle
import numpy as np
import pandas as pd
import seaborn as sns
import numpy
from scipy import stats
import matplotlib.pyplot as plt
from dataset.cleanDs import cleanDs
Expand Down Expand Up @@ -32,7 +30,6 @@ def myfunc(x):
plt.grid(True)
plt.plot(x, mymodel)
plt.show()
import numpy

print("Coefficient between Global_Sales Vs User_Score",numpy.corrcoef(x, y))

Expand All @@ -55,7 +52,6 @@ def myfunc(x):
plt.grid(True)
plt.plot(x, mymodel)
plt.show()
import numpy

print("Coefficient between Critic_Score Vs User_Score", numpy.corrcoef(x, y))

Expand All @@ -78,7 +74,6 @@ def myfunc(x):
plt.grid(True)
plt.plot(x, mymodel)
plt.show()
import numpy

print("Coefficient between Critic_Count Vs User_Score", numpy.corrcoef(x, y))

Expand Down

0 comments on commit fbe673d

Please sign in to comment.