Created
February 21, 2022 13:35
-
-
Save MJacobs1985/a24bdd76917589219dc75e772854f1ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DataExplorer::plot_missing(day) | |
| DataExplorer::plot_missing(hour) | |
| g1<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`Cumm egg prod (HH)`))+ | |
| geom_point(aes(y=`Cumm egg produced (HD)`), col="red")+ | |
| theme_bw() | |
| g2<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`Egg weight (g)`))+ | |
| geom_point(aes(y=`Egg mass per day (g)`), col="red")+ | |
| theme_bw() | |
| g3<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`Feed intake per day\r\n(g)`))+ | |
| theme_bw() | |
| g4<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`Body weight (g)`), col="red")+ | |
| theme_bw() | |
| g5<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`FCR`), col="red")+ | |
| theme_bw() | |
| g6<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`mort-%`), col="red")+ | |
| theme_bw() | |
| g7<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`cumm mort-%`), col="red")+ | |
| theme_bw() | |
| g8<-ggplot(Norm, aes(x=`Age in Weeks`))+ | |
| geom_point(aes(y=`%\r\nLay`), col="red")+ | |
| theme_bw() | |
| grid.arrange(g1,g2,g3,g4, | |
| g5,g6,g7,g8,ncol=2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment