Nothing
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) library(csdata) library(data.table) library(magrittr)
Valid locations (and location types) are available in csdata::nor_locations_names()
.
Here we list as a reference table the valid location_code
s and location_name_description_nb
s (the two most commonly used locations).
d <- csdata::nor_locations_names()[, .( location_order = paste0("#", location_order), location_code, location_name_description_nb )] gt::gt(d) %>% gt::tab_options( table.width = "750px" ) %>% gt::tab_header(title = "Reference table of location_code and location_name_description_nb") %>% gt::cols_label( location_order = "#" )
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.