Description Usage Arguments Value Examples
Gets a marged dataset for a given round. The default value is round 1.
1 | getMergedData(roundNumber = 1)
|
roundNumber |
An integer to indicate the round from which you are getting the data |
A dataframe with rows converted into their numeric values from the survey codebook. Please work with the codebook
1 2 3 4 5 6 | #Extracting a column to check what citizens think about their freedom of expression
merged5 <- getMergedData(roundNumber = 5)
expression_freedom <- merged5 %>% dplyr::select(Q17A) %>%
dplyr::mutate(express_freedom = Q17A) %>%
dplyr::select(express_freedom)
str(expression_freedom)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.