Open heathersummers opened 6 years ago
Hi @heathersummers !!! here are my comments on your hw07
your main README is beautifully organized and clear, as well as your README and folder for hw07. There are links to specific files and clear explanations (check on the Makefile link, that one doesn't work).
Thanks for providing a very clear md. file, everything was easy to navigate from here.
You downloaded the data in the Rmd file and also in the gapminder_exploratory.R
file, which seems repetitive, but that's a minor point. This R file effectively reads the data, creates two plots, and compute a reordering of continent levels. This is also exported as a new file.
The file gapminder_statistical.R
, takes as input the file produced in the previous script. Run a set of linear models and extract parameters of these models in a new dataframe. And, also extract a subset of countries based on this new data and saved that table. You showed an excellent use of other resources learned in this course!.
gapminder_figures.R
takes again one input, and produce informative graphs for specific countries based on the information obtained from the previous analysis. The graphs are embedded correctly in the md. report as well as the tables.
Also, there are plenty of clear and short comments in your Rscripts which is very helpful to understand what the code is going to do.
Finally, the Makefile.R
file seems to be correct, however I didn't use this strategy on my own homework, and I would guess that for me to be able to run the pipeline on this way, I would have to modify the folders to source
the code?, not sure. Still, I learned from your hw how to use a makefile.R
to write a analytical pipeline for several Rscripts!
Overall, excellent assignment!!! All objectives are accomplished and you presented everything in a neat way, also providing interesting new graphs and data from gapminder!!!
Hi @heathersummers and thanks for the invite!
Here is my peer review of your efforts for the second homework assignment in STAT547.
I feel like you did a really good job with this task and there are defiantly some parts of your approach that I will implement in my own workflow.
In my opinion you did everything that was required from you in this assignment. You demonstrate a thorough understanding of the material and your code is concise and appropriate comments are provided where needed.
I really like your README.md file and how you've incorporated links that helps navigating your repository. All of your content in your repository is also very nicely organized.
I like your reflections, and I can totally relate to what your saying about your initial struggle, I also had to go back to Jenny Bryans examples and they where very helpful.
Besides some minor things like your Makefile link in your README.md file doesn't seem to work, I don't have much to comment on besides that i think you did an awesome job with this assignment.
I wish you the best of luck with all of your future assignments.
Cheers!
Comment modified to reflect a more appropriate rubric for this assignment. Apologies for any confusion.
Three or more scripts, an Rmd, and a Makefile: OK (Makefile is R script) Starts by downloading data, ends with Rmd: OK (see comments) The output of each is the modified input of the previous step: No (figures does not input to statistical) Includes some analysis and at least one figure: Yes Makefile includes all scripts and Rmd with correct dependencies: No (is an R script) Makefile runs: No Bonus: Embedded figs in report Reflection: Yes
Comments:
source()
statements then run based on absolute directory names, which just plain fail when anyone tries to run it on a different computer (or if you go and change anything about the document path, eg changing the folder name of “STAT547-hw-Summers-Heather”). Again, you want a relative path: “hw07/R scripts/gapminder_exploratory.R."rmarkdown::render()
on your Rmd file.Other Comments:
object 'country_colors' not found
.filter(std.error<0.0085|std.error>3.3))
: why are you filtering by those std error values?Your mark will be distributed later. If you would like more feedback, please feel free to message me on slack.
Please see here for hw07 folder.