Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more edits to methodology #307

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion vignettes/methodology.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
```{r}
#| fig-cap: "Example log(likelihood) curves"
#| label: fig-loglik
lik_HlyE_IgA <- graph_loglik(

Check warning on line 207 in vignettes/methodology.qmd

View workflow job for this annotation

GitHub Actions / lint-changed-files

file=vignettes/methodology.qmd,line=207,col=1,[object_name_linter] Variable and function name style should match snake_case or symbols.
pop_data = xs_data,
curve_params = curves,
noise_params = noise,
Expand All @@ -212,7 +212,7 @@
log_x = TRUE
)

lik_HlyE_IgG <- graph_loglik(

Check warning on line 215 in vignettes/methodology.qmd

View workflow job for this annotation

GitHub Actions / lint-changed-files

file=vignettes/methodology.qmd,line=215,col=1,[object_name_linter] Variable and function name style should match snake_case or symbols.
previous_plot = lik_HlyE_IgA,
pop_data = xs_data,
curve_params = curves,
Expand Down Expand Up @@ -339,7 +339,10 @@

::: notes

The derivative of this expression doesn't come out cleanly, so we will use a *numerical method* (specifically, a Newton-type algorithm, implemented by `stats::nlm()`) to find the MLE and corresponding standard error.
The derivative of this expression doesn't come out cleanly,
so we will use a *numerical method*
(specifically, a Newton-type algorithm, implemented by `stats::nlm()`)
to find the MLE and corresponding standard error.

:::

Expand Down
Loading