Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Feb 2, 2024
1 parent 54d41af commit 7232a92
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vignettes/performance.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -150,26 +150,26 @@ plot(result, type = "bars")
_([related function documentation](https://easystats.github.io/performance/reference/check_normality.html))_

```{r}
model <- lm(mpg ~ wt + cyl + gear + disp, data = mtcars)
result <<- check_normality(model)
model2 <<- lm(mpg ~ wt + cyl + gear + disp, data = mtcars)
result2 <<- check_normality(model2)
```

### Density Plot

```{r}
plot(result, type = "density")
plot(result2, type = "density")
```

### QQ Plot

```{r}
plot(result, type = "qq")
plot(result2, type = "qq")
```

### PP Plot

```{r}
plot(result, type = "pp")
plot(result2, type = "pp")
```

## Check for Normal Distributed Random Effects
Expand Down

0 comments on commit 7232a92

Please sign in to comment.