Publications by David Funes
Lab 1 intro to r and rstudio
First code exercise (2 hash tags means subtitle) Description of what the exercise is (plain text here) # install.packages("tidyverse") # install.packages("openintro") library(tidyverse) ## -- Attaching packages -------------- ## v ggplot2 3.3.2 v purrr 0.3.4 ## v tibble 3.0.3 v dplyr 1.0.2 ## v tidyr 1.1.2 v stringr 1.4.0 ...
276 sym R (3358 sym/32 pcs) 3 img
David Funes_R lab 3 Fall 2020
The Hot Hand library(tidyverse) ## -- Attaching packages --------------------------------------------------------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.2 v purrr 0.3.4 ## v tibble 3.0.3 v dplyr 1.0.2 ## v tidyr 1.1.2 v stringr 1.4.0 ## v readr 1.3.1 v forcats 0.5.0 ## -- Conflicts ---------...
11176 sym R (3339 sym/29 pcs) 2 img
David Funes_R lab 4 Fall 2020
library(tidyverse) library(openintro) The data library(tidyverse) library(openintro) head(fastfood) ## # A tibble: 6 x 17 ## restaurant item calories cal_fat total_fat sat_fat trans_fat cholesterol ## <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> ## 1 Mcdonalds Arti~ 380 60 7 2 ...
12542 sym R (5256 sym/35 pcs) 12 img
Lab 5
library(tidyverse) ## -- Attaching packages ------------------------------------------------------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.2 v purrr 0.3.4 ## v tibble 3.0.3 v dplyr 1.0.2 ## v tidyr 1.1.2 v stringr 1.4.0 ## v readr 1.3.1 v forcats 0.5.0 ## -- Conflicts ------------------------...
5615 sym R (4569 sym/43 pcs) 5 img
Lab 7
library(tidyverse) ## -- Attaching packages ------------------------------------------------------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.2 v purrr 0.3.4 ## v tibble 3.0.3 v dplyr 1.0.2 ## v tidyr 1.1.2 v stringr 1.4.0 ## v readr 1.3.1 v forcats 0.5.0 ## -- Conflicts ------------------------...
3096 sym R (5285 sym/47 pcs) 3 img
Lab 8
library(tidyverse) ## -- Attaching packages ------------------------------------------------------------------------------------- tidyverse 1.3.0 -- ## v ggplot2 3.3.2 v purrr 0.3.4 ## v tibble 3.0.3 v dplyr 1.0.2 ## v tidyr 1.1.2 v stringr 1.4.0 ## v readr 1.3.1 v forcats 0.5.0 ## -- Conflicts ------------------------...
4462 sym R (3466 sym/28 pcs) 1 img
Multiple Regression
download.file("http://www.openintro.org/stat/data/evals.RData", destfile = "evals.RData") load("evals.RData") Exercise 1 Is this an observational study or an experiment? The original research question posed in the paper is whether beauty leads directly to the differences in course evaluations. Given the study design, is it possible to answer th...
7538 sym R (9380 sym/34 pcs) 17 img