Introduction to Data Curation
Last updated on 2026-04-12 | Edit this page
Overview
Questions
- What is data curation?
- Why is data curation important in data science?
- What are the stages of the data curation lifecycle?
- How does good curation improve research quality and reproducibility?
- What are common challenges in managing data?
Objectives
- Define data curation and its purpose
- Understand the lifecycle of curated data
- Recognize best practices for organizing and managing datasets
- Identify common metadata and documentation standards
- Appreciate the role of data curation in reproducible science
What is Data Curation?
Data curation is the process of organizing, documenting, preserving, and maintaining data so that it remains useful, understandable, and reusable over time.
It includes:
- Cleaning and validating data
- Organizing files and formats
- Creating metadata
- Preserving datasets for long-term access
Key Idea
Data curation is not just storing files — it is making data usable for future analysis.
Why Data Curation Matters
Poorly curated data can lead to:
- Lost files
- Confusing variable names
- Missing context
- Irreproducible research
Well-curated data helps:
- Ensure reproducibility
- Enable collaboration
- Improve data quality
- Support long-term preservation
The Data Curation Lifecycle
Data curation happens throughout the life of a dataset.
Core Principles of Good Data Curation
1. Organization
Use clear folder structures.
Example:
In your project folder:
project/-
You can file sub-folders with the following names:
- data_raw/
- data_clean/
- scripts/
- outputs/
- documentation/
You can for example, write scripts in a way that save the outputs in
output/. This helps maintain the continuity of your
research. One needs to keep in mind that they should be able to redo the
process of their application of research with ease.
2. Naming Conventions
Good file names should be: - Descriptive - Consistent - Machine-readable
Example: river_discharge_monthly_2024.csv
Avoid: data_new_latest2.csv
Data Cleaning vs Data Curation
These are related but different:
File Formats Matter
Choose formats that are:
- Open
- Reusable
- Non-proprietary
Preferred:
- CSV instead of XLSX
- TXT instead of DOCX for plain text
- GeoJSON instead of closed GIS formats when possible
Version Control in Data Curation
Track changes to files over time.
Methods:
- Version numbering (
v1,v2) - Git / GitHub
- Changelogs
Example: survey_cleaned_v3.csv
Tip
Never overwrite original raw data.
Keep raw data unchanged.
Backup and Preservation
Use the 3-2-1 Rule:
- 3 copies of data
- 2 different storage types
- 1 offsite backup
Example:
- Local computer
- External drive
- Cloud storage
FAIR Principles
Good curated data should be:
Common Challenges in Data Curation
- Inconsistent naming
- Missing metadata
- Lost context over time
- Proprietary formats
- Lack of backup
Real-World Example
Imagine sharing a climate dataset without:
- Units
- Dates
- Sensor details
Even accurate data becomes nearly useless without context.
Hands-On Exercise
Accessibility and Ethics in Data Curation
Remember:
- Protect sensitive data
- Remove personal identifiers
- Follow privacy guidelines
- Respect licensing restrictions
Final Takeaways
Good data curation:
- Saves time later
- Prevents mistakes
- Improves collaboration
- Makes research reproducible
- Have you ever struggled with poorly organized data?
- What curation practice would improve your current workflow most?