So I am new to python and I can't seem to find the error with this code, when I try to run I get the message "TypeError: list indices must be integers or slices, not str". My code is:
import pandas as pd import quandl df = quandl.get("WIKI/GOOGL", authtoken="X5A1-ewy2UCfkFVfGKuW") df = [["Adj. Open","Adj. High","Adj. Low","Adj. Close","Adj. Volume",]] df["HL_PCT"] = (df["Adj. High"] - df["Adj. Close"]) / df["Adj. Close"] * 100.0 df["PCT_change"] = (df["Adj. Close"] - df["Adj. Open"]) / df["Adj. Open"] * 100.0 df = df [["Adj. Close","HL_PCT","PCT_change","Adj. Volume"]] print(df.head())Any help would be appiciated
