Publications by YOUR NAME HERE
Lab 01 Survey Results from 2020
Setup Load Packages library(janitor) library(gt) library(patchwork) library(modelsummary) library(tidyverse) theme_set(theme_bw()) Note the use of theme_set to create ggplots using the theme_bw() approach rather than the default theme. That’s just my personal preference. There are several themes available, some of which are displayed her...
14670 sym R (17944 sym/75 pcs) 18 img
Getting Started with R
Links to the materials discussed here are found at https://github.com/THOMASELOVE/431-2020/blob/master/software/README.md This includes the R Markdown code, the downloadable PDF, the HTML produced by the R Markdown code, and the 431-template.Rmd file I’ve provided. 1 Purpose of this Document This is meant to walk you through the steps of comp...
9470 sym R (6870 sym/51 pcs) 10 img
Movies Question A: Do Older Films Have More IMDB ratings?
1 Setup 1.1 R packages library(broom) library(ggrepel) library(janitor) library(knitr) library(magrittr) library(patchwork) library(tidyverse) theme_set(theme_bw()) 1.2 Read in the data file_raw <- "https://raw.githubusercontent.com/THOMASELOVE/431-2020/master/classes/movies/data/movies_2020-09-10.csv" movies <- read_csv(file_raw) Par...
8741 sym R (16764 sym/59 pcs) 17 img
431 Fall 2020 Project A Proposal Example
YOUR PROJECT A TITLE 0.1 Note to Students 1 Preliminaries 1.1 My R Packages 1.2 Data Ingest 2 Data Development 2.1 Selecting My Data 2.2 Repairing the fipscode and factoring the state 2.3 Creating Binary Categorical Variables 2.4 Creating Multi-Category Variables 2.5 Structure of My Tibble 3 Codebook 3.1 Proposal Requirement 1 3.2 Proposal Req...
17550 sym R (13935 sym/40 pcs)
431 Project A Full Outline for Analyses plus Proposal
YOUR PROJECT A TITLE 0.1 Note to Students 1 Preliminaries 1.1 My R Packages 1.2 Data Ingest 2 Data Development 2.1 Selecting My Data 2.2 Repairing the fipscode and factoring the state 2.3 Creating Binary Categorical Variables 2.4 Creating Multi-Category Variables 2.5 Structure of My Tibble 3 Codebook 3.1 Proposal Requirement 1 3.2 Proposal Req...
31925 sym R (13935 sym/40 pcs)
431 Project B Study 1 Demonstration Fall 2020
Code Show All Code Hide All Code 431 Project B Study 1 Demonstration 431 Project B Study 1 Demonstration 1 Setup and Data Ingest 1.1 Initial Setup and Package Loads 1.2 Loading the Raw Data into R 2 Merging the Data 2.1 Contents of the Raw Tibbles 2.2 Two Merging Steps 2.3 Checking the Merge 2.4 Selecting only the variables we’ll use 3 C...
58486 sym R (27859 sym/141 pcs) 9 img
Demonstration Project for Project B Study 2
Code Show All Code Hide All Code 431 Project B Study 2 Demonstration 431 Project B Study 2 Demonstration 1 Setup and Data Ingest 1.1 Initial Setup and Package Loads in R 1.2 Loading the Raw Data into R 2 Merging the Data 3 Cleaning the Data 3.1 The Raw Data 3.2 Which variables should be included in the tidy data set? 3.3 Checking our Outcom...
32377 sym R (18058 sym/65 pcs) 7 img
Lab 02 template for 432 in Spring 2021
Setup Package Loading Import the oh_counties_2020 Data 1 Question 1 2 Question 2 3 Question 3 4 Question 4 5 Question 5 Session Information Code Show All Code Hide All Code 432 Lab 02 Template Your Name Goes Here 2021-01-29 Setup library(knitr) library(rmdformats) ## Global options opts_chunk$set(comment=NA) opts_knit$set(width=75)...
794 sym R (2921 sym/5 pcs) 2 img
Project 1 Proposal Template with HTML Clean for 432 in Spring 2021
Code Show All Code Hide All Code Real Title Goes Here Your Name(s) Here 2021-01-28 R Packages and Setup library(knitr); library(rmdformats) library(here); library(janitor); library(magrittr) library(rms); library(broom) # other packages as needed can go here library(tidyverse) 1 Data Source Details, details. 2 The Subjects 3 Loading ...
2920 sym R (2192 sym/3 pcs) 1 tbl
Lab 01 template for 432 in Spring 2021
Package Loading library(here) library(magrittr) library(janitor) # add other packages here as desired library(tidyverse) Import the hbp3456 Data This template assumes that you’ve placed the hbp3456.csv data set in a sub-folder called data beneath the lab01 project directory you’re using in R Studio. lab01 <- read_csv(here("data", "hbp3...
1121 sym R (4354 sym/9 pcs)