-
Notifications
You must be signed in to change notification settings - Fork 14
/
project_info.Rmd
41 lines (26 loc) · 1.63 KB
/
project_info.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: "Final Project Information"
date: "Winter 2018"
output:
html_document:
toc: true
toc_depth: 2
toc_float: true
theme: flatly
---
# Information on the Final Project
[Final project information](project/sta130posterpresentation_student.html)
[Final project oral presentation marking rubric](project/STA130_project_oral_presentation_rubric.pdf)
[Final project poster marking rubric](project/STA130_project_poster_rubric.pdf)
[A description of the hazardous driving data from Geotab](https://data.geotab.com/urban-infrastructure/hazardous-driving)
# Working with the data on your own computer
The data for the final project can be read into R on your own computer by running the following code chunk.
```{r, eval=FALSE}
file_url <- "https://raw.githubusercontent.com/ntaback/UofT_STA130/master/project/hazardousdriving.csv"
hazarddat <- read.csv(file_url)
```
# Working with the data on rstudio.cloud
Instead of working on the project on your local computer you can work on it using [rstudio.cloud](https://rstudio.cloud) by going to the [final project link](https://rstudio.cloud/spaces/1016/join?access_code=k9lvocPs1m78AmPxcpr31j36JmFQjZJ7xeNt2kvx).
When you access the project created by Prof. Taback, 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 Copy button.
![](forkProject.png)
You can learn more about rstudio.cloud [here](https://rstudio.cloud/learn/guide).