When I use `%matplotlib notebook` it creates bigger plots like https://github.com/matplotlib/matplotlib/issues/4853 but also offsets the entire image. ``` %matplotlib inline sns.palplot(sns.color_palette("cubehelix", n_colors=50)) %matplotlib notebook sns.palplot(sns.color_palette("cubehelix", n_colors=50)) ``` 