Final Project Guidelines
Data 309 - Fall 2024
The final project is worth 20% of your final grade. Here’s how your final project will be graded.
Note: If you make a Shiny app, you may incorporate that into the framework below as you see fit.
Required Organizational Structure
Section: Introduction (10%) Your introduction should clearly state the research question(s) addressed by your project. The goal for this section is to make your reader interested in the topic of your project.
Section: Data (10%) The data section should clearly indicate where/how to access the data you used in your project so that any reader could replicate your analysis.
Section: Analysis and Results (20%) This section should present the main figures/tables that answer your research question.
Section: Conclusion (10%) The conclusion should provide a summary of your findings and a discussion of the next steps that you (or someone else interest in your topic) could take to explore your question further.
General Design Principles
Aesthetics (10%) You should use appropriately sized headings (begin the line with (#,##,###,####)) to indicate separate sections. The narrative of your project should be easy to follow. Include some text, but not too much. Utilize an appropriate use of colors. Edit the Quarto yaml to include nice details.
Tiny Details (10%) Your project should be free from spelling and grammatical mistakes. Place your text in Word if you need assistance, or have someone else proofread your project. Make sure the text in your legend and on your axes are formatted well.
Code (20%) All of your R chunks should be well organized and easy to follow. The key here is that all your code should work. Make clear the origins of your data so that others may reproduce your work. With te data you described in your data section, I should be able to run your R Markdown without getting any errors. Try to include:
- mutate(), filter(), select(), slice_(), distinct(),
- group_by() or pivot_()
- for loop or function()
- cut() or across() or case_when()
- scale_(), theme()
Presentation
- Practice Being Professional (10%)
- You don’t have to dress up, but no hats or sunglasses.
- Ensure your document is loaded/running and displays properly.
- Utilize full screen mode
fn f11
. - Bring our attention on to least one part of code. (Explain what it does, why you like it, etc.)
Looking for More?
- Student favorite ggplot extensions.
- Make an animation with the
gganimate
package. - Make a Shiny app.
- Use the
sf
package and make a geographic map. - Use the textbook. Browse the table of contents, it’s excellent.
- Remember: original ideas, mastery of the basics & clear communication often beats new-fangled widgets.