DS4PS / cpp-528-fall-2020

Course shell for CPP 528 Foundations of Data Science III - Project Management
http://ds4ps.org/cpp-528-fall-2020/
1 stars 1 forks source link

Week 02 Lab: Who should make the sub-directories? #10

Open cenuno opened 3 years ago

cenuno commented 3 years ago

Do each of us need to independently make the necessary sub-directories in addition to the data dictionary for week 02's lab?

cenuno commented 3 years ago

Recommendation: someone volunteer to make them on behalf of the team

While it is possible for each of you to make them independently, one of your teammates can volunteer to create the necessary sub-directories and boilerplate README.md files on behalf of the entire team on a feature branch.

Then one of you can review the code via a pull request and merge the changes into the main branch. Then everyone else can update their version of the main branch by pulling in the changes.

Then everyone else can have the sub-directories made for them as they progress on the week 02 lab. Note: there is a typo that mistakenly says "week 03" rather than week 02. I'm hoping to revise this soon.

For more context, please see this week's lecture videos related to the Git Feature Branch Workflow.

All content covered in each of these videos is documented in this Presentation All transcripts from each lecture are preserved in the Document.

cenuno commented 3 years ago

Skeleton Sub-Directory Structure

Hi everyone, please see below to see what your directory structure should look like. Each group's labs/ directory might look a little different but this is just how I organized it to give you an idea.

.
├── README.md
├── analysis
│   └── README.md
├── assets
│   ├── README.md
│   ├── css
│   │   └── README.md
│   └── images
│       └── README.md
├── cpp-528-fall-2020-teaching.Rproj
├── data
│   ├── README.md
│   ├── raw
│   │   ├── LTDB-DATA-DICTIONARY.xlsx
│   │   ├── LTDB-codebook.pdf
│   │   ├── LTDB_Std_All_Sample.zip
│   │   ├── LTDB_Std_All_fullcount.zip
│   │   ├── README.md
│   │   └── ltdb_data_dictionary.csv
│   ├── rodeo
│   │   └── README.md
│   └── wrangling
│       └── README.md
├── labs
│   ├── README.md
│   ├── wk01
│   │   └── README.md
│   ├── wk02
│   │   ├── README.md
│   │   ├── lab-02-nuno.html
│   │   ├── lab-02-nuno.rmd
│   │   └── utilities.R
│   ├── wk03
│   │   └── README.md
│   ├── wk04
│   │   └── README.md
│   ├── wk05
│   │   └── README.md
│   ├── wk06
│   │   └── README.md
│   └── wk07
│       └── README.md
├── renv.lock
├── report-templates
│   └── README.md
└── test_script.R