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

Add modifying models article #620

Merged
merged 26 commits into from
Dec 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ee734f3
Add modifying models article
mattfidler Dec 2, 2023
0ca7897
Merge remote-tracking branch 'origin/main' into 563-write-info-about-…
mattfidler Dec 5, 2023
6a5a386
Merge branch 'main' into 563-write-info-about-model-piping
mattfidler Dec 5, 2023
89962fa
add more information on piping
mattfidler Dec 5, 2023
909fee8
Merge branch 'main' into 563-write-info-about-model-piping
mattfidler Dec 5, 2023
880b62b
Add more information about parameter promotion
mattfidler Dec 5, 2023
e7971e5
example re-arranging parameters
mattfidler Dec 5, 2023
303a192
Merge branch '625-inconsistent-append-behavior-between-ini-and-model-…
mattfidler Dec 5, 2023
d1ffdd9
Align piping in vignette
mattfidler Dec 5, 2023
d52eea0
Merge branch '625-inconsistent-append-behavior-between-ini-and-model-…
mattfidler Dec 5, 2023
eb58c25
Merge remote-tracking branch 'origin/629-mem-issues' into 563-write-i…
mattfidler Dec 6, 2023
700f550
fix model()<- example
mattfidler Dec 6, 2023
b4a3796
Merge branch 'main' into 563-write-info-about-model-piping
mattfidler Dec 6, 2023
e06cb89
Re-export toTrialDuration
mattfidler Dec 6, 2023
14e5a05
Add ini data frame modification example
mattfidler Dec 6, 2023
af801af
Fix camelCase instead of snake_case
mattfidler Dec 7, 2023
9bcbfd3
prefer params over omega/sigma
mattfidler Dec 7, 2023
5613db5
Change rxRename to rename everything in one pass
mattfidler Dec 8, 2023
8e2aede
Fix errors in vignette
mattfidler Dec 8, 2023
74b64dd
add to pkgdown index
mattfidler Dec 8, 2023
11388cd
be more careful with 1x1 sigma/omega matrices
mattfidler Dec 8, 2023
9b92ad7
Some fixes for plot
mattfidler Dec 8, 2023
889c3ba
Comment out plotLog for now
mattfidler Dec 8, 2023
8665e32
Add back
mattfidler Dec 8, 2023
386cd10
Add rename for thetaMat and sigma if present
mattfidler Dec 8, 2023
c73a698
Add tests and fixes for rxRename (w/sigma and thetaMat)
mattfidler Dec 8, 2023
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
Prev Previous commit
Next Next commit
example re-arranging parameters
  • Loading branch information
mattfidler committed Dec 5, 2023
commit e7971e5c481c572ca708cf201728536bbe4c5450
8 changes: 8 additions & 0 deletions vignettes/articles/Modifying-Models.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -737,3 +737,11 @@ f4 <- f |> ini(tka=label("Typical Ka (1/hr)"))

print(f4)
```


You can also change the order while performing operations:

```{r label1}
f5 <- f |> ini(tka=label("Typical Ka (1/hr)"), append=tcl)
print(f5)
```