samarthv commited on
Commit
a10c110
1 Parent(s): 9a408e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ st.title("Stock Price Prediction")
10
  # Load the stock data from the CSV files
11
  data1 = pd.read_csv('Google_test_data.csv')
12
  data2 = pd.read_csv('tesla.csv')
13
- data3 = pd.read_csv('NFLX.csv')
14
 
15
  # Combine the datasets into a dictionary
16
  datasets = {'Google': data1, 'Tesla': data2, 'Netflix': data3}
 
10
  # Load the stock data from the CSV files
11
  data1 = pd.read_csv('Google_test_data.csv')
12
  data2 = pd.read_csv('tesla.csv')
13
+ data3 = pd.read_csv('NFLX.csv',encoding='utf-8')
14
 
15
  # Combine the datasets into a dictionary
16
  datasets = {'Google': data1, 'Tesla': data2, 'Netflix': data3}