Lirsen Myrtaj
commited on
Commit
·
d865720
1
Parent(s):
06abc01
Update arima.py
Browse files
arima.py
CHANGED
@@ -40,7 +40,7 @@ def get_model_accuracy(data, ticker_symbol):
|
|
40 |
return 'Testing Mean Squared Error is {}'.format(MSE_error)
|
41 |
|
42 |
|
43 |
-
def arima_chart(tickers
|
44 |
df = pd.read_csv('data_and_sp500.csv')
|
45 |
df = df[['Date']+tickers]
|
46 |
fig = px.line(df, x='Date', y=df.columns)
|
|
|
40 |
return 'Testing Mean Squared Error is {}'.format(MSE_error)
|
41 |
|
42 |
|
43 |
+
def arima_chart(tickers):
|
44 |
df = pd.read_csv('data_and_sp500.csv')
|
45 |
df = df[['Date']+tickers]
|
46 |
fig = px.line(df, x='Date', y=df.columns)
|