boxplot Questions

2

Solved

Basically I have a problem with the current version of Plotly which doesn't display hoverinfo for box plot correctly. It omits labels (min, max, median etc.), so when I plot the following plot: pl...
Genuine asked 27/11, 2017 at 11:2

0

I have plenty of measurements (N ~ 500.000) of two laboratory tests that I wanted to plot using geom_boxplot. These measurements were created using three different analyzers. However, many of thes...
Potentate asked 25/1, 2018 at 7:30

1

Solved

since yesterday I am reading answers and websites in order to combine and align in one plot an histogram and a boxplot generated using ggplot2 package. This question differs from others because th...
Drawbar asked 9/1, 2018 at 8:55

1

Solved

My aim is to plot the mean of each subgroup in box plots in ggplot. At present, I can plot mean for each group in x-axis (i.e., max_depth and eta) in the boxplot figure. But, I want to plot mean fo...
Bullyrag asked 8/1, 2018 at 6:54

1

Solved

I have boxplots representing results of two methods, each with two validation approaches and three scenarios, to be plotted using ggplot2. Everything works fine, but I want to change the x-axis tic...
Edgaredgard asked 2/1, 2018 at 20:47

4

Solved

How to put values on boxplot and control its width? X<-c(1,2,,3,4,4,5,5,6,6,6,6,6,7) I need to write values for min, max, 1st quartile, median and last quartile. How can I put it there?
Preuss asked 19/12, 2012 at 4:19

1

Solved

I made a boxplot: dat %>% plot_ly(y = ~xval, color = ~get(col), type = "box", boxpoints = "all", jitter = 0.7, pointpos = 0, marker = list(size = 3), source = shiny_source, key = shiny_key...
Debbi asked 20/10, 2017 at 7:52

2

Solved

Following up on this question and for the sake of completeness, I modified the accepted answer and customized the resulting plot, but I am still facing some important problems. To sum up, I am doi...
Dalessandro asked 17/10, 2017 at 5:39

5

Solved

I am trying to find a suitable display to illustrate various properties within and across school classes. For each class there is only 15-30 data points (pupils). Right now i am leaning towards a ...
Ghassan asked 9/6, 2010 at 22:17

1

Following up on this question, I am trying to make boxplots and pairwise comparisons to show levels of significance (only for the significant pairs) again, but this time I have more than 2 groups t...
Godsend asked 27/9, 2017 at 11:9

2

Solved

How make matching X-axis in histogram with marginal boxplot? data <- rnorm(1000) nf <- layout(mat = matrix(c(1,2),2,1, byrow=TRUE), height = c(1,3)) layout.show(nf) par(mar=c(5.1, 4.1, 1.1,...
Awe asked 18/4, 2013 at 12:41

1

Solved

I'm trying to get ggplot to order my boxplots based on median value after splittin the data into several different facets. This is part of a larger Shiny app I've written. Under default parameters...
Sandglass asked 14/8, 2017 at 20:15

1

Solved

Following up on this question I posted some days ago, I want to perform something similar. Given the following MWE: ############################## ##MWE library(ggplot2) library(ggsignif) set.se...
Biconcave asked 7/8, 2017 at 17:40

1

Solved

I am trying to add significance levels to my boxplots in the form of asterisks using ggplot2 and the ggpubr package, but I have many comparisons and I only want to show the significant ones. I try...
Restrain asked 3/8, 2017 at 6:55

1

Solved

I have a plot like the following (using plt.boxplot()): Now, what I want is plotting a number how often those outliers occured (preferably to the top right of each outlier). Is that somehow ach...
Eugeniusz asked 27/7, 2017 at 14:49

2

I am trying to have free scales on a Boxplot image with faceting. Using this example dataset, if I try this: ggplot(data=mpg) + geom_boxplot(aes(x=cty, y=model))+ facet_grid(manufacturer ~ drv, ...
Withoutdoors asked 24/5, 2012 at 10:20

2

Solved

I need to plot comparison of five variable, stored in pandas dataframe. I used an example from here, it worked, but now I need to change the axes and titles, but I'm struggling to do so. Here is m...
Dwight asked 7/7, 2017 at 16:7

1

Solved

Ok, so I think I'm pretty close with this, but I'm getting an error when I try to construct my box plot at the end. My goal is to place letters denoting statistical relationships among the time poi...
Heptamerous asked 23/6, 2017 at 2:33

1

Given a .fig file of a Matlab boxplot (i.e. underlying data not available), is it possible to change the PlotStyle attribute (from 'traditional' to 'compact')?
Unstop asked 13/6, 2017 at 15:18

1

Solved

I am using matplotlib to plot a box figure but there are some missing values (NaN). Then I found it doesn't display the box figure within the columns having NaN values. Do you know how to solve thi...
Puckery asked 1/6, 2017 at 11:7

2

do you have any idea of how to apply jittering just to the outliers data of a boxplot? This is the code: ggplot(data = a, aes(x = "", y = a$V8)) + geom_boxplot(outlier.size = 0.5)+ geom_point(data...
Pliske asked 23/5, 2017 at 17:16

3

Solved

I am using python 3 and jupyter notebook. I have a pandas dataframe that is structured like this: location price Apr 25 ASHEVILLE 15.0 Apr 25 ASHEVILLE 45.0 Apr 25 ASHEVILLE 50.0 Apr 25 ASHEVILL...
Grimsby asked 22/5, 2017 at 18:23

1

Solved

for some obscure reason, I must draw a boxplot with no apparent median. How can I achieve this (using ggplot is preferred, but if it is necessary I will switch to boxplot) please? Related answers...
Bunyip asked 15/5, 2017 at 14:20

1

Solved

The following figure shows the standard Seaborn/Matplotlib Boxplots in a 2 X 2 grid layout: It is pretty much what I want except that I would like to put some more space between the first ...
Josettejosey asked 15/5, 2017 at 2:5

3

I'm trying to use ggplot2 / geom_boxplot to produce a boxplot where the whiskers are defined as the 5 and 95th percentile instead of 0.25 - 1.5 IQR / 0.75 + IQR and outliers from those new whiskers...
Mountainous asked 22/1, 2011 at 1:9

© 2022 - 2024 — McMap. All rights reserved.