#' # Homework 1: R Setup and RStudio Basics
#' Your Name here: ______
#'
#' 1. Run these lines to attach the tidyverse and gapminder to 
#' your current R session. Then run `gapminder` to view the
#' contents of the gapminder table.

library(tidyverse)
library(gapminder)

gapminder

#' 2. Fill in the blanks: RStudio is divided into four main panes.
#' 
#' - The pane on the upper left is the: ______ pane.
#' - The pane on the lower left is the: ______ pane.
#' - The pane on the upper right is the: ______ pane.
#' - The pane on the lower right is the: ______ pane.
#'
#' 3. When do you need to bring a laptop to class?
#' __________________________
#'
#' 4. Office hours for this class are: _______ at noon over Zoom.
#'
#' 5. The last day to submit late work is: ______
#'
#' 6. I am allowed ____ absences before my grade starts to fall.
#'
#' 7. True or False: I am allowed to use ChatGPT or other AI 
#' tools to complete assignments for this course. ____
#'
#' Compile this R script to html (File > Compile Report), and then 
#' submit the html file (automatically saved next to this R Script, 
#' probably in your Downloads folder) to Canvas for grading before 
#' class on Thursday. If your script does not compile, you might
#' have an error in your code or you haven't installed the 
#' tidyverse or gapminder.
#' 
