joypy icon indicating copy to clipboard operation
joypy copied to clipboard

Joyplots in Python with matplotlib & pandas :chart_with_upwards_trend:

Results 21 joypy issues
Sort by recently updated
recently updated
newest added

Thanks for the great library @sbebo !! I am struggling a little bit on dynamically creating subplot using joypy: ``` import joypy import pandas as pd from matplotlib import cm...

Hi! I'm using joyplot with raw data (loving it so far). Attached are two figures I've produced. I would like to pass the axis generated from the first one as...

Only effected lognorm option, particular for real values of floc.

I want to draw axvlines in front of the distribution for quantile analysis but I can't put the drawn lines in front of the joypy.

Is it possible to inverse the plot eg: ![image](https://user-images.githubusercontent.com/30790120/131931485-1c450969-652e-4d18-8eff-f31b862943b0.png) Above is plotted by Target Field and each predictors on same line, if there are many features the plot looks too...

I'd like to add a plot, side-by-side the joyplot, showing all of the distributions on one plot. I am successful at doing that, but something is weird with the xticks....

This allows issue #60 to to be resolved. I am unaware of the consequences of this, though.

When I do the following: ``` from sklearn import datasets from joypy import joyplot iris = datasets.load_iris() iris_df = pd.DataFrame(iris.data, columns=iris.feature_names) fig, axes = plt.subplots(ncols=2, figsize=(12, 4)) joyplot(iris_df, ax=axes[0]) joyplot(iris_df,...

I would like to do an animation over time. Basically produce multiple joyplots (filtering the data by a date range) and then merge them into a GIF. Basically seeing the...

Hi @sbebo, thanks for a great package. Curious if it is possible to rotate the ridges 90 degrees to make ridges vertical? E.g. seaborn's kde plot has an argument called...