In R and knitr, can I suppress the message of readOGR?

后端 未结 2 903
自闭症患者
自闭症患者 2021-01-04 06:52

I\'m building small report using R & knitr, sending the output to pdf.

I\'m using several shape files in my analysis and whenever I use readOGR func

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-04 07:30

    The "knitr" way to do this would be to use results = 'hide'. Borrowing from @SimonO101's example data, try:

    ```{r, results='hide', echo=FALSE, message=FALSE}
    library(rgdal)
    dsn <- system.file("vectors", package = "rgdal")[1]
    cities <- readOGR(dsn=dsn, layer="cities")
    ```
    

提交回复
热议问题