You are on page 1of 1

data(iris)

library(ggcorrplot)

base<-Base_de_Datos

qqnorm(base$PESO)

qqnorm(log (1 + base $PESO))

which.max(base$PESO)
range(base$PESO)

qqnorm(estudio$PESO)

ks.test(estudio$PESO,pnorm, mean(estudio$PESO), sd(estudio$PESO))

shapiro.test(estudio$PESO)

library(ggplot2)
ggplot(data = estudio, mapping = aes(x=estudio$TRIMESTRE,y=estudio$PESO)) +
geom_boxplot()+ stat_compare_means(methods ="anova") + facet_wrap(.~LUGAR)

You might also like