Watts-College / cpp-528-fall-2022

https://watts-college.github.io/cpp-528-fall-2022/
1 stars 2 forks source link

Lab 02 Instructions question #5

Closed jacobtnyoung closed 1 year ago

jacobtnyoung commented 1 year ago

Hi @mboudour

I have a few questions on the instructions for lab 02.

First, in the "Part 1: Data Concordance" section it says to put the data concordance spreadsheet in the data/rodeo directory. But, in the Project Rubric the data concordance spreadsheet is shown to be in the data/raw directory. So, I was just wanting to check what the correct location of the file is.

Second, in the same section it says to "paste the Census definitions of each field into the 'description' column of the data within the data concordance spreadsheet". But, in the spreadsheet the column is labeled "definition". I assume this is what the instructions are referring to? I just wanted to make sure I am doing things correctly.

Thanks!

jacobtnyoung commented 1 year ago

As a follow up, are we suppose to complete every definition? This ends up being over 100 fields. So, before I copied and pasted that many, I wanted to check and make sure. Thanks!

mboudour commented 1 year ago

Jacob,

I'm about to prepare my lunch now and at 2-3pm I have a Zoom sesh with a co-worker. Subsequently, I'll go to my office to work and from there I'll try to answer all your questions. Thank you.

On Sat, Oct 15, 2022 at 1:01 PM jacobtnyoung @.***> wrote:

As a follow up, are we suppose to complete every definition? This ends up being over 100 fields. So, before I copied and pasted that many, I wanted to check and make sure. Thanks!

— Reply to this email directly, view it on GitHub https://urldefense.com/v3/__https://github.com/Watts-College/cpp-528-fall-2022/issues/5*issuecomment-1279823187__;Iw!!IKRxdwAv5BmarQ!bNyL8t3ee9pD_9oFQ-7CVALg-Nl04zvXpNxKpHcEBXCGcpJfIA0qlNZKDTny7L96L8qr4Oxc7IDC_j2HTvrCd4FfGd2cqF8$, or unsubscribe https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/AATHZXIHZT4TKBCXNAVJEZTWDMEQ5ANCNFSM6AAAAAARGBFNNQ__;!!IKRxdwAv5BmarQ!bNyL8t3ee9pD_9oFQ-7CVALg-Nl04zvXpNxKpHcEBXCGcpJfIA0qlNZKDTny7L96L8qr4Oxc7IDC_j2HTvrCd4FfV5_hC94$ . You are receiving this because you were mentioned.Message ID: @.***>

-- Moses Boudourides (pronounced Bo͝odo͝orēT͟Həs) Professor of Practice at the School of Public Affairs, Arizona State University Phone: 484 534-0290 http://mboudour.github.io/about/

mboudour commented 1 year ago

Jacob,

For your first question, I don't think the name of the directory matters, but I would use the data/rodeo directory for consistency with the lab 02 instructions.

The answer to your second question is yes (by corresponding descriptions to definitions).

On Sat, Oct 15, 2022 at 12:47 PM jacobtnyoung @.***> wrote:

Hi @mboudour https://urldefense.com/v3/__https://github.com/mboudour__;!!IKRxdwAv5BmarQ!YIj5OURiPtgmUQIaBTBPObaAFLqmqJ1rRmjkrSGDycmG2fo683ymIKk1l5w_obyJgEAN5FXx6dVQG-0_42QFqXlEjv-F0-s$

I have a few questions on the instructions https://urldefense.com/v3/__https://watts-college.github.io/cpp-528-fall-2022/labs/lab-02-instructions.html__;!!IKRxdwAv5BmarQ!YIj5OURiPtgmUQIaBTBPObaAFLqmqJ1rRmjkrSGDycmG2fo683ymIKk1l5w_obyJgEAN5FXx6dVQG-0_42QFqXlEPlBPE8k$ for lab 02.

First, in the "Part 1: Data Concordance" section it says to put the data concordance spreadsheet in the data/rodeo directory. But, in the Project Rubric https://urldefense.com/v3/__https://watts-college.github.io/cpp-528-fall-2022/project/project_rubric.html__;!!IKRxdwAv5BmarQ!YIj5OURiPtgmUQIaBTBPObaAFLqmqJ1rRmjkrSGDycmG2fo683ymIKk1l5w_obyJgEAN5FXx6dVQG-0_42QFqXlEAd5wt6s$ the data concordance spreadsheet is shown to be in the data/raw directory. So, I was just wanting to check what the correct location of the file is.

Second, in the same section it says to "paste the Census definitions of each field into the 'description' column of the data within the data concordance spreadsheet". But, in the spreadsheet the column is labeled "definition". I assume this is what the instructions are referring to? I just wanted to make sure I am doing things correctly.

