Questions tagged [joypy]
6 questions
1
vote
1 answer
How to plot two joyplots on the same plot?
I want to create ridgelines plots for the distribution of property Rg as it changes with temperature. It turns out that I have an attribute Z that changes too, so I want the distribution of Rg at a given condition, for both attributes Z1 and Z2. I…

bad_chemist
- 283
- 1
- 7
1
vote
1 answer
How to change joypy joyplot y-axis labels colors
How do you change the colors of the y-axis labels in a joyplot using joypy package?
Here is a sample code where i can change the color if the x-axis labels, but not the y-axis.
import joypy
import pandas as pd
import numpy as np
import…

stallingOne
- 3,633
- 3
- 41
- 63
0
votes
0 answers
How can I fix the issue with using a colormap in joypy library for plotting a ridge plot?
I would like to use a colormap to plot a ridge plot with the library joypy but it seams not to work. I need your help to fix then problem:
Here is the script:
import matplotlib as mpl
from matplotlib import pyplot as plt
import…

phigirard
- 1
- 2
0
votes
0 answers
How to change color (direction) of a ridgeline joyplot chart?
I have a df that looks like this:
cmap = plt.cm.get_cmap('RdYlGn')
fig, ax=joyplot(df.T,
colormap=cmap,
fade=True,
grid=True,
alpha=0.75,
linecolor='white',
linewidth=0.25,
)
the code above results in this chart:
I…

NolsN
- 25
- 4
0
votes
0 answers
How to create ridge plots in python
Do you know some Python package except on JoyPy (I am not able to install it) which allows to create ridge plots?
I tried to install JoyPy but I could not.

Milosz
- 21
- 1
0
votes
0 answers
make ridge plot with an array binned by a second array in python
enter image description here
Hi I have two columns in a table, say 'A' and 'B'. I am trying to make a ridge plot with 'A' aggregated into 20 bins of 'B',
I understand, one option is to bin the values first and then plot it, but in that case the…

xxsou
- 43
- 6