Publications by YOUR NAME HERE

Exploring Your Favorite Movies (2020 and 2021)

21.09.2021

Exploring your favorite movies Thomas E. Love 2021-09-21 Note: This document is published to https://rpubs.com/TELOVE/movies-eda-1 Setup ## Normally, I would not include this chunk of code ## in a final report library(knitr) library(rmdformats) ## Global options options(max.print="75") opts_chunk$set(comment=NA) opts_knit$set(width=75)...

749 sym R (8052 sym/22 pcs) 9 img

States, Counties and Population Example

05.10.2021

1 Goals and Objectives 1.1 Three Research Questions Among counties ranked in the 2021 County Health Rankings data, what is the nature of the association between the number of counties in a state, and the state’s population? Which states have larger populations than we’d expect, based on their number of counties? Which states have smaller po...

13917 sym R (11353 sym/52 pcs) 11 img 2 tbl

Sample Project A Analyses with dm1

28.10.2021

Important Note This is a very quick example. I’m showing the minimum standard, not what we’re hoping you will be able to do. But I want to increase the chances that you’ll meet the minimum standard for a B on this part of the project. Setup library(broom) library(tidyverse) ── Attaching packages ─────────────�...

912 sym R (8354 sym/54 pcs) 9 img

Example Report for 431 Project B Study 2 in Fall 2021

10.11.2021

Code Show All Code Hide All Code 431 Project B Study 2 Example Report 431 Project B Study 2 Example Report Important Reminders from Dr. Love 1 Setup and Data Ingest 1.1 Initial Setup and Package Loads in R 1.2 Loading the Raw Data into R 2 Cleaning the Data 2.1 Merging the Data 2.2 The Raw Data 2.3 Which variables should be included in t...

30690 sym R (18727 sym/73 pcs) 7 img 4 tbl

dm2200 example for PQHS/CRSP 500 at CWRU

08.02.2022

1 Setup This document demonstrates multiple matching strategies incorporating the propensity score, including the assessment of covariate balance before and after matching. We focus on binary and quantitative outcomes in a (simulated) electronic health records data setting. It uses the cobalt package extensively. See the Key References section at...

102662 sym R (70660 sym/167 pcs) 28 img 28 tbl

Toy example for PQHS/CRSP 500 at CWRU

08.02.2022

1 Setup library(knitr) opts_chunk$set(comment = NA, message = FALSE, warning = FALSE) options(max.print="250") opts_knit$set(width=75) library(skimr) library(tableone) library(broom) library(Epi) library(survival) library(Matching) library(cobalt) library(lme4) library(twang) library(survey) library(...

214431 sym R (86743 sym/287 pcs) 32 img 21 tbl

Project B template for 432 in Spring 2022

03.03.2022

Code Show All Code Hide All Code Download Rmd Your Title (No more than 80 characters) goes here Your Title (No more than 80 characters) goes here Preliminaries 1 Background 2 Research Questions 3 My Data 3.1 Data Ingest 3.2 Tidying, Data Cleaning and Data Management 3.3 Missingness 3.4 Tidied Tibble 4 Code Book and Clean Data Summary 4.1...

23645 sym R (8789 sym/23 pcs) 8 img 14 tbl

Right Heart Catheterization and Propensity Methods for PQHS/CRSP 500 at CWRU

24.02.2022

1 Preliminaries 1.1 Study Background This example is based on the Right Heart Catheterization data set available at Vanderbilt University and described here. The key reference is Connors AF et al. 1996 The effectiveness of RHC in the initial care of critically ill patients. JAMA 276: 889-897. Connors et al. used a logistic regression model to ...

123826 sym R (84117 sym/241 pcs) 25 img 8 tbl

NHANES Toy Data Cleaning Example for 432 Project B

03.03.2022

Important Note This is just the data cleaning work, and the creation of a codebook and summary of the data. Use the Project B template for a more complete discussion of what you need to do in the Project. 1 Packages I’ll Use library(here) library(magrittr) library(janitor) library(haven) library(nhanesA) library(naniar) library(rsample) ...

35054 sym R (12547 sym/107 pcs) 5 img 9 tbl