File:R-US state areas-boxplot log.svg

Description
English: Horizontal boxplot example with logged (base 10) continuous data, outliers identified by name. 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-boxplot%20log.svgCategory:PD-self#R-US%20state%20areas-boxplot%20log.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-boxplot%20log.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-boxplot_log.svg", width = 5, height = 1.5, pointsize = 8)
#Horizontal boxplot example with logged (base 10) continuous data, outliers identified by name. Data = US state areas
par(mar=c(3,4,4,1)+0.1)
X <- log10(state.area*2.58998811)
bp <- boxplot(X, horizontal=TRUE, xaxt="n", xlab="")
axis(1, 4:6, mgp=c(1,0.5,0))
title(xlab=expression(log[10](italic("LandArea"))), mgp=c(2,0.5,0))
title(main="Size of US states", line=2.5)
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