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 ```
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) ```
Comments
Post a Comment