Hi,
Are you looking for typesetting for tables? There are many packages available you can try, e.g. kable, xtable, or gt... Here's an example with kableExtra (to use kable with pipe). Look into the documentation for a tonnage of typesetting options.
data(mtcars)
head(mtcars) %>%
dplyr::select(1:8) %>%
kableExtra::kbl() %>%
kableExtra::kable_styling(position = "center", full_width = FALSE) %>%
kableExtra::kable_classic()
Hope this helps?
JW