I have a scatter plot matrix generated using the seaborn package, and I would like to remove all label marks, because they just mask the graph (either this or just delete them along the x axis) but I'm not sure how to do it and haven’t Google search success. Any suggestions?
import seaborn as sns sns.pairplot(wheat[['area_planted', 'area_harvested', 'production', 'yield']]) plt.show()

python pandas ipython seaborn
dsaxton
source share