Skip to content

Instantly share code, notes, and snippets.

@karan19100
Created July 18, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karan19100/ffdb185f9d35fc11d31a676b60325bcf to your computer and use it in GitHub Desktop.
Save karan19100/ffdb185f9d35fc11d31a676b60325bcf to your computer and use it in GitHub Desktop.
Boxplot_by_karanshah
par(mfrow=c(1, 2)) # it divides graph area in two parts
boxplot(newdata$HEMAGLOBIN, col = "yellow", border="blue",
main = "HEMAGLOBIN boxplot",
ylab = "g per decaliter")
boxplot(newdata$HEMATOCRIT, col = "orange", border="blue",
main = "HEMATROCRIT boxplot",
ylab = "percent values")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment