TDM 10100: R Project 1 — 2024
Motivation: The goal of this project is to get you comfortable with the basics of operating in Jupyter notebooks as hosted on Anvil, our computing cluster. If you don’t understand the code you’re running/writing at this point in the course, that’s okay! We are going to go into detail about how everything works in future projects.
Context: There’s no important prior context needed for this project! However, if you are interested in learning more there are plenty of online resources available that go into greater detail about the inner workings of Jupyter notebooks.
Scope: Anvil, Jupyter Labs, Jupyter Notebooks, R
Dataset(s)
This project will use the following dataset(s):
-
/anvil/projects/tdm/data/icecream/breyers/reviews.csv
-
/anvil/projects/tdm/data/icecream/bj/products.csv
Questions
Question 1 (2 pts)
First and foremost, welcome to The Data Mine! We hope that throughout your journey with us, you learn a lot, make new friends, and develop skills that will help you with your future career. Throughout your time with The Data Mine, you will have plenty of resources available should you need help. By coming to weekly seminar, posting on the class Piazza, and joining Dr. Ward and the TA team’s office hours, you can ensure that you always have the support you need to succeed in this course.
If you did not (yet) set up your 2-factor authentication credentials with Duo, you can set up the credentials here: the-examples-book.com/starter-guides/anvil/access-setup. If you’re stillinng having issues with your ACCESS ID, please send an email containing as much information as possible about your issue to datamine-help@purdue.edu |
Let’s start off by starting up our first Jupyter session on Anvil! First, visit this link and sign in using the username and password you picked when you set up your credentials.
In the upper-middle part of your screen, you should see a dropdown button labeled The Data Mine
. Click on it, then select Jupyter Notebook
from the options that appear. If you followed all the previous steps correctly, you should now be on a screen that looks like this:
If your screen doesn’t look like this, please try and select the correct dropdown option again or visit seminar for more assistance.
There are a few key parts of this screen to note:
-
Allocation: this should always be cis220051 for The Data Mine
-
Queue: again, this should stay on the default option
shared
unless otherwise noted. -
Time in Hours: The amount of time your Jupyter session will last. When this runs out, you’ll need to start a new session. It may be tempting to set it to the maximum, but our computing cluster is a shared resource. This means every hour you use is an hour someone else can’t use, so please only reserve it for 1-2 hours at a time.
-
CPU cores: The amount of RAM that your Jupyter session will have access to. RAM can be confusing, so if you’ve never heard of it before the principle idea is that RAM = computing power. This is also a shared resource, and you should almost never need more than 3 cores for any project in TDM 101. For most projects, we will tell you how many cores you should use.
When your session ends, you will no longer be able to save/edit your work. Be sure to save on a regular basis so that even when your session ends, your work is safe. To put it more simply: a session ending does not delete your work, and anything you saved prior to the session ending will still be there when you start a new session. |
With the key parts of this screen explained, go ahead and select 1 hour of time with 2 CPU cores, ensure that the Use Jupyter Lab instead of Jupyter Notebook
box is checked, and click Launch! After a bit of waiting, you should see something like below. Click connect to Jupyter and proceed to the next question!
You likely noticed a short wait before your Jupyter session launched. This happens while Anvil finds and allocates space for you to work. The more students are working on Anvil, the longer this will take, so it is our suggesting to start your projects early during the week to avoid any last-minute hiccups causing a missed deadline. |
To cement the idea of Anvil being a large (but still limited) resource, please visit this website. Read through the information about Anvil (its short!) and pay special notice to the table at the bottom about Anvil’s sub-clusters. For this question, we want you to calculate how many nodes, cores, and total memory (in GB) Anvil has between sub-clusters A, B, and G. (Hint: 1TB = 1000GB). In the next question, we’ll walk you through where to write your answer, so for now just keep these numbers noted.
-
The total number of nodes, cores, and memory in Anvil sub-clusters A, B, and G combined.
Question 2 (2 pts)
Once you connect to Jupyter, you should be on a screen that looks similar to this:
Before you jump into Jupyter, take a minute to read through this page that runs through most of the basics about Jupyter Labs. Additionally, take note of the 'Launcher' tab that is taking up most of the screen. The different options that you see (like Python 3, R 4.0.5, and Testing) are called kernels, and each kernel reads and runs code slightly differently. For Python, we’ll be using the seminar
kernel, but you should just keep that in your back pocket for now.
Take a second to download our project template here (which can also be found on Anvil at /anvil/projects/tdm/etc/project_template.ipynb
) Then upload the template to Jupyter and open it.
When you first open the template, you may get a pop-up asking you to select what kernel you’ll be using. Select seminar
. You may have to scroll down to find it. If you do not get this pop-up, you can also select a kernel by clicking on the upper right part of your screen that likely says something similar to No Kernel
, and then selecting the kernel you want to use.
A Jupyter notebook is made up of cells
, which you can edit and then run
. There are two types of cells we’ll work in for this class:
-
Markdown cells. These are where your writing, titles, sections, and paragraphs will go. Double clicking a markdown cell puts it in
edit
mode, and then clicking the play button near the top of the screen runs the cell, which puts it in its formatted form. More on this in a second. -
Code cells. These are where you will write and run all your code! Clicking the play button will run the code in that cell, and the programming language will be inferred based on the kernel that you chose.
For this question, you’re responsible for three main tasks:
-
Fill in Question 1 with the information you found previously, in a markdown cell.
-
In Question 2, copy and paste the code below this list into a code cell and then run it. You should see it output "[1] Hello and welcome to The Data Mine!", which is the result of running your code. Don’t worry about understanding the
%%R
part yet, as we will learn more about this in the next question. -
In the markdown cell for Question 2, please show three different examples of markdown elements. This cheatsheet is a good resource for some common markdown elements that you can see. An example you could do is a header, an ordered list, and some bold text. Be sure to run the cell after filling it in to see the results of your markdown!
%%R
print("Hello and Welcome to The Data Mine!")
Some common Jupyter notebooks shortcuts:
|
As this is our first real task of the semester, you’ll find a photo below of what your completed Question 2 may look like. Note that yours may differ slightly.
-
Your answers from Question 1, filled in.
-
The result of running the provided
print()
code. -
Three examples of markdown elements in your markdown cell.
Question 3 (2 pts)
Let’s get more comfortable with code cells in Jupyter by learning how to run code in different languages! While most of the code you’ll run in this course will be in either Python or R, sometimes different languages like Bash, Perl, and more will provide more straightforward answers to a problem.
In Question 3, copy the following R code into a code cell and run it. This will read in some data, and then tell you how much space (in bytes) your dataframe is taking up!:
%%R
df <- read.csv("/anvil/projects/tdm/data/icecream/breyers/reviews.csv")
object.size(df)
Now let’s do the same thing but in Bash! Create a new code cell below the one you just ran (refer to the hint in the last question for a shortcut on how to do this), and copy in the below code:
%%bash
echo $(du /anvil/projects/tdm/data/icecream/breyers/reviews.csv --bytes | cut -f1) bytes
Running this should give you a smaller output than the R output. This is because in bash, we are checking the size of the stored data, while in Python we are reading the data into a dataframe
that has a bit more memory associated with it to make it easier to work with.
As a side note, bash is an extremely important foundational tool to working with data and computers more generally. As a 'command line tool', bash
is essentially a foundational programming language that is very close to the computer’s basic hardware, and has a lot of fast, efficient, and useful tools that are useful no matter what project you’re working on. From navigating through file directories, to writing basic scripts, to locating and running programs, bash
is hiding in the background of most everything your computer does.
Take note of the %%bash
line in the cell you just ran. This is called line magic
, and it tells our kernel that we want it to run our code as a different language than the default. As an added example, writing %%python
will allow us to run code in the Python programming language.
For more information on line magic and how it works, please refer to this page. |
To further cement your understanding of line magic, we are going to translate one more bit of code from R to Bash. Let’s take the print()
code from the last problem and convert it to its Bash equivalent! As a reminder, here is the R code to translate to Bash
%%R
print("Hello and Welcome to The Data Mine!")
Printing in Bash can be done using the |
-
The code and results of running the code to show your hostname in both R and Bash.
-
The Bash equivalent of the
print()
statement from the last problem, and the results of running it.
Question 4 (2 pts)
Great work making it this far! At this point, you should now be pretty comfortable running code in Jupyter Notebooks.
In the next 2 questions we are going to introduce some new code that will allow us to read in large datasets and begin to work with them! If you don’t understand the specifics, that’s okay for now. For now, let’s just learn by doing. To start, run the following R:
%%R
my_df <- read.csv("/anvil/projects/tdm/data/icecream/breyers/reviews.csv")
print(dim(my_df))
head(my_df)
The breakdown of this code is as follows:
-
We use line magic to make sure the
seminar
kernel knows to read our code in the R language -
We use the
read.csv
function to read the data from the given file into a dataframe we call my_df. -
We print the dimensions of the dataframe, my_df. You should see an output of "[1] 5007 8"
-
We print the
head
of the dataframe, which is just the first 5 rows of our dataframe and the column headers (if they exist).
For the last part of this question, we want you to create a new code cell and write some R to print the names of the columns of our dataframe. If you do everything correctly, you should see the columns are named key, author, date, stars, title, helpful_yes, helpful_no, and text. If you’re struggling, take a look at the hint below:
R has two built-in functions, called |
-
The result of runnning the provided code that reads in a dataframe and prints its shape.
-
A code cell that prints the names of the columns in
my_df
Question 5 (2 pts)
Let’s take a second to reflect on everything you did and learned during this project. First, you learned how to Launch a Jupyter Notebook session on the Anvil supercomputing cluster. Next you learned about uploading files to Anvil, the general structure of Jupyter notebooks, and how to manipulate the contents of a notebook to fit your working style. Finally, you learned how to write and run some basic code in Jupyter notebooks, including how to read in data!
In this last question, we are going to try and put everything you learned today together. In the previous question, you read a file on Breyer’s ice cream reviews into a dataframe called my_df
and printed the number of columns and rows in the dataframe. Finally, we had you write some code to print the names of the columns of my_df
In this question, we want you to read a file on Breyers’s ice cream products into a dataframe called BreyProd_df
. The path to the file is "/anvil/projects/tdm/data/icecream/bj/products.csv". Next, print the number of rows and columns in BreyProd_df
, and then print the names of the columns in BreyProd_df
.
The code needed to solve this problem is almost identical to that of the last problem. If you’re struggling, considering revisiting Question 4 and trying to better understand what is going on in that code, and feel free to copy the code from Question 4 into Question 5 and modify it directly. |
One way you can validate that your code is working correctly is comparing the results of your code that outputs the number of rows/columns in the dataframe with the code that outputs the names of the columns in the dataframes. The number of columns in the dataframe should match the number of names printed.
Finally, make sure that your name is at the top of the project template. If you used outside resources (like Stack Overflow) or got help from TAs, make sure to note where you got assistance from, and on what part of the project they assisted you, in the appropriate sections at the top of the template.
-
Code that reads the
products.csv
file into a dataframe -
Code that prints the shape of the resulting dataframe
-
Code that prints the names of the columns in the resulting dataframe
Submitting your Work
Congratulations! Assuming you’ve completed all the above questions, you’ve just finished your first project for TDM 10100! If you have any questions or issues regarding this project, please feel free to ask in seminar, over Piazza, during office hours, or by emailing Dr. Ward. Prior to submitting, make sure you’ve run all of the code in your Jupyter notebook and the results of running that code is visible. More detailed instructions on how to ensure that your submission is formatted correctly can be found here. To download your completed project, you can right-click on the file in the file explorer and click 'download'.
Once you upload your submission to Gradescope, make sure that everything appears as you would expect to ensure that you don’t lose any points. At the bottom of each 101 project, you will find a comprehensive list of all the files that need to be submitted for that project. We hope your first project with us went well, and we look forward to continuing to learn with you on future projects!!
-
firstname_lastname_project1.ipynb
You must double check your You will not receive full credit if your |