hw6Mingyu Sun4/22/2020problem 1part a) make plots of the datalibrary(faraway)data(butterfat)attach(butterfat)par(mfrow=c(2,2))boxplot(Butterfat~Breed,data=butterfat,outline=FALSE)stripchart(Butterfat~Breed,data=butterfat,method="jitter",col="blue",vertical=TRUE,add=TRUE)boxplot(Butterfat~Age,data=butterfat,outline=FALSE)stripchart(Butterfat~Age,data=butterfat,method="jitter",col="blue",vertical=TRUE,add=TRUE)interaction.plot(butterfat$Breed,butterfat$Age,butterfat$Butterfat)interaction.plot(butterfat$Age,butterfat$Breed,butterfat$Butterfat)1