RPubs will retire in June 2027. Your existing documents will stay accessible through December 31, 2031
and Connect Cloud is the recommended home for new publishing. Read the blog post

Recently Published

Lab2
Document
Simulation
R Markdown
HW3
Steven Lie / 112031131
Air quality homework
Code Along 6 Ch 6
Plot
PlantGrowth PlantGrowth%>% group_by(group)%>% summarise( count = n() , mean(weight) , sd(weight) ) palette.colors() ggboxplot(data = PlantGrowth , x = "group" ,y = "weight" , color = "group" ,palette =c( "#E69F00", "#56B4E9" ,"#CC79A7") , title = "Treatment Impact" ,xlab = "Group" , ylab ="Weight" ) with(PlantGrowth ,shapiro.test(weight[group == "ctrl"]) ) with(PlantGrowth ,shapiro.test(weight[group == "trt1"]) ) with(PlantGrowth ,shapiro.test(weight[group == "trt2"]) ) plant_avo = aov(weight~group , data = PlantGrowth) summary(plant_avo) TukeyHSD(plant_avo) Y = plot(plant_avo , 2)
ANOVA_test
PlantGrowth PlantGrowth%>% group_by(group)%>% summarise( count = n() , mean(weight) , sd(weight) ) palette.colors() ggboxplot(data = PlantGrowth , x = "group" ,y = "weight" , color = "group" ,palette =c( "#E69F00", "#56B4E9" ,"#CC79A7") , title = "Treatment Impact" ,xlab = "Group" , ylab ="Weight" ) with(PlantGrowth ,shapiro.test(weight[group == "ctrl"]) ) with(PlantGrowth ,shapiro.test(weight[group == "trt1"]) ) with(PlantGrowth ,shapiro.test(weight[group == "trt2"]) ) plant_avo = aov(weight~group , data = PlantGrowth) summary(plant_avo) TukeyHSD(plant_avo) X = plot(plant_avo , 1)
Document
Homework3NicoleFeeney
Document
Lab Intro