About 34,500 results
Open links in new tab
  1. In ggplot2, what do the end of the boxplot lines represent?

    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 o...

  2. Changing whisker definition in geom_boxplot - Stack Overflow

    Building on @konvas's answer, beginning in ggplot2.0.x, you can using the ggproto system and define your own stat. By copying the ggplot2 stat_boxplot code and making a few edits, you …

  3. Definition of fences in plotly's boxplot - Stack Overflow

    Aug 21, 2019 · How are lower and upper fences computed in plotly's boxplot function, i.e. plotly.express.box() resp. plotly.graph_objects.Box? I can’t find anything about that in the …

  4. box plot: whisker definition in pandas and matplotlib

    The only definition from the list from the question which cannot be easily implemented is the "one standard deviation", all others are readily set with this argument. The default is the 1.5IQR …

  5. Python Seaborn - How are outliers determined in boxplots

    The box shows the quartiles of the dataset while the whiskers extend to show the rest of the distribution, except for points that are determined to be “outliers” using a method that is a …

  6. Boxplots in matplotlib: Markers and outliers - Stack Overflow

    A picture is worth a thousand words. Note that the outliers (the + markers in your plot) are simply points outside of the wide [(Q1-1.5 IQR), (Q3+1.5 IQR)] margin below. However, the picture is …

  7. r - Changing the outlier rule in a boxplot - Stack Overflow

    From ?boxplot range: this determines how far the plot whiskers extend out from the box. If ‘range’ is positive, the whiskers extend to the most extreme data point which is no more than ‘range’ …

  8. statistics - Box-plot R calculating outliers - Stack Overflow

    Oct 29, 2018 · Box-plot R calculating outliers Asked 7 years, 1 month ago Modified 1 year, 7 months ago Viewed 6k times

  9. r - How to add standard error bars to a box and whisker plot using ...

    Jan 27, 2017 · How to add standard error bars to a box and whisker plot using ggplot2? Asked 9 years, 4 months ago Modified 8 years, 10 months ago Viewed 40k times

  10. r - Remove whiskers in box-whisker-plot - Stack Overflow

    Sep 29, 2017 · Is there a straightforward way to remove the whiskers from a box-whisker-plot in ggplot2 in R? I'd like to keep only the boxes themselves. MWE: library ("ggplot2") p <- ggplot …