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...
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...
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...
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?
1
Solved
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...
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 ...
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...
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,...
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...
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...
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...
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, ...
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...
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...
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...
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...
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.