Go to R Studio Cloud workspace for this assignment.
Click on projects.
Click on October12Tutorial.
When you access the project created by someone else, RStudio Cloud automatically creates a temporary copy of the original project for you. You can play with and make edits to it, but none of your changes will be reflected in the original. If you’d like to keep the changes you’ve made, just save a copy of the project for yourself by pressing the Save a Permanent Copy button.
Look for the file “Week5PracticeProblems_questions.Rmd” under the Files tab then click on it to open.
Change the subtitle to “Week5PracticeProblemsSolutions” and change the author to your name and student number.
NB: The screenshot below is for week1 problems, but it’s the same idea.
Remember that R code chunks can be inserted directly into the notebook by choosing Insert R from the Insert menu (see Using R Markdown for Class Assignments). In addition this R Markdown cheatsheet, and reference are great resources as you get started with R Markdown.
Download R Markdown questions file directly into RStudio by typing the following code into the RStudio console window.
file_url <- "https://raw.githubusercontent.com/ntaback/UofT_STA130/master/Fall2018/week5/Week5PracticeProblems_questions.Rmd"
download.file(url = file_url , destfile = "Week5PracticeProblems_student.Rmd")
You will need to install several libraries such as tidyverse
, and mosaic
to complete the questions.
Look for the file “Week5PracticeProblems_student.Rmd” under the Files tab then click on it to open.