()
| 22 | |
| 23 | # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) |
| 24 | def get_data(): |
| 25 | # returns a T x 3 list of stock prices |
| 26 | # each row is a different stock |
| 27 | # 0 = AAPL |
| 28 | # 1 = MSI |
| 29 | # 2 = SBUX |
| 30 | df = pd.read_csv('aapl_msi_sbux.csv') |
| 31 | return df.values |
| 32 | |
| 33 | |
| 34 |