-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CRAN release v0.1.1 [skip vbump] (#45)
- Loading branch information
Showing
8 changed files
with
78 additions
and
68 deletions.
There are no files selected for viewing
Empty file.
This file contains 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 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 |
---|---|---|
@@ -1,13 +1,9 @@ | ||
# tern.gee 0.1.0.9009 | ||
# tern.gee 0.1.1 | ||
|
||
### Miscellaneous | ||
|
||
* Add badges to README. | ||
* Added badges to README. | ||
|
||
# tern.gee 0.1.0 | ||
|
||
### Enhancements | ||
|
||
* First release | ||
* Update pkgdown site, introduction vignette, and README, add unit tests. | ||
* Add examples for `fit_gee`, `lsmeans`, `s_lsmeans_logistic`, `summarize_gee_logistic`. | ||
* First release. | ||
* Updated pkgdown site, introduction vignette, and README, added unit tests. | ||
* Added examples for `fit_gee`, `lsmeans`, `s_lsmeans_logistic`, `summarize_gee_logistic`. |
This file contains 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
Empty file.
This file contains 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,44 @@ | ||
# h_gee_cov works as expected | ||
|
||
Code | ||
result | ||
Output | ||
VIS1 VIS2 VIS3 VIS4 | ||
———————————————————————————————————————————— | ||
VIS1 1.0000 -0.0565 -0.1257 0.0678 | ||
VIS2 -0.0565 1.0000 -0.0836 -0.0578 | ||
VIS3 -0.1257 -0.0836 1.0000 0.0092 | ||
VIS4 0.0678 -0.0578 0.0092 1.0000 | ||
|
||
# summarize_gee_logistic works as expected with covariates in the model | ||
|
||
Code | ||
result | ||
Output | ||
PBO TRT | ||
(N=105) (N=95) | ||
——————————————————————————————————————————————————————————— | ||
n 420 380 | ||
Adjusted Mean Proportion (SE) 0.90 (0.02) 0.95 (0.01) | ||
95% CI (0.85, 0.93) (0.91, 0.97) | ||
Odds Ratio 1.97 | ||
95% CI (1.03, 3.77) | ||
Log Odds Ratio 0.68 | ||
95% CI (0.03, 1.33) | ||
|
||
# summarize_gee_logistic works as expected with no covariates in the model | ||
|
||
Code | ||
result | ||
Output | ||
PBO TRT | ||
(N=105) (N=95) | ||
——————————————————————————————————————————————————————————— | ||
n 420 380 | ||
Adjusted Mean Proportion (SE) 0.88 (0.02) 0.94 (0.01) | ||
95% CI (0.84, 0.92) (0.91, 0.97) | ||
Odds Ratio 2.18 | ||
95% CI (1.16, 4.10) | ||
Log Odds Ratio 0.78 | ||
95% CI (0.15, 1.41) | ||
|
This file contains 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