Individual axes limits for pairplot in python
问题 I'm fairly new to python and I'm trying to figure out how to set limits for individual axes for a pairplot. I know that using pairplot.set(xlim=(0,100), ylim = (0,100)) will set all the axes in a pairplot to go from 0 to 100, but some of my variables range from 0 to 300000 while others range from 0 80. I'm trying to avoid the auto scale feature because I'm removing some data occasionally but want to keep the context of the original set. I get something like below for example example 回答1: You