Meningkatkan Visualisasi Data Anda di Python
Nick Strayer
Instructor





sns.scatterplot(x='NO2', y='SO2', data = houston_pollution)# X and Y location of outlier and text plt.text(13,33,'Lihat pencilan ini', # Text properties for alignment and size. fontdict = {'ha': 'left', 'size': 'x-large'})

sns.scatterplot(x='NO2', y='SO2', data = houston_pollution)# Arrow start and annotation location plt.annotate('Titik tersembunyi untuk diperhatikan', xy=(45.5,11.8), xytext=(60,22), # Arrow configuration and background box arrowprops={'facecolor':'grey', 'width': 3}, backgroundcolor = 'white' )

Meningkatkan Visualisasi Data Anda di Python