python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Plotly subplots of boxplot in for-loop Python
How can I make subplots by using a for loop when the traces for each individual subplot are already created using a for loop, what I got so far:
import plotly.express as px
import plotly.io as pio
im...
Jas
Votes: 0
Answers: 1
ggplot2 - Error while generating a horizontal boxplot with custom whiskers using geom_boxplot
For educational purposes, I am trying to generate a horizontal boxplot combined with a dotplot using ggplot2. However, I would like to generate a custom boxplot with whiskers at the 2.5% and 97.5% per...

Lukas D. Sauer
Votes: 0
Answers: 1
How to plot multiple boxplots into one figure?
I have a pandas dataframe with three columns:
df = pd.DataFrame({'first':['A', 'A', 'B', 'C', 'C'],
'second': np.random.rand(5),
'third': np.random.rand(5)})
I w...
JC_CL
Votes: 0
Answers: 0
Set custom median line color and set tick-label colors to boxplot face colors
I'm using this nice boxplot graph, answer from @Parfait.
I got an out of bound error on j and had to use range(i*5,i*5+5). Why?
I'd like to set the median to a particular color, let's say red. median...
macxpat
Votes: 0
Answers: 2