Skip to content

Commit

Permalink
Test width output
Browse files Browse the repository at this point in the history
  • Loading branch information
ismayc committed Sep 29, 2024
1 parent a3d4254 commit f92cf5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 10-inference-for-regression.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ coffee_data |>

```{r echo=FALSE}
# Fix the width for the explanatory variable output
options(width = 125)
#options(width = 125)
if (!file.exists("rds/generated_distn_slopes.rds")) {
set.seed(76)
generated_distn_slopes <- coffee_data |>
Expand All @@ -2388,7 +2388,7 @@ if (!file.exists("rds/generated_distn_slopes.rds")) {
}
generated_distn_slopes
# Reset width
options(width = 80)
#options(width = 80)
```

3. Lastly, `fit()` models for each of the replicates in the `boot_distribution_mlr` variable. Here, `mlr` stands for multiple linear regression.
Expand Down
2 changes: 1 addition & 1 deletion index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if (is_html_output()) {
options(width = 110)
}
if (is_latex_output()) {
options(width = 75)
options(width = 110)
}
options(digits = 7, bookdown.clean_book = TRUE, knitr.kable.NA = "NA")
opts_chunk$set(
Expand Down

0 comments on commit f92cf5d

Please sign in to comment.