seaborn icon indicating copy to clipboard operation
seaborn copied to clipboard

Statistical data visualization in Python

Results 216 seaborn issues
Sort by recently updated
recently updated
newest added

Hi, First of all, I am using Seaborn almost everyday for two years already and it greatly improved since then ! thank you for your work! I manage to do...

wishlist

I tried to heed the deprecation warning and replace a call with distplot where I had set `hist_kws["log"] = True`, but every attempt I've made to use log_scale=True in histplot...

rough-edge
mod:distributions
mod:core
statistics

There is no way to set the default numeric colormap, it is always `'cubehelix'`. You can set the default _categorical_ colormap using e.g. `sns.set_palette(palette='Set1')`. However, the default numeric color palette...

themes
wishlist

I've found what seems to be a weird bug where some interaction between the `height` argument of FacetGrid and the rcParam `xtick.labelsize` can result in xtick labels being visible on...

Currently, a very convenient way to plot an scatter plot of all the columns against one in a `pd.DataFrame` is ``` import seaborn as sns iris = sns.load_dataset('iris') sns.pairplot(iris, x_vars=['sepal_length',...

wishlist
mod:axisgrid

Hello! It is my first Github bug report, so please let me know if some additional info is needed. I'm trying to use sns.pairplot for some pandas DataFrame and in...

rough-edge
mod:distributions
upstream

When plotting a histogram with `element='step'` and `fill=False` the resulting step plot is not closed to zero. Seaborn version is 0.11.1, matplotlib version 3.4.2. ```python df = pd.DataFrame(data=np.random.randn(100)) sns.histplot(data=df, element='step',...

Hi! This is a proposal to build the seaborn documentation on Read the Docs. Doing so has a bunch of interesting niceties, the best one for me being having the...

docs
infrastructure

Seaborn is capable of producing very neat plots out of the box. Nevertheless, "post-production" editing of the resulting plots is often required to improve readability, add information, or match the...

api
wishlist

With recent shift in the docs to emphasize the figure-level plots, it raises the challenge that layering multiple plots (i.e. a swarmplot on top of a violinplot) this way is...

wishlist