I'm trying to learn forecast from
https://facebook.github.io/prophet/docs/quick_start.html#python-api
then let say, I use this df
df = pd.read_csv("https://datahub.io/core/natural-gas/r/daily.csv").iloc[-1000:]
df
after that, I run this code
m = Prophet()
m.fit(df)
it shows error ValueError: Dataframe must have columns "ds" and "y" with the dates and values respectively. I believe that this df already in a proper ds as datestamp and y as numerical
then, I'm trying to run something from another option to lowercase the CSV file but it won't change