I\'ve made a lmplot column plot (subplot) using the following commands:
g = sns.lmplot(x=COX, y=\'dX\', data=tidy_data, hue=\'hue\', col=\'comp\',
col_wrap=8,
If you want to be able to alter the ylim of one particular plot in the FacetGrid
you have to explicitly create it with g = sns.lmplot(..., sharey=False)
example:
tips = sns.load_dataset("tips")
g = sns.lmplot(x="total_bill", y="tip", col="day", hue="day", data=tips, col_wrap=2, size=3,
sharey=False)
g.axes[0].set_ylim((0,100))