generated from jasp-stats/jaspModuleTemplate
-
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.
Merge pull request #5 from FBartos/add-semi-parametric
Add semi parametric survival analysis (Cox proportional hazards)
- Loading branch information
Showing
15 changed files
with
2,205 additions
and
1,134 deletions.
There are no files selected for viewing
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,3 +1,5 @@ | ||
^renv$ | ||
^renv\.lock$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.travis\.yml$ |
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 |
---|---|---|
|
@@ -58,3 +58,5 @@ Thumbs.db | |
# RStudio files | ||
.Rproj.user | ||
_processedLockFile.lock | ||
renv/activate.R | ||
.Rprofile |
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 |
---|---|---|
|
@@ -9,9 +9,10 @@ Maintainer: JASP Team <[email protected]> | |
Description: Perform analyses of censored time to event data. | ||
License: GPL (>= 2) | ||
Encoding: UTF-8 | ||
Depends: | ||
survival | ||
Imports: | ||
survival, | ||
survminer, | ||
ggsurvfit, | ||
jaspBase, | ||
jaspGraphs | ||
Suggests: | ||
|
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,4 +1,5 @@ | ||
import(jaspBase) | ||
import(survival) | ||
export(NonParametricSurvivalAnalysis) | ||
export(SemiParametricSurvivalAnalysis) | ||
export(ParametricSurvivalAnalysis) |
Oops, something went wrong.