Skip to content

Commit

Permalink
Fix data path
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmlft committed Aug 23, 2024
1 parent f5fc7f5 commit 35c895d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion episodes/24-linear-reg-broom.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ library(lmtest)
library(sandwich)
library(broom)
lon_dims_imd_2019 <- read.csv(".data/English_IMD_2019_Domains_rebased_London_by_CDRC.csv")
lon_dims_imd_2019 <- read.csv("data/English_IMD_2019_Domains_rebased_London_by_CDRC.csv")
```

We are going to use the data from the Consumer Data Research Centre, specifically the London IMD 2019 (English IMD 2019 Domains rebased).
Expand Down
2 changes: 1 addition & 1 deletion episodes/25-linreg-diagnostics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ library(ggplot2)
library(olsrr)
library(car)
lon_dims_imd_2019 <- read.csv(".data/English_IMD_2019_Domains_rebased_London_by_CDRC.csv")
lon_dims_imd_2019 <- read.csv("data/English_IMD_2019_Domains_rebased_London_by_CDRC.csv")
```

For accurate model interpretation and prediction, there are a number of assumptions about linear regression models that need to be verified.
Expand Down

0 comments on commit 35c895d

Please sign in to comment.