Skip to content

Commit

Permalink
update vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 24, 2024
1 parent f13abe2 commit 45d8a4b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions vignettes/parameters.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,30 @@ result <- p_function(model, ci_levels = c(0.5, 0.7, emph = 0.9))
plot(result, size_line = c(0.6, 1.2))
```

## Probability of Direction

_([related function documentation](https://easystats.github.io/parameters/reference/p_direction.lm.html))_

```{r}
data(qol_cancer)
model <- lm(QoL ~ time + age + education, data = qol_cancer)
result <- p_direction(model)
plot(result)
```

## Practical Significance

_([related function documentation](https://easystats.github.io/parameters/reference/p_significance.lm.html))_

```{r}
data(qol_cancer)
model <- lm(QoL ~ time + age + education, data = qol_cancer)
result <- p_significance(model)
plot(result)
```

## Principal Component Analysis

_([related function documentation](https://easystats.github.io/parameters/reference/principal_components.html))_
Expand Down

0 comments on commit 45d8a4b

Please sign in to comment.