Skip to content

Commit

Permalink
lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 12, 2024
1 parent 47c60b5 commit cf8b824
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vignettes/model_parameters_print.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ Note that the parameters in the table summary are re-ordered according to the or
```{r}
# group parameters, either by parameter name or position
print(mp, groups = list(
"Engine" = c("cyl6", "cyl8", "vs", "hp"),
"Interactions" = c("gear4:vs", "gear5:vs"),
"Controls" = c(2, 3, 7)
Engine = c("cyl6", "cyl8", "vs", "hp"),
Interactions = c("gear4:vs", "gear5:vs"),
Controls = c(2, 3, 7)
)) # gear 4 and 5, drat
```

Expand All @@ -227,9 +227,9 @@ If you prefer tables without vertical borders, use the `sep` argument to define
print(mp,
sep = " ",
groups = list(
"Engine" = c("cyl6", "cyl8", "vs", "hp"),
"Interactions" = c("gear4:vs", "gear5:vs"),
"Controls" = c(2, 3, 7)
Engine = c("cyl6", "cyl8", "vs", "hp"),
Interactions = c("gear4:vs", "gear5:vs"),
Controls = c(2, 3, 7)
)
)
```
Expand Down

0 comments on commit cf8b824

Please sign in to comment.