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 7232a92 commit 42a1d29
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions vignettes/performance.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -150,25 +150,34 @@ plot(result, type = "bars")
_([related function documentation](https://easystats.github.io/performance/reference/check_normality.html))_

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

### Density Plot

```{r}
```{r echo=FALSE}
plot(result2, type = "density", data = model2)
```
```{r eval=FALSE}
plot(result2, type = "density")
```

### QQ Plot

```{r}
```{r echo=FALSE}
plot(result2, type = "qq", data = model2)
```
```{r eval=FALSE}
plot(result2, type = "qq")
```

### PP Plot

```{r}
```{r echo=FALSE}
plot(result2, type = "pp", data = model2)
```
```{r eval=FALSE}
plot(result2, type = "pp")
```

Expand Down

0 comments on commit 42a1d29

Please sign in to comment.