boxplot Questions
6
Solved
I saved my data in as a .csv file with 12 columns. Columns two through 11 (labeled F1, F2, ..., F11) are features. Column one contains the label of these features either good or bad.
I would like...
1
I just started working with R not long ago, and I am currently trying to strengthen my visualization skills. What I want to do is to create boxplots with mean diamonds as a layer on top (see pictur...
2
Solved
Two questions related to boxplot:
What are the options for na.action? The documentation doesn't list them.
How would I go about answering these types of question in the future?
6
Solved
I have some questions about boxplots in matplotlib:
Question A. What do the markers that I highlighted below with Q1, Q2, and Q3 represent? I believe Q1 is maximum and Q3 are outliers, but what is...
Nikola asked 18/7, 2013 at 14:12
3
Solved
Is there a way to change the linestyle of the whiskers in pandas boxplots to '-'? Default seems to be '--'.
I have tried:
color = dict(boxes='black', whiskers='black', medians='red', caps='black'...
Odoriferous asked 14/9, 2017 at 18:28
1
Solved
I have a similar question previously discussed for barplots, but with missing solution for boxplots: Consistent width for geom_bar in the event of missing data
I would like to produce a boxplots b...
2
Solved
I'm wanting to add a horizontal line i.e. a 'target' line to some plots: stripplots, boxplots, and violin plots, to show ideal values data (or ideally a range).
This R example (Add multiple horizo...
3
Solved
I have a chart working fine with data in the options, when I leave the data empty for a series and try the below (so I can change the data depending on a click) it doesn't work, any ideas?
options...
Goldenrod asked 16/1, 2014 at 3:36
4
Solved
I have the following problem: I would like to visualize a discrete and a continuous variable on a boxplot in which the latter has a few extreme high values. This makes the boxplot meaningless (the ...
Tamanaha asked 15/1, 2011 at 12:7
2
Solved
I want to plot boxplots using seaborn in pandas because it is a nicer way to visualize data, but I am not too familiar with it. I have three dataframes that are different metrics, and I want to com...
2
Solved
I want to adapt the width of the box in the category "random" to the same width of the other boxes in the plot. It is now a single group, whereas the other groups contain two subgroups... Any ideas...
3
Solved
The below code helps in obtaining subplots with unique colored boxes. But all subplots share a common set of x and y axis. I was looking forward to having independent axis for each sub-plot:
impor...
Semen asked 21/6, 2018 at 14:32
2
Solved
This is in reference to the following question, wherein options for adjusting title and layout of subplots are discussed:
modify pandas boxplot output
My requirement is to change the colors of ind...
Scruffy asked 21/6, 2018 at 8:34
2
First, I must admit that my statistics knowledge is rusty at best: even when it was shining new, it's not a discipline I particularly liked, which means I had a hard time making sense of it.
Never...
Naphthol asked 8/9, 2017 at 22:15
2
Solved
I am using seaborn to create a boxplot. When I specify a column by which to group/color the boxes, the width of the boxes becomes so narrow that they are hard to see. The only change I am making is...
1
Solved
I am using a boxplot to show differences in the distribution of values between groups. The lower(25) and higher (75) percentiles and the median are indicative of the distribution and main differenc...
Parttime asked 27/5, 2018 at 16:30
4
Solved
I am trying to combine a histogram and boxplot for visualizing a continuous variable. Here is the code I have so far
require(ggplot2)
require(gridExtra)
p1 = qplot(x = 1, y = mpg, data = mtcars, x...
4
Solved
In python-pandas boxplots with default settings, the red bar is the mean median, and the box signifies the 25th and 75th quartiles, but what exactly do the whiskers mean in this case? Where is the ...
3
Solved
I have a set of paired data, and I'm using ggplot2.boxplot (of the easyGgplot2 package) with added (jittered) individual data points:
ggplot2.boxplot(data=INdata,xName='condition',yName='vicarious...
1
Solved
I have a Pandas DataFrame, df, that has a price column and a year column. I want to create a boxplot after grouping the rows based on their year. Here's an example:
import pandas as pd
temp = pd.Da...
1
Solved
I have a homework that need to call Networkx's function to get the degrees of all the nodes, and then draw a boxplot for these degrees.
But the boxplot is not show and have a error below:
"de...
5
Solved
3
Solved
I'm using the code below to generate a simple box plot in ggplot2:
# Libs data
data("mtcars"); require(ggplot2); require(ggthemes)
# Chart
ggplot(data = mtcars) +
geom_boxplot(aes(y = wt...
2
Solved
My pandas data frame has two columns: category and duration. And
I use the following code to make a box plot of all data points.
import matplotlib.pyplot as plt
plt.boxplot(df.duration)
plt.show(...
Vesuvian asked 9/2, 2018 at 18:47
1
I am trying to set a space between the boxplots (between the green and orange boxes) created with Python Seaborn module's sns.boxplot(). Please see attached the graph, that the green and orange sub...
Ursula asked 19/7, 2015 at 7:13
© 2022 - 2024 — McMap. All rights reserved.