2024-06-07 13:47:03 +02:00
|
|
|
# Toy data set for the methods seminar on data management SS2024
|
|
|
|
|
|
|
|
## Responsible person
|
|
|
|
|
|
|
|
Nora Wickelmaier
|
2024-06-07 13:50:35 +02:00
|
|
|
|
2024-06-07 13:47:03 +02:00
|
|
|
Referentin Forschungsmethoden und Forschungsdatenmanagement
|
2024-06-07 13:50:35 +02:00
|
|
|
|
2024-06-07 13:47:03 +02:00
|
|
|
Leibniz-Institut für Wissensmedien (IWM)
|
2024-06-07 13:50:35 +02:00
|
|
|
|
2024-06-07 13:47:03 +02:00
|
|
|
n.wickelmaier@iwm-tuebingen.de
|
|
|
|
|
|
|
|
## Folder structure and naming conventions
|
|
|
|
|
|
|
|
```
|
|
|
|
/example/
|
|
|
|
|
|
|
|
|
|- /code/
|
|
|
|
|- /data/
|
|
|
|
|- /codebook/
|
|
|
|
|- /rawdata/
|
|
|
|
|- /results/
|
|
|
|
```
|
|
|
|
|
|
|
|
The `code` folder contains analysis scripts written in R. The scripts are
|
|
|
|
numbered, indicating the order they should be executed in.
|
|
|
|
|
|
|
|
The `data` folder contains all folders associated with data and its
|
|
|
|
documentation.
|
|
|
|
|
2024-06-23 14:43:31 +02:00
|
|
|
The `codebook` folder contains different codebook options and R scripts that
|
2024-06-07 13:47:03 +02:00
|
|
|
create these codebooks. If the codebook is created by an R script, the script
|
|
|
|
and the codebook are named identically, e.g., `codebook_01.R` and
|
|
|
|
`codebook_01.xslx`.
|
|
|
|
|
|
|
|
The `rawdata` folder contains the downloads from Qualtrics. In Qualtrics, the
|
|
|
|
variables have been selected and ordered and then downloaded, without the
|
|
|
|
additional columns Qualtrics adds by default. The naming convention for the
|
|
|
|
downloaded files is
|
|
|
|
```
|
|
|
|
RDM_MS_SS2024_download_<YYYY-MM-DD>.<fileending>
|
|
|
|
```
|
|
|
|
No other files than the downloads from qualtrics should go into this folder!
|
|
|
|
|
|
|
|
The `results` folder contains processed data. The scripts in `/code/` process
|
2024-06-07 13:50:35 +02:00
|
|
|
the data from `/rawdata/` and save the files containing the processed data to
|
2024-06-07 13:47:03 +02:00
|
|
|
`/results/`. Data can be exported as CSV files or RData files. If different file
|
|
|
|
formats contain the same data, they should be named identically, e.g.,
|
|
|
|
`data_rdm-ms-ss2024_cleaned.csv` and `data_rdm-ms-ss2024_cleaned.RData`.
|
|
|
|
|