Thanks!

— Reply to this email directly, view it on GitHub https://urldefense.com/v3/__https://github.com/Watts-College/cpp-528-fall-2022/issues/5__;!!IKRxdwAv5BmarQ!YIj5OURiPtgmUQIaBTBPObaAFLqmqJ1rRmjkrSGDycmG2fo683ymIKk1l5w_obyJgEAN5FXx6dVQG-0_42QFqXlEHj1tPQY$, or unsubscribe https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/AATHZXLI3NZD73XLJK6ZL73WDMC3FANCNFSM6AAAAAARGBFNNQ__;!!IKRxdwAv5BmarQ!YIj5OURiPtgmUQIaBTBPObaAFLqmqJ1rRmjkrSGDycmG2fo683ymIKk1l5w_obyJgEAN5FXx6dVQG-0_42QFqXlEx9VIXQQ$ . You are receiving this because you were mentioned.Message ID: @.***>

-- Moses Boudourides (pronounced Bo͝odo͝orēT͟Həs) Professor of Practice at the School of Public Affairs, Arizona State University Phone: 484 534-0290 http://mboudour.github.io/about/

mboudour commented 1 year ago

Jacob,

I'm not sure if I understood your question well. However, what I would do pull in any values with the word `"x" would be to create a filter_by_description function and then use the dplyr mutate function as follows:

filter_by_description(description="x") %>% mutate(definition=stringr::str_to_lower(definition))

On Sat, Oct 15, 2022 at 1:01 PM jacobtnyoung @.***> wrote:

As a follow up, are we suppose to complete every definition? This ends up being over 100 fields. So, before I copied and pasted that many, I wanted to check and make sure. Thanks!

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you were mentioned.Message ID: @.***>

-- Moses Boudourides (pronounced Bo͝odo͝orēT͟Həs) Professor of Practice at the School of Public Affairs, Arizona State University Phone: 484 534-0290 http://mboudour.github.io/about/

jacobtnyoung commented 1 year ago

Thanks @mboudour!

jacobtnyoung commented 1 year ago

As a follow up to this question:

"First, in the "Part 1: Data Concordance" section it says to put the data concordance spreadsheet in the data/rodeo directory. But, in the Project Rubric the data concordance spreadsheet is shown to be in the data/raw directory. So, I was just wanting to check what the correct location of the file is."

The .xlsx file goes in the raw data folder. When you modify that file and save it as a .csv file for the lab, that .csv file goes in the rodeo folder.

mboudour commented 1 year ago

Thank you, Jacob.

On Tue, Oct 18, 2022 at 1:31 PM jacobtnyoung @.***> wrote:

As a follow up to this question:

"First, in the "Part 1: Data Concordance" section it says to put the data concordance spreadsheet in the data/rodeo directory. But, in the Project Rubric https://urldefense.com/v3/__https://watts-college.github.io/cpp-528-fall-2022/project/project_rubric.html__;!!IKRxdwAv5BmarQ!dVTMX0Jk6dZk0Q3ijN2JHY_UbSlkZ7Fayp3wLCdPpkhruTnPmlsMD3gcCpJ6VTSMax7d1HiAjHYaqiMD2zA712h7_-zgvwo$ the data concordance spreadsheet is shown to be in the data/raw directory. So, I was just wanting to check what the correct location of the file is."

The .xlsx file goes in the raw data folder. When you modify that file and save it as a .csv file for the lab, that .csv file goes in the rodeo folder.

— Reply to this email directly, view it on GitHub https://urldefense.com/v3/__https://github.com/Watts-College/cpp-528-fall-2022/issues/5*issuecomment-1282968736__;Iw!!IKRxdwAv5BmarQ!dVTMX0Jk6dZk0Q3ijN2JHY_UbSlkZ7Fayp3wLCdPpkhruTnPmlsMD3gcCpJ6VTSMax7d1HiAjHYaqiMD2zA712h7yaaCKwk$, or unsubscribe https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/AATHZXOCPK7EB7LJDPQFMATWD4CLFANCNFSM6AAAAAARGBFNNQ__;!!IKRxdwAv5BmarQ!dVTMX0Jk6dZk0Q3ijN2JHY_UbSlkZ7Fayp3wLCdPpkhruTnPmlsMD3gcCpJ6VTSMax7d1HiAjHYaqiMD2zA712h7x7HcD1g$ . You are receiving this because you were mentioned.Message ID: @.***>

-- Moses Boudourides (pronounced Bo͝odo͝orēT͟Həs) Professor of Practice at the School of Public Affairs, Arizona State University Phone: 484 534-0290 http://mboudour.github.io/about/