Reputation: 500
Hello and thank you for your help! (Code and Data Provided Below) (Image of the plot below)
I am trying to add a legend to this heatmap that explains the variance in color on the map (the warmer colors mean a higher temp). I am adding:
ax1.legend([ax1], ['Temp'])
And the issue is that this line of code is not resulting in my plot containing a legend. What do I need to do in order to add a legend that explains the relationship between temperature and color?
raw_data = pd.read_csv('https://raw.githubusercontent.com/the-
datadudes/deepSoilTemperature/master/allStationsDailyAirTemp1.csv', index_col=1, parse_dates=True)
df_all_stations = raw_data.copy()
# load the data into a DataFrame, not a Series
# parse the dates, and set them as the index
df1 = df_all_stations[df_all_stations['Station'] == 'Williston']
# groupby year and aggregate Temp into a list
dfg1 = df1.groupby(df1.index.year).agg({'Temp': list})
# create a wide format dataframe with all the temp data expanded
df1_wide = pd.DataFrame(dfg1.Temp.tolist(), index=dfg1.index)
# adding the data between 1990/01/01 -/04/23 and delete the 29th of Feb
rng = pd.date_range(start='1990-01-01', end='1990-04-23', freq='D')
df = pd.DataFrame(index= rng)
df.index = pd.to_datetime(df.index)
df['Temp'] = np.NaN
frames = [df, df1]
result = pd.concat(frames)
result = result[~((result.index.month == 2) & (result.index.day == 29))]
dfg1 = result.groupby(result.index.year).agg({'Temp': list})
df1_wide = pd.DataFrame(dfg1['Temp'].tolist(), index=dfg1.index)
# Setting all leftover empty fields to the average of that time in order to fill in the gaps
df1_wide = df1_wide.apply(lambda x: x.fillna(x.mean()),axis=0)
# ploting the data
fig, (ax1) = plt.subplots(ncols=1, figsize=(20, 5))
##ax1.set_title('Average Daily Air Temperature - Minot Station')
ax1.set_xlabel('Day of the year')
ax1.set_ylabel('Year of collected data')
ax1.legend([ax1], ['Temp'])
ax1.matshow(df1_wide, interpolation=None, aspect='auto');
Upvotes: 3
Views: 924
Reputation: 150745
What you are asking for is called colorbar
:
fig, (ax1) = plt.subplots(ncols=1, figsize=(20, 5))
##ax1.set_title('Average Daily Air Temperature - Minot Station')
ax1.set_xlabel('Day of the year')
ax1.set_ylabel('Year of collected data')
# register a colorbar mappable
cbm = ax1.matshow(df1_wide, interpolation=None, aspect='auto');
# plot the colorbar
cb = plt.colorbar(cbm, ax=ax1)
cb.set_label('My Color Map')
Output:
Upvotes: 5