R/eda.uni.R

"eda.uni" <-
function(x,title="")
{
par (mfrow = c(2,2))
hist(x,main=title, xlab=deparse(substitute(x)))
plot(density(x, na.rm=TRUE),main="Smoothed Histogram")
qqnorm(x); qqline(x)
boxplot(x,horizontal=TRUE,main="BoxPlot")
}

Try the QuantPsyc package in your browser

Any scripts or data that you put into this service are public.

QuantPsyc documentation built on June 4, 2022, 1:06 a.m.