πŸš€ 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

Alternative Without R

If you only want to explore materials without running analyses:


⚑ 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

  1. Click the green β€œCode” button on GitHub
  2. Select β€œDownload ZIP”
  3. 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:


Use Case 4: I want to use the forms in my own study

  1. Review: Participatory_Workshop_Forms
  2. Read the methodological design documentation
  3. Adapt materials to your context
  4. 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:

  1. Send email to: ana.arcila@uniremington.edu.co
  2. Subject: β€œAccess Request - Rural Colombia Transcriptions”
  3. 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.png
  • reg_Proteina.png
  • reg_CHO.png
  • reg_Grasas.png
  • reg_Fibra.png
  • reg_Calcio.png
  • reg_Hierro.png
  • reg_Sodio.png
  • ALL_Macronutrientes.png
  • ALL_Micronutrientes.png

GABAS Graphs

  • reg_GABAS.png
  • ALL_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:


πŸ’‘ 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?

  1. Open an Issue
  2. Describe the problem clearly
  3. 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