figures,data= plt.subplots(1,3,figsize=[10,10])
data[0].scatter(columns[3],columns[2])
data[1].hist2d(columns[3],columns[2],cmap='Blues')
data[2].sns.kdeplot(columns[3],columns[2],cmap='Blues')
gives the error: 'AxesSubplot' object has no attribute 'sns'
Is there any way around this or would I just have to do a seaborn subplot ? I find matplotlib a lot easier.