I would like to limit the number of lines created by the function when I embed my document with markdown in R. I looked around a lot, but I can not find a solution.
My code is below, it gives 50+ lines of data at startup. My goal is to have only 9 lines of code created by the sedist function.
```{r, results=1:9} sedist(FILENAME, method="correlation") ```
I tried using {r, message=1:9} , {r, Hide=1:9} , {r, height=1:9} , {r, results='hide'} and the like.
source share