rstudio - Data frame printing in R Markdown : how to hide column type? -


when print data frame in r markdown (html_document), following table (see image link below) following code :


title: "motor trend car road tests" output:   html_document:     df_print: paged ---  ```{r} mtcars ``` 

printed data frame

is there way hide column types corresponding yellow highligting in image?

one option - use dt package.

--- title: "motor trend car road tests" output:   html_document:     df_print: paged ---   ```{r} dt::datatable(mtcars) ``` 

enter image description here


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -