#import libraries:
import numpy as np
import streamlit as st
import matplotlib.pyplot as plt
import pandas_datareader as data
from keras.models import load_model
start = '2010-01-01'
end = '2021-08-20'
df = data.DataReader('CENTUM.NS', 'yahoo', start, end)
df.head()
df.tail()
df = df.reset_index()
df.head()
df=df.drop(['Date','Adj Close',],axis = 1)
df.head()
#I am getting the following error:
KeyError: "['Date', Adj Close',] not found in axis"