Top "Boxplot" questions

Boxplot is a form of displaying cardinally scaled data displaying robust summary statistics as graphical elements.

Producing a boxplot in ggplot2 using summary statistics

Below is a code for producing a boxplot using ggplot2 I'm trying to modify in order to suit my problem: …

r ggplot2 boxplot
Matplotlib - Boxplot calculated on log10 values but shown in logarithmic scale

I think this is a simple question, but I just still can't seem to think of a simple solution. I …

python matplotlib plot boxplot logarithm
Tableau Desktop: How to add data labels to the box plot?

I created a box plot in Tableau Desktop 8.1, but I couldn't figure out how to show data labels for median, 25% …

boxplot tableau-api
Align violin plots with dodged box plots

I have this data frame set.seed(1234) x <- rnorm(80, 5, 1) df <- data.frame(groups = c(rep("group1",20), …

r plot ggplot2 boxplot
ggplot: boxplot number of observations as x-axis labels

I have successfully created a very nice boxplot (for my purposes) categorized by a factor and binned, according to the …

r ggplot2 boxplot interaction axis-labels
R ggplot2 boxplots - ggpubr stat_compare_means not working properly

I am trying to add significance levels to my boxplots in the form of asterisks using ggplot2 and the ggpubr …

r ggplot2 boxplot p-value ggpubr
Sort boxplot by mean (and not median) in R

I have a simple boxplot, showing the distribution of a score for factor TYPE: myDataFrame = data.frame( TYPE=c("a","…

r sorting boxplot mean
How to change the linestyle of whiskers in pandas boxplots?

Is there a way to change the linestyle of the whiskers in pandas boxplots to '-'? Default seems to be …

python pandas matplotlib boxplot linestyle
force boxplots from geom_boxplot to constant width

I'm making a boxplot in which x and fill are mapped to different variables, a bit like this: ggplot(mpg, …

r ggplot2 boxplot
annotate boxplot in ggplot2

I've created a side-by-side boxplot using ggplot2. p <- ggplot(mtcars, aes(x=factor(cyl), y=mpg)) p + geom_…

r ggplot2 boxplot geom-text