R is the name of the programming language itself and RStudio is a convenient interface.
This lab will go through much of the same workflow we’ve demonstrated in class. The main goal is to reinforce our demo of R and RStudio, which we will be using throughout the course both to learn the statistical concepts discussed in the course and to analyze real data and come to informed conclusions.
git is a version control system (like “Track Changes” features from Microsoft Word but more powerful) and GitHub is the home for your Git-based projects on the internet (like DropBox but much better).
An additional goal is to reinforce git and GitHub, the collaboration and version control system that we will be using throughout the course.
As the labs progress, you are encouraged to explore beyond what the labs dictate; a willingness to experiment will make you a much better programmer. Before we get to that stage, however, you need to build some basic fluency in R. Today we begin with the fundamental building blocks of R and RStudio: the interface, reading in data, and basic commands.
To make versioning simpler, this and the next lab are solo labs. In the future, you’ll learn about collaborating on GitHub and producing a single lab report for your lab team, but for now, concentrate on getting the basics down.
By the end of the lab, you will…
ggplot2
You will authenticate GitHub using SSH. Below are an outline of the authentication steps; you are encouraged to follow along as your TA demonstrates the steps. Click here to find more detailed instructions.
Note: You only need to do this authentication process one time on a single system.
credentials::ssh_setup_github()
into your console.There is one more thing we need to do before getting started on the assignment. Specifically, we need to configure your git so that RStudio can communicate with GitHub. This requires two pieces of information: your name and email address.
To do so, you will use the use_git_config()
function from the usethis
package.
Type the following lines of code in the console in RStudio filling in your name and the email address associated with your GitHub account.
::use_git_config(user.name = "GitHub username",
usethisuser.email = "your email")
For example, mine would be
::use_git_config(user.name = "matackett",
usethisuser.email = "maria.tackett@duke.edu")
You are now ready interact between GitHub and RStudio!
Go to the course organization at github.com/sta210-fa21 organization on GitHub. Click on the repo with the prefix lab-01. It contains the starter documents you need to complete the lab.
Click on the green CODE button, select Use SSH (this might already be selected by default, and if it is, you’ll see the text Clone with SSH). Click on the clipboard icon to copy the repo URL.
If you get an error message that begins with WARNING: UNPROTECTED PRIVATE KEY FILE! then this can be fixed by clicking on “Terminal” (the tab next to the console) and pasting in chmod 400 ~/.ssh/id_rsa
and hitting enter. Then, try to create a project again and it should work.
Go to https://vm-manage.oit.duke.edu/containers and login with your Duke NetID and Password.
Click STA210 to log into the Docker container. You should now see the RStudio environment.
Go to File \(\rightarrow\) New Project \(\rightarrow\) Version Control \(\rightarrow\) Git.
Copy and paste the URL of your assignment repo into the dialog box Repository URL. Again, please make sure to have SSH highlighted under Clone when you copy the address.
Click Create Project, and the files from your GitHub repo will be displayed in the Files pane in RStudio.
Click lab-01-ikea.Rmd to open the template R Markdown file. This is where you will write up your code and narrative for the lab.
Below are the components of the RStudio IDE.
Below are the components of an R Markdown (.Rmd) file.
Before we introduce the data, let’s warm up with some simple exercises.
We’re going to go through our first knit, commit, and push.
The top portion of your R Markdown file (between the three dashed lines) is called YAML. It stands for “YAML Ain’t Markup Language”. It is a human friendly data serialization standard for all programming languages. All you need to know is that this area is called the YAML (we will refer to it as such) and that it contains meta information about your document.
Open the R Markdown (.Rmd) file in your project, change the author name to your name, and knit the document.
Examine the knitted document.
Now, go to the Git pane in your RStudio instance. This will be in the top right hand corner in a separate tab.
If you have made changes to your Rmd file, you should see it listed here. Click on it to select it in this list and then click on Diff. This shows you the difference between the last committed state of the document and its current state including changes. You should see deletions in red and additions in green.
If you’re happy with these changes, we’ll prepare the changes to be pushed to your remote repository. First, stage your changes by checking the appropriate box on the files you want to prepare. Next, write a meaningful commit message (for instance, “updated author name”) in the Commit message box. Finally, click Commit. Note that every commit needs to have a commit message associated with it.
You don’t have to commit after every change, as this would get quite tedious. You should commit states that are meaningful to you for inspection, comparison, or restoration.
In the first few assignments we will tell you exactly when to commit and in some cases, what commit message to use. As the semester progresses we will let you make these decisions.
Now let’s make sure all the changes went to GitHub. Go to your GitHub repo and refresh the page. You should see your commit message next to the updated files. If you see this, all your changes are on GitHub and you’re good to go!
Now that you have made an update and committed this change, it’s time to push these changes to your repo on GitHub.
In order to push your changes to GitHub, you must have staged your commit to be pushed. click on Push.
To get more details about the RStudio project, RMarkdown file, and just R in general, read Getting Started in Data Visualization by Kieran Healy.
We will use the following package in today’s lab.
library(tidyverse)
Today’s data is all about Ikea furniture. The data was obtained from the TidyTuesday data collection.
Use the code below to read in the data.
<- read_csv("data/ikea.csv") ikea
The variable definitions are as follows:
variable | class | description |
---|---|---|
item_id | double | item id which can be used later to merge with other IKEA data frames |
name | character | the commercial name of items |
category | character | the furniture category that the item belongs to (Sofas, beds, chairs, Trolleys,…) |
sellable_online | logical | Sellable online TRUE or FALSE |
link | character | the web link of the item |
other_colors | character | if other colors are available for the item, or just one color as displayed in the website (Boolean) |
short_description | character | a brief description of the item |
designer | character | The name of the designer who designed the item. this is extracted from the full_description column. |
depth | double | Depth of the item in Centimeter |
height | double | Height of the item in Centimeter |
width | double | Width of the item in Centimeter |
price_usd | double | the current price in US dollars as it is shown in the website by 4/20/2020 |
Before doing any analysis, you may want to get quick view of the data. This is useful when you’ve imported data to see if your data imported correctly. We can use the View
function to see the entire data set in RStudio. Type the code below in the console to view the entire dataset.
Notice that the View(ikea)
command was run in the console and not in a code chunk in the RMarkdown file. By running the View(ikea)
in the console, the dataset displays in your RStudio environment but not in the PDF output from your knitted Rmd file.
View(ikea)
Write all code and narrative in your R Markdown file. Write all narrative in complete sentences. Throughout the assignment, you should periodically knit your R Markdown document to produce the updated PDF, commit the changes in the Git pane, and push the updated files to GitHub.
Tip: Make sure we can read all or your code in your PDF document. This means you will need to break up long lines of code. One way to help avoid long lines of code is is start a new line after every pipe (%>%
) and plus sign (+
).
View
function helped us get a quick view of the dataset, but let’s get more detail about its structure. Viewing a summary of the data is a useful starting point for data analysis, especially if the dataset has a large number of observations (rows) or variables (columns). Run the code below to use the glimpse
function to see a summary of the ikea
dataset.How many observations are in the ikea
dataset? How many variables?
glimpse(ikea)
Let’s begin by looking at the price of Ikea furniture. Use the code below to visualize the distribution of price_usd
, the price in US dollars.
ggplot(data = ikea, aes(x = price_usd)) +
geom_histogram()
Use the visualization to describe the distribution of price. In your narrative, include description of the shape, approximate center, approximate spread, and any presence of outliers.
Briefly explain why the median is more representative of the center of this distribution than the mean.
ggplot(data = ikea, aes(x = price_usd)) +
geom_histogram() +
labs(x = "_____",
y = "_____",
title = "_____")
Check your lab-01 repo on the GitHub website (you may need to refresh the page in your browser) to ensure that all of the files are up-to-date.
🧶 ✅ ⬆️ This is a good place to knit, commit, and push changes to your remote lab-01 repo on GitHub. Write an informative commit message (e.g. “Completed exercises 1 - 3”), and push every file to GitHub by clicking the checkbox next to each file in the Git pane. After you push the changes, the Git pane in RStudio should be empty.
See the ggplot2 reference on density plots for code examples.
price_usd
. Be sure to include an informative title and informative axis labels.In this course, we’ll be most interested in the relationship between two or more variables, so let’s begin by looking at the distribution of price by category. We’ll focus on the five categories in the code below, since these include commonly purchased types of furniture.
Use the code below to create a new data frame that only includes the furniture categories of interest. We’re assigning this data frame to an object with a new name, so we don’t overwrite the original data.
You will use this new data frame for the remainder of the lab.
<- ikea %>%
ikea_sub filter(category %in% c("Tables & desks", "Beds",
"Bookcases & shelving units",
"Sofas & armchairs", "Children's furniture"))
ggplot(data = ikea_sub, aes(x = price_usd, fill = category)) +
geom_density()
The overlapping colors make it difficult to tell what’s happening with the distributions for the categories plotted first and hence covered by categories plotted over them. We can change the transparency level of the fill color to help with this. The alpha argument takes values between 0 and 1: 0 is completely transparent and 1 is completely opaque. There is no way to tell what value will work best, so it’s best to try a few.
ggplot(data = ikea_sub, aes(x = price_usd, fill = category)) +
geom_density(alpha = 0.8)
Recreate the density plot using a more suitable alpha level, so we can more easily see the distribution of all the categories. Include an informative title and informative axis labels.
🧶 ✅ ⬆️ This is a another good place to knit, commit, and push changes to your remote lab-01 repo on GitHub. Write an informative commit message (e.g. “Completed exercises 4 - 5”), and push every file to GitHub. After you push the changes, the Git pane in RStudio should be empty.
Briefly describe why we defined the fill of the curves by mapping aesthetics of the plot (inside the aes
function) but we defined the alpha level as a characteristic of the plotting geom
.
Overlapping density plots are not the only way to visualize the relationship between a quantitative and categorical variable. Use a different type of plot to visualize the relationship between price_usd
and category
. Include an informative title and informative axis labels.
You can use the ggplot2 cheatsheet and from Data to Viz for inspiration.
🧶 ✅ ⬆️ Knit, commit, and push changes to your remote lab-01 repo on GitHub. Write an informative commit message (e.g. “Completed exercises 6 - 8”), and push every file to GitHub by clicking the checkbox next to each file in the Git pane. After you push the changes, the Git pane in RStudio should be empty."
Use your visualization to describe the relationship between the width and price of Ikea furniture.
ggplot(data = _____, aes(x = width, y = _____)) +
geom_point() +
labs(x = "_____",
y = "_____",
title = "_____")
🧶 ✅ ⬆️ You’re done and ready to submit your work! Knit, commit, and push all remaining changes. You can use the commit message “Done with Lab 1!”, and make sure you have pushed all the files to GitHub (your Git pane in RStudio should be empty) and that all documents are updated in your repo on GitHub. The PDF document you submit to Gradescope should be identical to the one in your GitHub repo.
See the instructions below to submit your work on Gradescope.
In this class, we’ll be submitting PDF documents to Gradescope.
Before you wrap up the assignment, make sure all documents are updated on your GitHub repo. We will be checking these to make sure you have been practicing how to commit and push changes.
Remember – you must turn in a PDF file to the Gradescope page before the submission deadline for full credit.
To submit your assignment:
Go to http://www.gradescope.com and click Log in in the top right corner.
Click School Credentials ➡️ Duke NetID and log in using your NetID credentials.
Click on your STA 210 course.
Click on the assignment, and you’ll be prompted to submit it.
Mark the pages associated with each exercise. All of the pages of your lab should be associated with at least one question (i.e., should be “checked”).
Select the first page of your .PDF submission to be associated with the “Workflow & formatting” section.
Component | Points |
---|---|
Ex 1 - 10 | 45 |
Workflow & formatting | 5 |
Grading notes:
Chapter 2: Get Started Data Visualization by Kieran Healy
Chapter 3: Data visualization in R for Data Science by Hadley Wickham
RStudio Cloud Primers