Skip to content

Commit 48eb61d

Browse files
committed
pass cmd checks locally
1 parent f2d6069 commit 48eb61d

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

DESCRIPTION

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Imports:
2424
MASS,
2525
collapse,
2626
generics,
27-
cli
27+
cli,
28+
rlang
2829
Suggests:
2930
ggplot2,
3031
latex2exp,

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ importFrom(collapse,add_vars)
1717
importFrom(collapse,fwithin)
1818
importFrom(dreamerr,check_arg)
1919
importFrom(generics,tidy)
20+
importFrom(rlang,abort)
2021
importFrom(stats,coef)
2122
importFrom(stats,coefficients)
2223
importFrom(stats,expand.model.frame)
@@ -33,5 +34,6 @@ importFrom(stats,reformulate)
3334
importFrom(stats,rlnorm)
3435
importFrom(stats,rnorm)
3536
importFrom(stats,terms)
37+
importFrom(stats,update)
3638
importFrom(stats,weights)
3739
importFrom(utils,stack)

R/get_cluster.R

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ get_cluster <-
1616
#'
1717
#' @return a list, containing a data.frame of the
1818
#' cluster variables
19+
#'
20+
#' @importFrom stats update
21+
#'
1922

2023
# ----------------------------------------------------------------------- #
2124
# Note: a large part of the following code was taken and adapted from the

R/summclust_lm.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ summclust.lm <- function(
2626
#' should be computed.
2727
#' @param ... other function arguments passed to 'vcov'
2828
#' @method summclust lm
29-
#' @importFrom stats coef weights coefficients model.matrix
29+
#' @importFrom stats coef weights coefficients model.matrix update model.frame expand.model.frame
3030
#' @importFrom dreamerr check_arg
3131
#' @importFrom MASS ginv
3232
#' @importFrom stats expand.model.frame formula model.frame model.response na.pass pt qt reformulate
33+
#' @importFrom rlang abort
3334
#'
3435
#' @export
3536
#'

0 commit comments

Comments
 (0)