# Set CFPRICES for all languages
x1 <-
px(population_gl) |>
px_cfprices('C')
# Print CFPRICES
px_cfprices(x1)
# Set CFPRICES for individual languages
library(tibble)
x2 <-
x1 |>
px_languages(c('en', 'kl')) |>
px_cfprices(tribble(~language, ~value,
'en', 'C',
'kl', 'F'))
px_cfprices(x2)
# Remove CFPRICES
x3 <- px_cfprices(x2, NULL)
px_cfprices(x3)
Run the code above in your browser using DataLab