Skip to content

Commit

Permalink
fix #129 warning and note
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindhebbali committed Nov 29, 2019
1 parent a46849e commit b79cb70
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ importFrom(stats,complete.cases)
importFrom(stats,confint.lm)
importFrom(stats,cooks.distance)
importFrom(stats,cor)
importFrom(stats,df.residual)
importFrom(stats,dfbetas)
importFrom(stats,dffits)
importFrom(stats,dnorm)
Expand All @@ -273,6 +274,7 @@ importFrom(stats,model.matrix)
importFrom(stats,model.response)
importFrom(stats,pchisq)
importFrom(stats,pf)
importFrom(stats,pt)
importFrom(stats,qnorm)
importFrom(stats,qqline)
importFrom(stats,qqnorm)
Expand Down
2 changes: 2 additions & 0 deletions R/ols-outlier-test.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
#' @param model An object of class \code{lm}.
#' @param cut_off Bonferroni p-values cut off for reporting observations.
#' @param n_max Maximum number of observations to report, default is 10.
#' @param ... Other arguments.
#'
#' @examples
#' # model
#' model <- lm(y ~ ., data = surgical)
#' ols_test_outlier(model)
#'
#' @importFrom stats df.residual pt
#' @export
#'
ols_test_outlier <- function(model, cut_off = 0.05, n_max = 10, ...) {
Expand Down
4 changes: 4 additions & 0 deletions docs/reference/ols_test_outlier.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions man/ols_test_outlier.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b79cb70

Please sign in to comment.