Project Tips and Presentation Times

Finalizing your report!

You’re in the homestretch! Your report guidelines are posted at the website. Note projects are due at 11:59pm Tuesday, November 16, with presentations Wednesday or Friday of the same week (scroll to the bottom for your team’s day and time).

Reviewing the draft

Carefully read the project draft, considering the questions below as you read it.

Introduction + Data

Exploratory data analysis

Methodology + Results

Writing + Reproducibility

Presentation Tips

The presentation is your time to show others your cool findings! Be very careful not to exceed the 5 minute time limit – be professional, and don’t cut into the time of other teams. The most effective presentations will focus on research questions, data, and findings from the analysis – smaller details can be left to the written report. While support from the data should be provided for conclusions, this should stay “big picture” and not get too far in the weeds (e.g., we don’t need to know the name of every variable you considered, or how you had to use pivot table, in the presentation itself). Think about your audience as a group of health leaders and policy makers – you want to make your point effectively, providing evidence your data support your points.

Presentation Day and Time

Presentation days times are randomly assigned; code and results are below!

One change: team-no-name-yet is swapping places with yay-stats

teams=data.frame(c("project-the-exposure-experience","team-name-tbd","g-i-joe","TBD1","the-gr8est-team","yay-stats","Rush-207","team-no-name-yet","TBD2","TBD3","The-Statista-Girls","Team-E-T","Jackie-Fan-Club","GGPlot-Gods","Probability-Pandas","IDK-name-yet","save-the-best-for-last"))
daytime=c("Wed. 10:15","Wed. 10:23","Wed. 10:31","Wed. 10:39","Wed. 10:47","Wed. 10:55","Wed. 11:03","Wed. 11:11","Wed. 11:19","Fri. 10:15","Fri. 10:23","Fri. 10:31","Fri. 10:39", "Fri. 10:47","Fri. 10:55","Fri. 11:03","Fri. 11:11")

set.seed(234567)
teamorder <- sample(nrow(teams))
cbind(teams[teamorder,],daytime)
##                                         daytime     
##  [1,] "team-name-tbd"                   "Wed. 10:15"
##  [2,] "Rush-207"                        "Wed. 10:23"
##  [3,] "team-no-name-yet"                "Wed. 10:31"
##  [4,] "Probability-Pandas"              "Wed. 10:39"
##  [5,] "Jackie-Fan-Club"                 "Wed. 10:47"
##  [6,] "GGPlot-Gods"                     "Wed. 10:55"
##  [7,] "TBD2"                            "Wed. 11:03"
##  [8,] "Team-E-T"                        "Wed. 11:11"
##  [9,] "g-i-joe"                         "Wed. 11:19"
## [10,] "the-gr8est-team"                 "Fri. 10:15"
## [11,] "save-the-best-for-last"          "Fri. 10:23"
## [12,] "TBD1"                            "Fri. 10:31"
## [13,] "yay-stats"                       "Fri. 10:39"
## [14,] "IDK-name-yet"                    "Fri. 10:47"
## [15,] "TBD3"                            "Fri. 10:55"
## [16,] "The-Statista-Girls"              "Fri. 11:03"
## [17,] "project-the-exposure-experience" "Fri. 11:11"