Seaborn Heat Map not Displaying in Visual Studio

Hi I am having trouble displaying a seaborn heat map in Python in Visual Studio Code.

I import as follows:
import seaborn as sns

I have data loaded into a data set called heatmap_data.

I attempt to display the heat map as follows:
sns.heatmap(heatmap_data, linewidths=.5, cmap=‘YlOrRd’, cbar=True, cbar_kws={“format”: ‘%1.0f MWh’}).set_title(‘Heatmap - by Day of Week’)

Anaconda has Ver 0.11.2. of Seabone

Any ideas?

Actually this is working - my apologies - no need to respond.

Thanks