Skip to content

Commit

Permalink
Updates publishing chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz-zz committed Jan 11, 2019
1 parent cadab6b commit 703db66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 11-publish-work.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ output: html_notebook

5. Select RStudio Connect

6. Copy and paste **your** RStudio Server URL and add `:3939`
6. Copy and paste **your** RStudio Server URL and add `/rsconnect`

7. Enter your credentials

Expand Down Expand Up @@ -44,7 +44,7 @@ table_flights <- tbl(con, in_schema("datawarehouse", "flight"))

3. Read the parsed model saved in exercise 5.6
```{r}
parsedmodel <- read_csv("parsedmodel.csv")
parsedmodel <- yaml::read_yaml("my_model.yml")
```

4. Copy the code from exercise 5.5 step 4. Load the code into a variable called *predictions*. Change the model variable to *parsedmodel*
Expand Down
4 changes: 2 additions & 2 deletions assets/workbook/11-publish-work.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ knitr::opts_chunk$set(eval = FALSE)

<img src="images/select-connect.PNG" width = 400>

6. Copy and paste **your** RStudio Server URL and add `:3939`
6. Copy and paste **your** RStudio Server URL and add `/rsconnect`

<img src="images/rsc-server.PNG" width = 400>

Expand Down Expand Up @@ -53,7 +53,7 @@ table_flights <- tbl(con, in_schema("datawarehouse", "flight"))

3. Read the parsed model saved in exercise 5.6
```{r}
my_pm <- yaml::read_yaml("my_model.yml")
parsedmodel <- yaml::read_yaml("my_model.yml")
```

4. Copy the code from exercise 5.5 step 4. Load the code into a variable called *predictions*. Change the model variable to *parsedmodel*
Expand Down

0 comments on commit 703db66

Please sign in to comment.