Watts-College / cpp-529-fall-2022

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

Lab 5 Data Dictionary for Longitudinal Tract Database (LTDB) Project? #13

Open jlhauer opened 1 year ago

jlhauer commented 1 year ago

@AntJam-Howell Is there a data dictionary for the Longitudinal Tract Database (LTDB) Project dataset?

I believe our task is to create new variables, so I want to be sure I am creating variables correctly.

I tried searching on the Longitudinal Tract Database (LTDB) Project, website. I tried calling for a dd using several URLs but none were .csv, so I didn't expect that to work, but I tried.

dd.URL <- "

data.dictionary <- read.csv( dd.URL, stringsAsFactors=F )

data.dictionary %>% pander()

I tried data_dict(df, print_table = "Yes"), but no luck.

And I tried re-reading both docs to see if I was missing an instruction.

If I don't need a data dictionary, then I am missing the big picture, and I need some guidance.

lecy commented 1 year ago

https://github.com/Watts-College/cpp-529-fall-2022/tree/main/LABS/data

Check out the codebook file and data dictionary CSV.

jlhauer commented 1 year ago

Thank you!