RMHogervorst / rwethereyet

A braindump of unfinished ideas that are just not there yet
https://notes.rmhogervorst.nl
0 stars 0 forks source link

How to add a abbreviations table to a rmarkdown table #1

Closed RMHogervorst closed 4 years ago

RMHogervorst commented 6 years ago

needs to be simple, just thow it in

library(tidyverse)
tibble::tribble(
    ~abbreviation, ~meaning,
   "ZZA", "Ze Zoom Abbreviation",
    "tribble", "a row wise tibble"
) %>% 
    arrange(abbreviation) %>%
    knitr::kable(caption = "abbreviations")