Printing Tibbles in R Markdown

Is it possible to print out Tibbles in R Markdown as in console?

library(readr)
csv.data <- read.csv(file = "pollution_us_2000_2016.csv")
csv.data.tibble <- as_tibble(csv.data)
# Output the variable
csv.data.tibble

In R Markdown

Kaggle US Pollution

Can you provide a reprex? That will make it easier for us to help you.

Thanks @siddharthprabhu, updated the Q.

Thank you. The output looks like a tibble to me. Can you explain what's wrong?

In console:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.