Loading Data with Repeating Groups

knitr::opts_chunk$set(
  collapse = TRUE,
  message = FALSE,
  warning = FALSE,
  echo = TRUE,
  comment = "#>"
)

KoboToolbox enables grouping of questions, allowing them to be answered multiple times. This feature is particularly useful during household surveys where a set of questions is designed to be answered by each member of the household.

Repeating groups are a powerful tool in survey design, offering several advantages:

  1. Efficiency: A single set of questions can be used for multiple respondents.
  2. Flexibility: Surveys can accommodate varying numbers of respondents.
  3. Data consistency: The same questions are asked for each repetition, ensuring uniform data collection.
  4. Simplified analysis: The structured format facilitates easier data analysis across respondents.

These benefits make repeating groups essential for surveys dealing with multi-member units like households, schools, or organizations.

Loading data

KoboToolbox implements this feature by incorporating the concept of repeat group, enabling the repetition of a group of questions.

In KoboToolbox forms, begin_repeat and end_repeat are special commands that define the boundaries of a repeating group:

Any questions placed between these commands will be repeated as a set, allowing for multiple responses to the same group of questions. This method involves enclosing the questions intended for repetition within a begin_repeat/end_repeat loop. Furthermore, repeat group allows for nesting, thus enabling the repetition of a question group within another repeat group. This concept can be demonstrated using the project and associated form below.

library(robotoolbox)
library(dplyr)
library(dm)
l <- asset_list

| type | name | label::English (en) | label::Francais (fr) | repeat_count | calculation | |:---------------------|:------------------|:-------------------------------------------------|:------------------------------------------------------|:----------------|:-----------------------------------------------| | start | start | | | | | | end | end | | | | | | today | today | | | | | | begin_repeat | demo | Demographic Characteristics | Caracteristique Demographique | | | | text | name | Name | Nom | | | | integer | age | Age | Age | | | | select_one sex | sex | Sex | Sexe | | | | integer | hobby | How many hobbies does \${name} have? | Combien de hobbies \${name} a ? | | | | select_one yesno | morelang | Does \${name} speak more than one language? | Est-ce que \${name} parle plus d'une langue ? | | | | calculate | name_individual | | | | indexed-repeat(\${name}, \${demo}, position(..)) | | begin_repeat | hobbies_list | List of Hobbies | Liste de hobbies | \${hobby} | | | text | hobbies | Hobbies of \${name_individual} | Hobbies de \${name_individual} | | | | end_repeat | | | | | | | begin_repeat | lang_list | List of Languages | Liste de langues | \${morelang} | | | select_multiple lang | langs | Languages spoken by \${name_individual} | Langue parle par \${name_individual} | | | | end_repeat | | | | | | | end_repeat | | | | | | | calculate | family_count | | | | count(\${demo}) | | note | family_count_note | Number of family members: \${family_count} | Nombre de membre dans la famille: \${family_count} | | | | begin_repeat | education | Education information | Information sur l'education | \${family_count} | | | calculate | name_individual2 | | | | indexed-repeat(\${name}, \${demo}, position(..)) | | select_one edu_level | edu_level | What is \${name_individual2}'s level of education | Quel est le niveau d'education de \${name_individual2} | | | | end_repeat | | | | | |

|list_name | name|label::English (en) |label::Francais (fr) | |:---------|----:|:------------------------|:--------------------| |sex | 1|Male |Homme | |sex | 2|Female |Femme | |sex | 3|Prefer not to say |Prefere ne pas dire | |edu_level | 1|Primary |Primaire | |edu_level | 2|Secondary |Secondaire | |edu_level | 3|Higher Secondary & Above |Lycee et superieur | |yesno | 1|Yes |Oui | |yesno | 0|No |Non | |lang | 1|French |Francais | |lang | 2|Spanish |Espagnol | |lang | 3|Arabic |Arabe | |lang | 99|Other |Autre |

Loading the survey

The aforementioned survey, named nested_roster, was uploaded to the server. It can be accessed from the list of asset asset_list.

library(robotoolbox)
library(dplyr)

