Photo by Bruno Saito no Pexels
Platform-based work has been expanding rapidly across the globe, creating new forms of labor relations. During the COVID-19 pandemic, city streets in Brazil became dominated by a new, essential workforce: app-based drivers and delivery workers. While demand for their services surged, the reality of their working lives remained largely invisible, hidden behind corporate platforms. Who are these workers? What are their working conditions? And what does their reality tell us about the future of work?
To address this information gap, researchers have turned to demographic surveys that can represent platform workers at scale. This project utilizes PNAD COVID-19, a special edition of Brazil’s National Household Sample Survey conducted during the pandemic, to analyze the profile and working conditions of gig economy workers.
By analyzing the microdata of 19,896 platform workers from May to November 2020, we can paint a clear, data-driven picture of the gig economy in Brazil.
The PNAD COVID-19 survey is an invaluable resource because it provides monthly labor indicators that allow researchers to track employment trends over time. Also includes specific categories that enable the identification of app-based delivery workers and drivers.
In this study:
The analysis focused on workers who reported being self-employed or working in the private sector without formal contracts, reflecting the informal nature of most platform jobs in Brazil.
tidyverse
, PNADcIBGE
, COVIDIBGE
, knitr
, gridExtra
, ggrepel
, survey
, zoo
, scales
, srvyr
git clone https://github.com/melogabriel/PNADCovid-workplatform.git
cd PNADCovid-workplatform
Install the required packages:
install.packages(c("tidyverse", "PNADcIBGE", "COVIDIBGE", "knitr", "gridExtra", "ggrepel", "survey", "zoo", "scales", "srvyr"))
PNADCovid_TrabalhadoresAPP.Rmd
in RStudio.The PNAD COVID-19 microdata was imported using the R package PNADcIBGE
, variables including:
Data from May to November 2020 were used, covering the entire survey period and the initial peak of the pandemic in Brazil.
The PNAD COVID-19 dataset contains an extensive list of variables. To focus the analysis on platform-based workers, the following key variables were selected based on the PNAD COVID-19 data dictionary:
The filtering steps applied to the raw PNAD COVID-19 microdata were as follows:
Timeframe Selection example:
pnad_covid_may = get_covid(year=2020, month=5, vars=c("UF", "A002", "A003", "A004","A005", "C007", "C007B", "C007C", "C008", "C009", "C01012", "C011A12", "C014"), design=FALSE, labels=TRUE)
Work Status: The analysis focused on respondents who:
Workers App status filter example:
workersAPP_may <- filter(pnad_covid_may,
C007 == 'Conta própria' | C007 == 'Empregado do setor privado',
C007B == 'Não' | is.na(C007B),
C007C == 'Motoboy,' | C007C == 'Entregador de mercadorias (de restaurante, de farmácia, de loja, Uber Eats, IFood, Rappy etc.)' | C007C == 'Motorista (de aplicativo, de taxi, de van, de mototáxi, de ônibus)')
# 2736 entries, 26 variables
Variable Recoding:
Variables naming example:
new_names <- c("UF" = "UF", "A002" = "Idade", "A003" = "Sexo", "A004" = "Cor ou Raça", "A005" = "Escolaridade", "C007" = "Tipo de Ocupação", "C007B" = "Carteira Assinada", "C007C" = "Tipo/Cargo/Função", "C008" = "Carga horária semanal habitual", "C009" = "Carga horária semanal", "C01012" = "Rendimentos", "C011A12" = "Rendimentos habituais", "C014" = "Contribui para o INSS")
names(workersAPP_may) <- new_names[names(workersAPP_may)]
The analysis used the R packages survey
and srvyr
to apply sampling weights and ensure population-representative estimates. Data manipulation was performed with tidyverse
, and visualizations were created using ggplot2
and supporting libraries.
To make the results accessible, the project also includes a Shiny Dashboard, enabling users to:
The consolidated sample included 19,896 platform-based workers, segmented as follows:
Demographic Profile:
94.57% male
62.1% self-identified as Black or Brown (pardo or preto)
Average age: 40.02 years
62% of workers have, at most, a complete high school education
Work Conditions:
Average workweek: 42.3 hours
Average monthly income: R$1,265
74.2% did not contribute to the INSS
This findings highlight the informal, male-dominated, and racially marked nature of platform-based work in Brazil. Most workers in this sector are not covered by social protections and work under precarious conditions.
The gig economy is often presented as a modern, innovative, and flexible way to work. However, a detailed, large-scale data analysis tells a different story: one of long hours, low pay, and a profound lack of social protection. The profile of these workers—predominantly male, Black or Brown, with limited formal education—highlights systemic inequalities that extend into these new forms of labor.
By combining public microdata and open-source tools, we can move beyond anecdotes and bring a new level of transparency to the platform economy. This approach is fully reproducible and provides a solid foundation for researchers, policymakers, and the public to understand the true dimensions and social impacts of this growing workforce. In this way, it hopes to contribute with ways of obtaining information about this new form of work that is still little known in terms of its dimensions and social impacts.
This project is part of the author’s master’s dissertation:
MELO, Gabriel Coutinho. Plataformização do trabalho no Brasil: uma análise das suas origens e condicionantes. 2024. 103 f. Master’s Dissertation — Universidade Federal Fluminense. Access the dissertation here.
The codes are available on my Github. You can also find me on LinkedIn.