π Quick Start Guide
π Quick Start Guide
This guide will help you start working with the supplementary materials of the βHealthy is freshβ study in less than 10 minutes.
π Prerequisites
Required Software
- R (version 4.0 or higher) - Download here
- RStudio (recommended) - Download here
- Git (optional, to clone repository) - Download here
Alternative Without R
If you only want to explore materials without running analyses:
- Review generated graphs
- Review workshop photographs
- Read documentation in each folder
β‘ Quick Start (3 steps)
1οΈβ£ Get the Repository
Option A: Clone with Git
git clone https://github.com/jcmunozmora/food-perception-rural-colombia.git
cd food-perception-rural-colombia
Option B: Download ZIP
- Click the green βCodeβ button on GitHub
- Select βDownload ZIPβ
- Extract the file on your computer
2οΈβ£ Configure R Environment
Open RStudio and run:
# Set working directory
setwd("path/to/food-perception-rural-colombia")
# Run automatic setup
source("setup.R")
This script:
- β Verifies your R version
- β Installs required packages automatically
- β Loads libraries
- β Verifies project structure
- β Creates necessary folders
Estimated time: 2-3 minutes
3οΈβ£ Run Analysis
Option A: Full Analysis (Automatic)
# Run everything at once
run_full_analysis()
Option B: Step by Step (Manual)
# Navigate to analysis folder
setwd("Analysis_Quantitative")
# Step 1: Generate processed datasets
source("01_GenDataSet.R")
# Step 2: Generate RIEN graphs (nutritional adequacy)
source("02_Gen_Graph_RIEN.R")
# Step 3: Generate GABAS graphs (food groups)
source("03_Gen_Graph_GABAS.R")
# Step 4: Generate nutritional heatmap
source("04_Gen_Graph_Nutrients.R")
Estimated time: 2-3 minutes
π Repository Structure
food-perception-rural-colombia/
βββ README.md # Main page
βββ WORKSHOP.md # β Complete visual workshop documentation
βββ QUICKSTART.md # This guide
βββ setup.R # Automatic setup
βββ _config.yml # GitHub Pages configuration
β
βββ Analysis_Quantitative/ # π Quantitative analysis
β βββ README.md # Detailed documentation
β βββ 01_GenDataSet.R # Dataset generation
β βββ 02_Gen_Graph_RIEN.R # RIEN graphs
β βββ 03_Gen_Graph_GABAS.R # GABAS graphs
β βββ 04_Gen_Graph_Nutrients.R # Nutritional heatmap
β βββ Bases de datos.xlsx # Primary data
β βββ graphs/ # Generated graphs
β
βββ Analysis_Qualitative/ # π Qualitative analysis
β βββ README.md # Documentation
β βββ Barreras dieta saludable.xlsx # Coded barriers
β βββ InformaciΓ³n Sociodemografica.xlsx # Participant info
β
βββ Participatory_Workshop_Forms/ # π Workshop forms
β βββ README.md
β βββ desayuno, almuerzo, comida, barreras.pdf
β βββ Cuadro registro.pdf
β βββ extras.pdf
β
βββ Participatory_Workshop_Evidence-Transcriptions/ # πΈ Evidence
β βββ README.md
β βββ Pictures/ # Co-designed meal photos
β βββ Transcriptions/ # Transcriptions (restricted)
β
βββ Participatory_Workshops_Design/ # π¨ Methodological design
βββ Notas para DiseΓ±o de talleres 1.docx
π― Common Use Cases
Use Case 1: I want to understand how the workshops functioned
π Read the complete visual workshop documentation
Includes:
- Step-by-step process with real photographs
- Examples of participant co-designed meals
- Downloadable materials
- Key findings and lessons learned
Use Case 2: I want to reproduce the paperβs analyses
source("setup.R")
run_full_analysis()
Review results in: Analysis_Quantitative/graphs/
Use Case 3: I just want to see results (without code)
Navigate directly to:
- π¨ Visual workshop documentation with meal photos
- π Nutritional graphs
- πΈ Co-designed meal photos
- π Complete paper
Use Case 4: I want to use the forms in my own study
- Review: Participatory_Workshop_Forms
- Read the methodological design documentation
- Adapt materials to your context
- Important: Cite the original study:
Arcila-Agudelo, A.M. et al. (2026). "Healthy is fresh": A participatory study
of meal ideals and barriers shaping food choice in rural Colombia.
Use Case 5: I want to access complete transcriptions
Complete transcriptions are not publicly available for ethical reasons (re-identification risk).
To request access:
- Send email to: ana.arcila@uniremington.edu.co
- Subject: βAccess Request - Rural Colombia Transcriptionsβ
- Include:
- Purpose of use
- Institutional affiliation
- Ethics committee approval (if applicable)
π Expected Outputs
After running the analyses, you should see:
Processed Datasets
DS_Talleres_RIEN.rds/.xlsx(nutritional adequacy)DS_Talleres_GABAS.rds/.xlsx(food groups)
RIEN Graphs
reg_Calorias.pngreg_Proteina.pngreg_CHO.pngreg_Grasas.pngreg_Fibra.pngreg_Calcio.pngreg_Hierro.pngreg_Sodio.pngALL_Macronutrientes.pngALL_Micronutrientes.png
GABAS Graphs
reg_GABAS.pngALL_GABAS.png
Nutritional Heatmap
panel_b_heatmap.pdf(used in the article)panel_b_heatmap.png
π Troubleshooting
Problem: Error installing packages
Solution:
# Try manual installation
install.packages(c("tidyverse", "hrbrthemes", "readxl",
"writexl", "reshape2", "ggplot2"))
Problem: βCannot find file Bases de datos.xlsxβ
Solution: Verify youβre in the correct directory:
getwd() # Should show project folder
setwd("correct/path/to/project")
Problem: Graphs are not generated
Solution:
Verify the graphs/ folder exists:
dir.create("Analysis_Quantitative/graphs", recursive = TRUE)
Problem: R version too old
Solution: Download R 4.0 or higher from: https://www.r-project.org/
π Additional Documentation
For more detailed information, consult:
- π Main README - Complete study summary
- π Quantitative Analysis README - Technical details
- π Qualitative Analysis README - Qualitative methodology
- π Forms README - Workshop materials
- πΈ Evidence README - Photos and transcriptions
π‘ Useful Tips
View all available scripts
list.files("Analysis_Quantitative", pattern = "\\.R$")
View dataset structure
library(tidyverse)
ds_RIEN <- read_rds("Analysis_Quantitative/DS_Talleres_RIEN.rds")
glimpse(ds_RIEN)
Export graphs in high resolution
ggsave("my_graph.png", width = 12, height = 8, dpi = 300)
π How to Cite
@article{arcila2026healthy,
title={"Healthy is fresh": A participatory study of meal ideals
and barriers shaping food choice in rural Colombia},
author={Arcila, D. et al.},
journal={[Journal Name]},
year={2026}
}
GitHub automatically recognizes CITATION.cff to facilitate citation.
π Help and Support
Frequently Asked Questions
Check the repository Issues - your question may have already been answered!
Report a Problem
Found a bug or error in the code?
- Open an Issue
- Describe the problem clearly
- Include error messages if any
Contact
For questions about the study or data requests:
- π§ Email: ana.arcila@uniremington.edu.co (Ana MarΓa Arcila-Agudelo)
- π§ Alternative email: jmunozm1@eafit.edu.co (Juan Carlos MuΓ±oz-Mora)
- π Web: https://jcmunozmora.github.io/food-perception-rural-colombia
βοΈ License
This project is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
You are free to share and adapt these materials with proper attribution.
See: LICENSE.md
Ready to start! π
If you have any questions, donβt hesitate to open an Issue or contact us directly.
Last updated: February 2026