boxplot Questions
2
Solved
When using box plots in Python, is there any way to automatically/easily overlay the value of the median & variance on top of each box (or at least the numerical value of the median)?
E.g. in ...
Whig asked 17/9, 2013 at 22:42
2
I think this is a simple question, but I just still can't seem to think of a simple solution. I have a set of data of molecular abundances, with values ranging many orders of magnitude. I want to r...
Counterspy asked 5/1, 2016 at 9:51
4
Solved
I can't find a description of what the end points of the lines of a boxplot represent.
For example, here are point values above and below where the lines end.
(I realize that the top and bottom...
2
Solved
I want to plot the means of four time-series into a Matplotlib bar chart with confidence intervals. Also I want to color them differently, to generate a bar chart like this
So I wrote the followi...
Itin asked 25/3, 2017 at 12:34
2
Solved
I would like to compare a set of distributions of scores (score), grouped by some categories (centrality) and colored by some other (model). I've tried the following with seaborn:
plt.figure(figsi...
Sammer asked 1/2, 2016 at 13:30
1
Solved
I am trying to change the usual Boxplot outlier shape (the jitter above the boxes) which is a circle by default to a diamond. I am using the following code so far:
import pandas as pd
import matplo...
Skylark asked 9/1, 2021 at 23:4
4
Solved
I'm trying to create a 4x4 FacetGrid in seaborn for 4 boxplots, each of which is split into 3 boxplots based on the iris species in the iris dataset. Currently, my code looks like this:
sns.set(st...
Marker asked 24/9, 2018 at 4:34
1
Solved
I am trying to plot boxplots in seaborn whose widths depend upon the log of the value of x-axis. I am creating the list of widths and passing it to the widths=widths parameter of seaborn.boxplot.
H...
Equimolecular asked 8/9, 2020 at 11:0
1
Solved
I have been trying to fill the boxes of a set of box plots with different colors. See code below.
# Box Plots
fig, axs = plt.subplots(2, 2, figsize = (10,10))
plt.subplots_adjust(hspace = .2,wspace...
Episcopal asked 22/8, 2020 at 17:39
3
Solved
I need to make a lot of boxplots for an upcoming publication. I would like to use ggplot2 because I think it will be more flexible for future projects, but my PI is insisting that I make these plot...
1
I'm making a time series boxplot using seaborn package but I can't put a label on my outliers.
My data is a dataFrame of 3 columns : [Month , Id , Value] that we can fake like that :
### Sample Dat...
Con asked 7/11, 2016 at 16:41
3
Solved
I'm trying to make a single boxplot chart area per month with different boxplots grouped by (and labeled) by industry and then have the Y-axis use a scale I dictate.
In a perfect world this would...
3
Does anyone know how to remove the top and right borders of the boxplot frame in R? I have tried the argument frame=FALSE but that removes all sides but the left side(y-axis). I just want the x-axi...
8
Solved
EDIT: this question arose back in 2013 with pandas ~0.13 and was obsoleted by direct support for boxplot somewhere between version 0.15-0.18 (as per @Cireo's late answer; also pandas greatly improv...
Birth asked 21/3, 2013 at 7:9
2
Solved
I am analysing extreme weather events. My Dataframe is called df and looks like this:
| Date | Qm |
|------------|--------------|
| 1993-01-01 | 4881.977061 |
| 1993-02-01 | 4024.396839 |
| 1993-...
3
Solved
I'm trying to create a horizontal boxplot with logarithmic axis using ggplot2. But, the length of whiskers are wrong.
A minimal reproducible example:
Some data
library(ggplot2)
library(reshape2)...
1
Solved
I am trying to display in a subplot all the boxplots corresponding to each columns in my dataframe df.
I have read this question:
Subplot for seaborn boxplot
and tried to implement the given solut...
3
Solved
How can I create a boxplot for a pandas time-series where I have a box for each day?
Sample dataset of hourly data where one box should consist of 24 values:
import pandas as pd
n = 480
ts = pd.S...
Masquer asked 22/10, 2014 at 12:25
2
Solved
require(ggplot2)
require(cowplot)
d = iris
ggplot2::ggplot(d, aes(factor(0), Sepal.Length)) +
geom_violin(fill="black", alpha=0.2, draw_quantiles = c(0.25, 0.5, 0.75)
, colour = "red", size = 1...
Gordie asked 16/3, 2016 at 10:43
2
Solved
I have a boxplot showing multiple boxes. I want to connect the mean for each box together with a line. The boxplot does not display the mean by default, instead the middle line only indicates the m...
8
Solved
I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part ou...
1
Solved
The question:
Using plotly express you can group data and assign different colors using color=<group> in px.box(). But how can you do the same thing using plotly.graph_objects and go.box()
...
4
Solved
From what I can see, boxplot() method expects a sequence of raw values (numbers) as input, from which it then computes percentiles to draw the boxplot(s).
I would like to have a method by which I ...
Meakem asked 30/11, 2014 at 14:52
1
Solved
I would like to draw additional vertical lines that will separate grouped boxplots like in the right-hand picture. The left-hand picture is the original picture (source: https://www.originlab.com/d...
Padlock asked 24/2, 2020 at 12:13
3
Solved
I have
X = c(20 ,18, 34, 45, 30, 51, 63, 52, 29, 36, 27, 24)
With boxplot, i'm trying to plot the quantile(X,0.25) and quantile(X,0.75)
but this is not realy the same lower and upper quartiles in ...
© 2022 - 2024 — McMap. All rights reserved.