View source: R/t08801_ImpExp_Trevarer.R
t08801tre | R Documentation |
Import and export 1996 - now. Not sure if energywood assortments and wood is included
t08801tre()
a tibble with the entire dataset
https://www.ssb.no/statbank/table/08801/
dt <- t08801tre()
str(dt)
dt %>% mutate(kr_pr_m3 = ifelse(!is.na(m3) & m3>0, kr / m3, NA_real_)) %>%
filter(!(stringr::str_detect(.data$grovsort, "440") )) %>%
dplyr::filter(.data$kr_pr_m3 > 2000) %>%
arrange(desc(kr_pr_m3)) %>%
select(Tid, Varekoder, ImpEks, grovsort, assortment, m3, kg, kr,
kr_pr_m3, norsk) %>% str()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.