-
Notifications
You must be signed in to change notification settings - Fork 0
Adding ability to run diagnostic functions on individuals #121
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
Open
sschildhauer
wants to merge
71
commits into
main
Choose a base branch
from
individualdx_2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
71 commits
Select commit
Hold shift + click to select a range
0a1cc37
Updating traceplot diagnostic
sschildhauer b11d662
Updating traceplot documentation
sschildhauer fd24ed2
Updating Rhat dx with documentation
sschildhauer 0aca561
Updating effective dx with documentation
sschildhauer 1016830
Fixing traceplot snaps and tests
sschildhauer 67f06e7
Updating and adding Rhat tests for new id functionality
sschildhauer 1532ea1
Updating effective tests
sschildhauer afd8d60
Updating density tests
sschildhauer 6577100
Fixing Lint
sschildhauer 5668638
Updating documentation
sschildhauer e21f691
Updating news
sschildhauer eb491f6
Increment version number to 0.0.0.9035
sschildhauer 65e30c8
Merging with main
sschildhauer 36e0efb
Fixing snaps
sschildhauer 82eb137
Increment version number to 0.0.0.9037
sschildhauer ad83bb2
updating density lint and test
sschildhauer 19d0035
Updating lint in rhat test
sschildhauer 6453c8d
Updating Rhat test snap
sschildhauer 7090d27
Updating test snaps for effective and rhat
sschildhauer a0fbb74
Merge branch 'main' into individualdx_2
d-morrison 674d580
Merging with main
sschildhauer 0cb37c3
Increment version number to 0.0.0.9038
sschildhauer bdde2f9
Merging News with main
sschildhauer be62f9a
Merging with main
sschildhauer 638eef4
Redoing trace snaps
sschildhauer efd738e
Changing trace snaps
sschildhauer 14b52dc
Updating effective snaps
sschildhauer 15ba2da
Merging with main
sschildhauer 62d8878
Increment version number to 0.0.0.9042
sschildhauer c00fbe2
Update R/plot_jags_densitydx.R
sschildhauer 24bc5e0
Merging with main
sschildhauer c4b5bfd
Merge branch 'individualdx_2' of https://github.com/UCD-SERG/serodyna…
sschildhauer a6bb585
Updating plot_jags_dens to provide clarity on sub vs strat in loop
sschildhauer d781757
Update R/plot_jags_densitydx.R
sschildhauer d9e56e6
Update R/plot_jags_densitydx.R
sschildhauer 778ebe9
Update R/plot_jags_effectivedx.R
sschildhauer adf9967
Update R/plot_jags_effectivedx.R
sschildhauer 827ae7e
Update R/plot_jags_rhatdx.R
sschildhauer eab46ac
Update R/plot_jags_rhatdx.R
sschildhauer 8eb01ee
Update R/plot_jags_tracedx.R
sschildhauer 452c31d
Adding new functions to add attributes to a data frame. Used repetiti…
sschildhauer 7d943a6
Updating Rhat code based on recommendations
sschildhauer 9711a44
Comitting changes to plot functions
sschildhauer fda2c24
Updating Rhat test
sschildhauer 2869b37
Updating density and rhat snaps
sschildhauer 14ee835
Updating trace and effective snaps
sschildhauer d3f0f77
Updating jags atts attributes name
sschildhauer c62cd33
Increment version number to 0.0.0.9043
sschildhauer 5edb3f2
reverting run_mod test
sschildhauer 3d52370
Documentation for add_jags_atts
sschildhauer 14e86ad
Fixing lint in dx functions
sschildhauer ebb29fe
Changing plot titles back to paste0
sschildhauer e2cac6c
updating traceplot snaps
sschildhauer 04a1dca
Fixing stratification issue in Rhat
sschildhauer 769acf4
Updating dx plots to have dynamic stratification
sschildhauer fa7856d
replacing traceplot snaps
sschildhauer 000632b
Updating traceplot snaps
sschildhauer 7cbdba4
redoing autplot doc
sschildhauer 54d2fa0
updating autoplot documentation
sschildhauer 717e1bd
Updating test snaps
sschildhauer 9841b88
Remaking plot predicted curve snaps
sschildhauer 260dd1f
Remaking plot curve snaps
sschildhauer 7bcf2ad
Fixing small issue with loops in trace
sschildhauer f807e19
Updating autoplot after ggplot update
sschildhauer f87a358
Updating trace snap
sschildhauer 321a640
Merged origin/main into individualdx_2
sschildhauer 3da69bd
Increment version number to 0.0.0.9044
sschildhauer d961139
Updating density snaps
sschildhauer 523ecc4
Updating autoplot snap
sschildhauer eb7c83a
Updating documentation of add_jags_atts
sschildhauer d4ab703
Updating title of prior test for run_mod
sschildhauer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #' @title Adds attributes | ||
| #' @description | ||
| #' `add_jags_attrs` adds specified attributes to a [data.frame]. | ||
| #' @param df A [data.frame]. | ||
| #' @param attrs [attributes] to attach to the [data.frame]. | ||
| #' @param df A [data.frame] of the original input dataset. | ||
| #' @returns A [data.frame] with specified [attributes] attached. | ||
| #' @keywords internal | ||
| add_jags_attrs <- function(df, attrs) { | ||
| attributes(df) <- c(attributes(df), attrs) | ||
| df | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.