Remove Hashes in R Output from R Markdown and Knitr
You can include in your chunk options something like comment=NA # to remove all hashes or comment=”%” # to use a different character More help on knitr available from here: http://yihui.name/knitr/options If you are using R Markdown as you mentioned, your chunk could look like this: “`{r comment=NA} summary(cars) “` If you want to change … Read more