File:R-US state areas-basicboxplot+colour.svg

Description
English: Basic horizontal boxplot example (no outlier treatment) with continuous data, coloured to match R-US_state_areas-1D+quartiles. Data = US state areas
Date
Source Own work
Author HYanWong
Permission
(Reusing this file)
Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
Category:Self-published work#R-US%20state%20areas-basicboxplot+colour.svgCategory:PD-self#R-US%20state%20areas-basicboxplot+colour.svg
SVG development
InfoField
 
The SVG code is valid.
 
This boxplot was created with R.
Category:Valid SVG created with R code#R-US%20state%20areas-basicboxplot+colour.svg
 
The file size of this SVG boxplot may be irrationally large because its text has been converted to paths inhibiting translations.
Category:Path text SVG
Source code
InfoField

R code

svg(file = "R-US_state_areas-basicboxplot+colour.svg", width = 5, height = 1.5, pointsize = 8)
#Basic horizontal boxplot example (no outlier treatment) with continuous data, coloured to match R-US_state_areas-1D+quartiles. Data = US state areas 
par(mar=c(4,1,3,1)+0.1)
X <- state.area*2.58998811/1000
stripchart(X, pch=NA, xlab=expression(paste(italic("landArea")," (thousands of square km)")), xaxt="n") #dummy plot, to set up axes
axis(1,seq(0, 2e3, 100), cex.axis=0.8, las=2)
#roll our own boxplot, to allow different coloured whiskers etc.
#Should be equivalent to boxplot(Y, range=0, add=TRUE)
corners <- xy.coords(quantile(X, c(0.25, 0.25, 0.75, 0.75)), c(0.8,1.2,1.2,0.8))
segments(corners$x, corners$y, corners$x[c(2,3,4,1)], corners$y[c(2,3,4,1)], col=c("green", "grey30", "red", "grey30")) #box
segments(median(X), 0.8, median(X), 1.2, lwd=3) #median
arrows(quantile(X, c(0.25, 0.75)),1,range(X), 1, col=c("green", "red"), angle = 90, length=0.1) #whiskers
title("Size of US states")
dev.off()
Category:Box plots Category:Images with R source code
Category:Box plots Category:Images with R source code Category:PD-self Category:Path text SVG Category:Self-published work Category:Valid SVG created with R code