In the following example, how do I get the y-axis limits to scale according to the data in each panel?
mt <- ggplot(mtcars, aes(mpg, wt, colour = factor(c
If you come looking for a python implementation, you need sharex=False, sharey=False.
sharex=False, sharey=False
g = sns.FacetGrid(df, row='row_col_name' col="col_col_name",sharex=False,sharey=False)