--- title: "Problem set 1: Worked solutions" subtitle: "Statistics and statistical programming \nNorthwestern University \nMTS 525" author: "Aaron Shaw" date: "September 28, 2020" output: html_document: toc: true toc_float: collapsed: true smooth_scroll: true theme: readable pdf_document: toc: yes toc_depth: '3' --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## PC 1: Access and describe a dataset provided in an R library ### PC1.1 ```{r} ## This first command can install the pacakge. I've commented it out here because it only needs to run once. ## You can also install packages from the 'Packages' tab of the Rstudio interface. ## ## install.packages("openintro") library(openintro) data("county") ``` ### PC1.2 ```{r} class(county) ``` Notice that the results of that last call to `class()` produced something you might not have expected: three different values! This is because the OpenIntro authors have provided this dataset as something called a "tibble" (that's the `tbl_df` and `tbl` bits) which is basically a souped-up Tidyverse analogue to a Base-R dataframe. You can do some nice things with Tidyverse tibbles. For example, you can invoke them directly and not worry that R is going to print out a massive amonut of data at your console. The output also includes information about the dimensions and the types/classes of the columns/variables in the Tibble. Here's what it looks like: ```{r} county ``` Notice that the Tibble refers to some numeric variables as "" ("doubles") and others as " ("integers"). The latter maps to the colloquial idea of an integer. A "double" is a programming-language speak for a variable that takes non-integer numeric values. The results of this call are actually sufficient to answer PC1.3 and PC1.4 below. ### PC1.3 If you didn't know or didn't realize that calling a Tibble directly answered this, here are some other ways to find the dimensions of a dataset: ```{r} dim(county) nrow(county) ncol(county) ``` ### PC1.4 Again, some additional tools/approaches you might use to answer this if the Tibble method isn't available/known to you. Note that you can find out the class for any one variable easily with the `class()` command. Iterating this over the names of all the variables in a dataframe is feasible, but tedious and inefficient, so I provide a more concise method with `lapply()` below: ```{r} names(county) ## just an example here: class(county$poverty) ## lapply() is useful for doing this over all variables in a dataframe/tibble lapply(county, class) ``` ### PC1.5 For my example, I'll work with the `poverty` variable: ```{r} length(county$poverty) min(county$poverty, na.rm=TRUE) ## That na.rm=TRUE part is crucial! max(county$poverty, na.rm=TRUE) mean(county$poverty, na.rm=TRUE) ## So many significant digits... sd(county$poverty, na.rm=TRUE) ## And here's a built-in command that covers many of these: summary(county$poverty) ``` ### PC1.6 ```{r} hist(county$poverty) boxplot(county$poverty) ``` ### PC1.7 Because each row in the dataset corresponds to a county, the following will summarize the number of counties per state in the data ```{r} table(county$state) ``` ## PC2. Working with a dataset from the web ### PC2.1 ```{r} set.seed(220920) ## A recent date. sample(x=c(1:20), size=1) ``` My dataset number for the rest of this worked solution to the programming challenge is 3. That said, the code should work if you substitute an appropriate group number into the url below. ### PC2.2 I'll do this by pointing RStudio directly to the URL for the data using the `url()` and `load()` commands. ```{r} load(url("https://communitydata.science/~ads/teaching/2020/stats/data/week_03/group_03.RData")) ls() # shows me what's available. The counties dataset is still hanging around. head(d) ``` Note: If you downloaded the file, you'll need to point R's `load()` command at the correct file location on your machine. RStudio can be...picky about this sort of thing. Also, a clarifying point: if you're compiling your own RMarkdown scripts, you will need to load the dataset explicitly (not just open the file with RStudio). When RMarkdown tries to "knit" the .Rmd file into HTML or whatever, it is as if you are running the entire contents of the .Rmd script in an entirely new RStudio environment. This means if you don't load something explicitly within the .Rmd script RStudio will not know where to find it. ### PC2.3 I'll do all the ones I asked for as well as some I didn't (just so you have an example what the commands look like) ```{r} min(d) max(d) mean(d) sd(d) ## extras median(d) var(d) ## variance. compare to the standard deviation IQR(d) ## interquartile range ## A handy Base-R command that does a bunch of these at once: summary(d) ``` ### PC2.4 Graphing using R's built-in functions: ```{r} hist(d) boxplot(d) ``` ### PC2.5 ```{r} d[d < 0] <- NA ``` Fwiw, I want to point out that this last line of code is a little "fast and loose." I have reused my original variable name when I recode the negative values to `NA`. This means that my copy of `d` has been changed and the only way I can restore it is by reading in the raw data again (which would, in turn, overwrite my recoded copy). It is often a good idea to check your work after recoding. You could do that here by "stashing" the original variable in a new object/name (e.g., run something like `d.orig <- d` before running the line above). Then after you've recoded the negative values, you could run whatever tests/comparisons you like to make sure the recoding is correct before deleting the original data (which can be done with `rm(d.orig)`). Onwards to the new mean and standard deviation: ```{r} mean(d, na.rm=T) # R can understand "T" in place of TRUE sd(d, na.rm=T) ``` Both values here are larger than before I removed my negative values. This is pretty intuitive in the case of the mean, but maybe less so with the standard deviation since the range of the values in the recoded variable is smaller. Can you explain how the standard deviation would increase? ### PC2.6 ```{r} d.log <- log1p(d) # Note: I use log1p() because some values are very close to zero mean(d.log, na.rm=T) median(d.log, na.rm=T) sd(d.log, na.rm=T) hist(d.log) boxplot(d.log) ``` Next week, I will introduce the `ggplot2` package in the R tutorial. For now, I'll reproduce the historgram and boxplot I made above in ggplot2 and leave these examples here for future reference. Graphing a single vector in ggplot2 is a bit weird, so this looks a little different than the examples from the R lecture: ```{r} ## if you haven't already you'll need to make sure ggplot2 is installed ## install.packages("ggplot2") library(ggplot2) p <- ggplot() + aes(d.log) p + geom_histogram() p + geom_boxplot(aes(x="", y=d.log)) ``` Note that ggplot2 generates a warning about 5 "non-fininte values." In this case, that is due to the 5 `NA` values I created when I recoded the negatives, so I don't need to worry about the warning. ## Statistical questions ### SQ1 A compelling answer to this depends on the variable you chose. For the one I looked at in my example code (`poverty`) the data is somewhat right skewed, but not much. In this case, the mean and standard deviation should represent the central tendency and spread of the variable pretty well. If your variable was different (e.g., one of the population or income measures), it would probably be good to also examine and report the median and interquartile range. See `OpenIntro` chapter 2 for more on distinctions/reasons behind this. ### SQ2 Definitely not. The data is very skewed with a long (positive) tail, suggesting that median and interquartile range would be better measures to report. ### SQ3 The cleaned and log-transformed version of the variable has no negative values and is far less right-skewed than the original. You should absolutely prefer the cleaned variable with no negative values since they resulted from a coding error (see the text of PC2.5). However, a preference for the log-transformed or untransformed variable likely depends on the situation. It's almost always good to report descriptive statistics for "raw," untransformed versions of your variables. However, you might prefer the log-transformed version for developing a stronger set of intuitions about your data, comparing with prior work that uses log-transformed versions of a similar measure, or conducting certain statistical tests (we'll talk more about this later in the course).