histNormal {nipnTK} | R Documentation |
Histogram with normal curve superimposed to help with “by-eye” assessments of normality of distribution
Description
Histogram with normal curve superimposed to help with “by-eye” assessments of normality of distribution
Usage
histNormal(
x,
xlab = deparse(substitute(x)),
ylab = "Frequency",
main = deparse(substitute(x)),
breaks = "Sturges",
ylim = NULL
)
Arguments
x |
A numeric vector |
xlab |
|
ylab |
|
main |
Plot title |
breaks |
Passed to |
ylim |
|
Examples
# histNormal() with data from a SMART survey in Kabul, Afghanistan
# (dist.ex01)
svy <- dist.ex01
histNormal(svy$muac)
histNormal(svy$haz)
histNormal(svy$waz)
histNormal(svy$whz)
[Package nipnTK version 0.2.0 Index]