Skip to content
Snippets Groups Projects
Commit a8e9f541 authored by pfoo's avatar pfoo
Browse files

Editted both notebooks to remove the set working directory command. It is no...

Editted both notebooks to remove the set working directory command. It is no longer needed to work on the exercises since they are cloned from gitlab and opened in a project space. Working directory is automatically set.
parent cfb4d074
No related branches found
No related tags found
No related merge requests found
...@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types ...@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types
- Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))* - Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))*
To import data through command, first set working directory to the folder where your data files are stored. *\* To import data through command, you will have to first set working directory to the folder where your data files are stored. However, since this notebook is cloned from GitLab and is opened in a project space, you can skip this step.*
```{r}
setwd("~/IntroductionToR_P2_ExerciseNotebook")
```
## 2.1.1 Import from CSV file ## 2.1.1 Import from CSV file
......
...@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types ...@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types
- Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))* - Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))*
To import data through command, first set working directory to the folder where your data files are stored. *\* To import data through command, you will have to first set working directory to the folder where your data files are stored. However, since this notebook is cloned from GitLab and is opened in a project space, you can skip this step.*
```{r eval = FALSE}
setwd("~/IntroductionToR_P2_ExerciseNotebook_Sol")
```
## 2.1.1 Import from CSV file ## 2.1.1 Import from CSV file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment