I created a small dataframe in pandas that looks like this:
df = pd.DataFrame({'weather':[16,22,32,8,2]})
df
in the output is gives me a table:
weather
0 16
1 22
2 32
3 8
4 2
I cant find a proper explanation on how to change this table so that instead of 0,1,2,3,4 I can input words(for example: Monday, Tuesday etc)