# Retrieve a list of all assets (projects) from your KoboToolbox server
asset_list <- kobo_asset_list()

# Filter the asset list to find the specific project and get its unique identifier (uid)
uid <- filter(asset_list, name == "nested_roster") |>
  pull(uid)

# Load the specific asset (project) using its uid
asset <- kobo_asset(uid)
asset
asset <- asset_rg
asset

In this code:

Extracting the data

The output here deviates from a standard data.frame. It consists of a listing of each repeat group loop present in our form.

df <- kobo_data(asset)
df
df <- data_rg
df
class(df)

The output is a dm object, sourced from the dm package. A dm object is a collection of related data frames that preserves the relationships between different levels of data in repeating groups. It's particularly useful for repeating groups because:

  1. It maintains the hierarchical structure of the data, reflecting how repeating groups are nested within the survey.

  2. It allows for efficient storage and manipulation of data from different levels of the survey without losing the relationships between these levels.

  3. It provides tools for working with related tables, making it easier to analyze data across different repeating groups.

Using a dm object helps preserve the complex structure of surveys with repeating groups, allowing for more intuitive and accurate data analysis.

Manipulating repeat group as dm object

A dm object, which is a list of interconnected data.frame instances, can be manipulated using the dm package.

Visualizing the relationship between tables

To comprehend the data storage structure, we can visualize the relationships among tables (repeat group loops) and the schema of the dataset. This schema can be depicted using the dm_draw function.

library(dm)
dm_draw(df)

This visual representation of table relationships can significantly aid in planning your data analysis strategy and ensuring that you're working with the data in a way that respects its inherent structure.

Number of rows of each table

The dm package offers numerous helper functions for manipulating dm objects. For instance, the dm_nrow function can be used to ascertain the number of rows in each table.

dm_nrow(df)

A dm object is a list of data.frame

A dm object is a list of data.frame. Similar to any list of data.frame, you can extract each table (data.frame), and analyze it separately. The principal table, where you have the first repeat group, is termede as main.

glimpse(df$main)

The other tables are named following the names of their associated repeat groups. For instance, the education table is named after the education repeat group.

glimpse(df$education)

Filtering data

One key benefit of using the dm package is its capability to dynamically filter tables while maintaining their interconnections. For example, filtering the main table will automatically extend to the education and demo tables. As the hobbies_list and lang_list tables are linked to the demo table, they will be filtered as well.

df |>
  dm_filter(main = (`_index` == 2)) |>
  dm_nrow()

This approach ensures that your filtered dataset maintains the structural integrity of your survey data, leading to more reliable and consistent analysis results.

Joining tables

In certain instances, analyzing joined data may prove simpler. The dm_flatten_to_tbl function can be used to join data safely while preserving its structure and the connections between tables. We can merge the education table with the main table using the dm_flatten_to_tbl function, with the operation starting from education.

df |>
  dm_flatten_to_tbl(.start = education,
                    .join = left_join) |>
  glimpse()

This logic can be extended to create the widest possible table through a cascade of joins, commencing from a deeper table (.start argument) and ending at the main table. Taking .start = hobbies_list as an example, two joins will be performed: hobbies_list will be merged with the demo table, and subsequently, the demo table will be combined with the main table.

df |>
  dm_flatten_to_tbl(.start = hobbies_list,
                    .join = left_join,
                    .recursive = TRUE) |>
  glimpse()

Conclusion

The integration of robotoolbox with the dm package provides a powerful toolkit for handling complex survey data with repeating groups from KoboToolbox. This approach preserves the hierarchical structure of your data, allows for efficient manipulation and analysis, and offers flexibility in how you view and work with your survey results. By maintaining the relationships between different levels of your survey data, it ensures accurate and meaningful analyses, from simple filtering to complex joins. Whether you're dealing with household surveys, multi-level organizational data, or any other nested data structure, this workflow offers a robust solution for managing and analyzing your KoboToolbox data in R.

You can gain extensive knowledge about the dm package by going through its detailed documentation.



Try the robotoolbox package in your browser

Any scripts or data that you put into this service are public.

robotoolbox documentation built on April 4, 2025, 12:21 a.m.