boxplot Questions

2

Some people find it confusing with whiskers and outliers in a Boxplot. Is it possible to remove those from the Boxplot in Seaborn?
Psychoanalysis asked 1/8, 2019 at 17:53

3

Solved

I have a boxplot generated with matplotlib: However, I have no idea how to generate the legend. I get a warning saying: Legend does not support handles for dict instances. or No artists with la...
Chema asked 28/11, 2017 at 10:13

2

I was able to visualize my data in a boxplot using Seaborn. sns.boxplot( x=df['Score'].astype('float'), y=df['Group'] ) The visualization shows me: all four quartiles, lower and upper whisker, a...
Fendley asked 24/9, 2018 at 21:4

4

Solved

I am trying to plot swarm plots and box plots together using matplotlib and Seaborn. I found how to plot them together but the box plot appears underneath the swarm plot. The problem with this is t...
Smidgen asked 18/6, 2017 at 13:59

4

Solved

I am trying to draw a box and whisker plot in R. My code is below. At the moment, because I only have data for two months in one of the two sites, the bars are wider for that site (because the thir...
Giuseppinagiustina asked 12/3, 2013 at 17:14

4

Solved

I want to merge the three datasets grouped and obtain a graph with only two boxes, 1 for A and 1 for B. Can you suggest how to get that? I'm tryng to create a grouped boxplot in R. I have 2 groups...
Grieco asked 24/11, 2017 at 20:16

2

Solved

I love the JMP variability plot. (link) It is a powerful tool. The example the plot has 2 x-axis labels, one for part-number and one for operator. Here the JMP variability plot displays more tha...
Cupel asked 3/5, 2017 at 15:42

4

I would like to put perpendicular lines at the ends of the whiskers like the boxplot function automatically gives.
Stanfield asked 20/10, 2012 at 23:18

3

I have constructed some box-plots in R and have several outliers. I know that the default criteria to set outlier limits are: Q3 + 1.5*IQR Q1 - 1.5* IQR However, I would like outliers classifie...
Thalweg asked 14/2, 2011 at 16:4

7

Solved

I am trying to get a grouped boxplot working using Seaborn as per the example I can get the above example working, however the line: tips = sns.load_dataset("tips") is not explained at all. I h...
Shutter asked 19/5, 2015 at 21:16

3

Solved

I have plotted a boxplot+points. I want to add colors to the points. The position_jitterdodge worked fine without color as shown in Figure B, the points are close, which is I intended to do. But wh...
Isaac asked 25/9, 2018 at 20:35

2

Solved

I would like to increase the boldness of the entire boxplot to be more visible on the hard copy. from Here seems "fatten" parameter change the thickness of the only median line. Is there any other ...
Brader asked 2/5, 2014 at 17:30

6

Solved

It's common to put stars on barplots or boxplots to show the level of significance (p-value) of one or between two groups, below are several examples: The number of stars are defined by p-value...
Stomatic asked 13/6, 2013 at 10:17

2

I want to create a boxplot using the minimum, maximum and average output and standard deviation of a dataset. The examples I found, plot a numerical distribution, but in my case, this is not feasib...
Hambley asked 25/10, 2015 at 10:44

2

Solved

My boxplot seem not align with the x-tick of the plot. How to make the boxplot align with the x-tick? import pandas as pd import seaborn as sns import matplotlib.pyplot as plt df = pd.DataFrame([[...
Disorientate asked 28/11, 2019 at 0:55

2

Solved

Hi I need to plot a boxplot in R. I have two matrices a and b. I created a boxplot for a and want to create boxplot for b on the same plot for a. The boxplots of the b matrix should lie on the w...
Mazy asked 2/4, 2012 at 11:44

2

Solved

I need to add hatches to a categorical box plot. What I have is this: What I need is something like this (with the median lines): And what I have tried is this code: exercise = sns.load_dataset(&...
Shetrit asked 17/6, 2022 at 9:2

2

Solved

I am plotting with seaborn a series of boxplots with sns.boxplot(full_array) where full_array contains 200 arrays. Therefore, I have 200 boxplots and ticks on the x-axis from 0 to 200. The xticks ...
Staceestacey asked 13/6, 2017 at 12:32

2

Solved

My dataframe round_data looks like this: error username task_path 0 0.02 n49vq14uhvy93i5uw33tf7s1ei07vngozrzlsr6q6cnh8w... 39.png 1 0.10 n49vq14uhvy93i5uw33tf7s1ei07vngozrzlsr6q6cnh8w... 45.png 2 ...
Synn asked 9/11, 2016 at 19:54

2

Solved

Is there a way to fill the boxes in a boxplot in Matlab? I was able to change the color of the boundaries of the boxes using the colorgroup option of the boxplot function (http://www.mathworks.co...
Esemplastic asked 28/2, 2013 at 0:30

1

I am trying to add a label to an abline in a boxplot. I know I have to use the text() function but no matter what I try nothing appears on my plot. My plot code is as follows: # Technical Ability S...
Quagga asked 29/3, 2019 at 12:37

3

Solved

One of the coolest things you can easily make in seaborn is boxplot + stripplot combination: import matplotlib.pyplot as plt import seaborn as sns import pandas as pd tips = sns.load_dataset(&quot...
Shiite asked 21/2, 2016 at 16:48

2

Solved

I am trying to create a graph whereby the x axis is the key of the dictionary and the boxplot is from the information inside the dictionary. My dictionary can have many keys. Data = {'ABC': [34.54,...
Debatable asked 11/9, 2018 at 10:9

3

Solved

import seaborn as sns # sample data df = sns.load_dataset('titanic') ax = sns.barplot(data=df, x='class', y='age', hue='survived') Is there a way to turn off the black error bars?
Set asked 17/10, 2016 at 14:6

3

Solved

My data frames (pandas's structure) looks like above Now I want to make boxplot for each feature on separate canvas. The separation condition is the first column. I have similar plot for histogra...
Nineteenth asked 30/6, 2016 at 10:38

© 2022 - 2024 — McMap. All rights reserved.