Skip to content

Commit

Permalink
vibass7. Fixes mistakes in practials.
Browse files Browse the repository at this point in the history
  • Loading branch information
famuvie committed Jul 8, 2024
1 parent 6407e73 commit d7886f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: vibass
Title: Valencia International Bayesian Summer School
Version: 0.0.51
Version: 0.0.52
Authors@R:
c(person(given = "VIBASS7",
role = c("aut")),
Expand Down
4 changes: 2 additions & 2 deletions vignettes/p2count.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ setNames(nm = c(0.025, 0.975)) |> qgamma(748.8, 29.6) |> round(1)

and the subsequent posterior probabilities that the mean number of letters _u_'s in a page of *A Game of Thrones* is between 24 and 26 letters are
```{r}
round(pgamma(27, 643.5, 25) - pgamma(24, 643.5, 25), 3)
round(pgamma(27, 748.8, 29.6) - pgamma(24, 748.8, 29.6), 3)
round(pgamma(26, 643.5, 25) - pgamma(23, 643.5, 25), 3)
round(pgamma(26, 748.8, 29.6) - pgamma(23, 748.8, 29.6), 3)
```


Expand Down
2 changes: 1 addition & 1 deletion vignettes/p2normal.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ hmen <- data.frame(height = c(1.92, 1.82, 1.69, 1.75, 1.72, 1.71, 1.73, 1.69, 1.

1. Construct a Bayesian inferential process for the mean of the height of the VIBASS men participants. Assume a non-informative prior scenario and a sampling model approximately Normal with

- Known variance $\sigma^2=0.1$.
- Known standard deviation $\sigma=0.1$.

- Unknown variance.

Expand Down

0 comments on commit d7886f8

Please sign in to comment.