How can I stop by code blocks from splitting in preview of R Notebook?
Clash Royale CLAN TAG #URR8PPP How can I stop by code blocks from splitting in preview of R Notebook? ```{r scatterplots, collapse=TRUE, results= 'hold'} p1 <- ggplot(x, aes(y=f.ecdf, x=P2))+geom_point()+theme_bw() p2 <- ggplot(x, aes(y=f.ecdf, x=P2))+geom_point()+theme_bw() p3 <- ggplot(x, aes(y=f.ecdf, x=G1))+geom_point()+theme_bw() p4 <- ggplot(x, aes(y=f.ecdf, x=G2))+geom_point()+theme_bw() p5 <- ggplot(x, aes(y=f.ecdf, x=P2))+geom_point()+theme_bw() p6 <- ggplot(x, aes(y=f.ecdf, x=P2))+geom_point()+theme_bw() p7 <- ggplot(x, aes(y=f.ecdf, x=G1))+geom_point()+theme_bw() p8 <- ggplot(x, aes(y=f.ecdf, x=G2))+geom_point()+theme_bw() grid.arrange( p1, p2, p3, p4, ncol = 2 ) grid.arrange( p5, p6, p7, p8, ncol = 2 ) ``` But in preview the code chunks are being evaluated after splitting. How can I stop this from happening. Basically, I want all plots to flow interrupted. What other information can I provide to diagnose this? ...