In this lab, you will be using Git and Github to fork, clone, commit, and push changes to a repository. The repository you will select to use as the repository to fork to your own Github account can be one of the following:
If you are starting with a new repository, fork and clone the repository you selected to your local machine. Then orient yourself to the repository by opening the README file and reviewing the template configuration.
If you are using an existing reproducible research project repository, open that project on your local machine, and pull
the latest changes from the remote repository to ensure that your local and remote repositories are in sync.
Open a Quarto document in the process directory and name it accordingly (e.g., 2_curate.qmd
, data_curation.qmd
, etc.).
The data you select to curate should be of the unstructured or semi-structured variety and may be one of the following:
eagles.zip
, plain.zip
, or tagged.zip
versions using the get_compressed_data()
function from the qtalrkit
package.In your curation process file,
add a section which provides a brief description of the data you are curating. Include:
add a section which provides a description of the data structure of the resource, outines the relationships between the data elements, and proposes an idealized format for the curated dataset. Include:
add a section which programmatically reads, organizes, and writes the curated dataset. This is where you will craft the code to curate the data.Include prose and code comments to describe the process of organizing the data.
Make sure to organize your data curation process in a way that is reproducible. This means that you should be able to run the code in your data curation process file and reproduce the data curation process. Use the data/derived/
directory to store the curated dataset and the data dictionary.
Make sure that your code is well documented with code comments and that you have included prose to describe the process of curating the data.
Include a section to describe the resulting data and to display the data dictionary you have created for this data as a table.
Confirm that your code runs without errors and that the data is curated and displayed as expected.
Finally, commit and push your changes to your Github repository. Make sure to include files or directories that you do not have permission to share in your .gitignore
file.
Some questions to consider:
This work is licensed under a Creative Commons Attribution 4.0 International License.