Introduction to Data Management
Last updated on 2026-07-28 | Edit this page
Overview
Questions
- Why is data management important?
- How do computers organise files and folders?
- What is a file system?
- How can I use a graphical file explorer to navigate my data?
Objectives
By the end of this episode, learners will be able to:
- Describe common data management challenges.
- Explain how files and folders are organised on a computer.
- Navigate a file system using a graphical interface.
- Locate project data using a file explorer.
- Explain why data organisation matters for research.
Introduction
Research increasingly depends on digital data. Whether you are collecting measurements in the field, analysing simulation outputs, recording interviews, working with images, or managing spreadsheets, the data you create must be stored, organised, documented, and maintained throughout its lifecycle.
Good data management makes research more efficient, more reproducible, and easier to share with collaborators. Poor data management can result in wasted time, duplicated effort, lost information, and difficulty reproducing results.
In this lesson we will work through a realistic scenario that many researchers encounter: inheriting a project from somebody else.
Over the course of the lesson we will begin with a chaotic collection of files and gradually improve it using practical data management techniques.
We will work from the outside in:
- Organising folder structures
- Creating meaningful file names
- Documenting data and workflows
- Choosing appropriate storage locations
- Managing storage and file transfers
- Deciding what data to keep and what to remove
- Improving tabular data structure
- Choosing appropriate data formats
The focus of this lesson is not programming, data science, or statistics. Instead, we will concentrate on practical skills that help people find, understand, share, and preserve research data.
Scenario
Imagine the following situation.
You are a postgraduate researcher joining a collaborative research project.
One of the project’s researchers has recently left the institution. Before leaving, they copied everything they thought might be important into a single folder and sent it to the team.
Unfortunately, the folder contains hundreds of files.
Some files have names such as:
Data!@#$.csv
data_final_v3_LAST_ONE.xlsx
Untitled.csv
copy of DSCO1023.png
Some folders are called:
New Folder
New Folder (2)
miscellaneous
RAW_DATA_!!!
There are multiple file versions, undocumented datasets, hidden folders, and no README file explaining what anything means.
Your supervisor asks:
Can you work out what this data is, organise it, and make sure we can continue the project?
Throughout this lesson, you will take the role of the researcher trying to rescue this project.
Each episode focuses on solving one specific problem and introduces practical techniques that can be applied to your own research projects.
Why Does Data Management Matter?
Many research projects begin with only a handful of files:
experiment.xlsx
notes.docx
results.csv
Finding information is easy.
However, projects grow. As files accumulate, researchers typically encounter familiar problems:
- “I can’t find the file I need.”
- “Which version is current?”
- “Where did this data come from?”
- “Why am I running out of storage?”
- “How do I share this file?”
- “What does this dataset actually contain?”
Most of these problems are not technical problems.
They are organisational problems.
Good data management practices reduce time wasted searching for data, improve collaboration, and make research easier to reproduce.
Various research funding organisations have data management and sharing policies, and they can request detailed plans in funding applications:
- UKRI (UK)
- Wellcome Trust (UK)
- NSF (US)
- CIHR (Canada)
Guidelines for more funders are included in Newcastle University’s overview of Data Management Expectations.
Newcastle University has its own policies for postgraduates and all researchers.
Have you ever inherited files from another researcher or returned to an old project after several months?
What was the most difficult part of understanding the data?
Legal issues with personal data
- Personal data can be requested by members of the public on mandated timescales. Would you be able to find someone’s data if they requested it?
- Members of the public can request that their data be deleted. Would you be able to do so with confidence?
- Personal data can only be retained for specific purposes.
Clear data management is essential to ensure you comply with the law and keep track of important data.
How Computers Store Data
Before we organise data effectively, it helps to understand how computers store information.
Computers store information in files.
Files are organised into folders (also called directories), which can contain both files and additional folders.
Together these form a file system.
Visualising a File System
Computer
│
└── Users
│
└── Alice
│
├── Documents
│ ├── Report.docx
│ └── Notes.txt
│
├── Downloads
│ ├── Dataset.csv
│ └── Image.png
│
└── Pictures
├── Figure1.jpg
└── Figure2.jpg
Folders help organise related files in much the same way as folders in a filing cabinet.
A file system provides:
- Structure
- Organisation
- Navigation
- Storage
Without folders, every file on your computer would exist in one enormous list.
Storage Locations
Files ultimately live on some form of digital storage. Examples include:
- Internal hard drives
- Solid-state drives (SSDs)
- USB drives
- Network storage
- Cloud storage
Regardless of where files are stored physically, they are typically presented to users through the same folder-and-file structure. As a result, learning to navigate folders is a transferable skill regardless of the storage system being used.
Introducing the File Explorer
Most people interact with files through a graphical interface known as a file explorer or file manager.
Examples include:
| Operating System | File Manager |
|---|---|
| Windows | File Explorer |
| macOS | Finder |
| Linux | Files / Nautilus / Dolphin (varies by distribution) |
In this lesson we will demonstrate using Windows File Explorer, but the same concepts apply to other operating systems.
Opening File Explorer
The instructor will demonstrate how to open a file explorer in Windows.
Depending on the operating system, you can use any of these options to open a file explorer:
Further instructions for various file navigation tools:
Anatomy of File Explorer
A typical File Explorer window contains several important components.
+--------------------------------------------------+
| Address Bar |
+--------------------------------------------------+
| Navigation Pane | File List |
| | |
| Documents | Dataset.csv |
| Downloads | README.txt |
| Pictures | results.xlsx |
| Desktop | raw_data |
| | |
+--------------------------------------------------+
Navigation Pane
Usually found on the left-hand side and shows commonly used folders such as
- Desktop
- Documents
- Downloads
- Pictures
- Shared drives
- Other folders
You can use it to jump quickly between locations.
File List
The central area of the window. This displays the contents of the currently selected folder.
Looking Ahead
In the next episode we will examine the inherited dataset and begin improving its folder structure. Before we can organise the files, however, we first need to locate them.
Resources
Newcastle University provides a number of resources for data management:
- Research Data Management Training
- Ethics toolkit for data, including the Research Data Management Policy and Code of Good Practice
- Data management for postgraduates
- Research data management
Finding the Dataset
Download the lesson dataset.
Using File Explorer:
- Open the Downloads folder.
- Locate the downloaded dataset.
- Open the dataset folder.
- Explore the contents without modifying anything.
- Identify at least three things that seem confusing or poorly organised.
Was it immediately obvious where the important data was? What information would have helped you understand the project more quickly?
- Data management is an essential part of research practice.
- Many common research frustrations arise from poor organisation and documentation.
- Computers organise information using files and folders within a file system.
- File explorers provide a graphical way to navigate stored data.
- Understanding how files are organised is a foundation for good data management.
- A well-organised project should be understandable to collaborators and to your future self.