Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 30, 2023
1 parent 7202239 commit 1bdab84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/region_of_practical_equivalence.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ library(see)
set.seed(333)
data <- iris # Use the iris data
model <- stan_glm(Sepal.Length ~ Sepal.Width, data = data, refresh = 0)
model <<- stan_glm(Sepal.Length ~ Sepal.Width, data = data, refresh = 0)
```


Expand Down Expand Up @@ -195,7 +195,7 @@ model <- stan_glm(Sepal.Length ~ Sepal.Width_scaled, data = data) # Fit model
```{r echo=FALSE, message=FALSE, warning=FALSE, comment=">"}
set.seed(333)
data$Sepal.Width_scaled <- data$Sepal.Width / 100
model <- stan_glm(Sepal.Length ~ Sepal.Width_scaled, data = data, refresh = 0)
model <<- stan_glm(Sepal.Length ~ Sepal.Width_scaled, data = data, refresh = 0)
```

```{r eval=FALSE, echo=TRUE, message=FALSE, warning=FALSE, comment=">"}
Expand Down

0 comments on commit 1bdab84

Please sign in to comment.