tibble doesnt appear as usual in console

when i run data frames (tibbles) such as mtcars or flights in console it always being displayed as normal tables without the column types of data and numbers of raws and so on
please help me

Does glimpse(mtcars) or str(mtcars) do what you want?

1 Like

Yeah, glimpse(mtcars) and str(mtcars) worked for me.

Thanks a lot.

mtcars is not a tibble. dplyr::as_tibble(mtcars) will temporarily convert it to a tibble and display the initial portion.

1 Like

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.