-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sigma, influence, rstudent, rstandard methods Fixed a bug with errors for summary.singleRmargin Added better errors for plot method Added better error messages for add1, drop1, profile, anova
- Loading branch information
Showing
8 changed files
with
133 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Add in the future actual methods for this: | ||
#' @importFrom stats add1 | ||
#' @method add1 singleRStaticCountData | ||
#' @exportS3Method | ||
add1.singleRStaticCountData <- function(object, scope, ...) { | ||
stop("The add1 method for singleRStaticCountData class doesn't work yet.") | ||
} | ||
#' @importFrom stats profile | ||
#' @method profile singleRStaticCountData | ||
#' @exportS3Method | ||
profile.singleRStaticCountData <- function(object, scope, ...) { | ||
stop("The profile method for singleRStaticCountData class doesn't work yet.") | ||
} | ||
#' @importFrom stats drop1 | ||
#' @method drop1 singleRStaticCountData | ||
#' @exportS3Method | ||
drop1.singleRStaticCountData <- function(object, scope, ...) { | ||
stop("The drop1 method for singleRStaticCountData class doesn't work yet.") | ||
} | ||
#' @importFrom stats anova | ||
#' @method anova singleRStaticCountData | ||
#' @exportS3Method | ||
anova.singleRStaticCountData <- function(object, ...) { | ||
stop("The anova method for singleRStaticCountData class doesn't work yet.") | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.