-
-
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.
- Loading branch information
Showing
40 changed files
with
2,844 additions
and
637 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
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
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
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,25 @@ | ||
#' Example Tumor Response Datasets | ||
#' | ||
#' Example datasets demonstrating different scenarios for tumor response analysis | ||
#' | ||
#' @format A list containing 4 data frames: | ||
#' \describe{ | ||
#' \item{raw_with_time}{Raw tumor measurements with time points (20 obs. of 3 variables)} | ||
#' \item{raw_no_time}{Raw tumor measurements without time (10 obs. of 2 variables)} | ||
#' \item{percent_with_time}{Pre-calculated response percentages with time (20 obs. of 3 variables)} | ||
#' \item{percent_no_time}{Pre-calculated response percentages without time (10 obs. of 2 variables)} | ||
#' } | ||
#' @details | ||
#' Each dataset represents a different scenario: | ||
#' \itemize{ | ||
#' \item raw_with_time: Longitudinal raw measurements | ||
#' \item raw_no_time: Single timepoint raw measurements | ||
#' \item percent_with_time: Longitudinal percentage changes | ||
#' \item percent_no_time: Single timepoint percentage changes | ||
#' } | ||
#' | ||
#' @examples | ||
#' data(tumor_response_examples) | ||
#' head(tumor_response_examples$raw_with_time) | ||
#' head(tumor_response_examples$percent_no_time) | ||
"tumor_response_examples" |
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
Oops, something went wrong.