File tree 4 files changed +9
-2
lines changed
4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ Imports:
24
24
MASS,
25
25
collapse,
26
26
generics,
27
- cli
27
+ cli,
28
+ rlang
28
29
Suggests:
29
30
ggplot2,
30
31
latex2exp,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ importFrom(collapse,add_vars)
17
17
importFrom(collapse,fwithin)
18
18
importFrom(dreamerr,check_arg)
19
19
importFrom(generics,tidy)
20
+ importFrom(rlang,abort)
20
21
importFrom(stats,coef)
21
22
importFrom(stats,coefficients)
22
23
importFrom(stats,expand.model.frame)
@@ -33,5 +34,6 @@ importFrom(stats,reformulate)
33
34
importFrom(stats,rlnorm)
34
35
importFrom(stats,rnorm)
35
36
importFrom(stats,terms)
37
+ importFrom(stats,update)
36
38
importFrom(stats,weights)
37
39
importFrom(utils,stack)
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ get_cluster <-
16
16
# '
17
17
# ' @return a list, containing a data.frame of the
18
18
# ' cluster variables
19
+ # '
20
+ # ' @importFrom stats update
21
+ # '
19
22
20
23
# ----------------------------------------------------------------------- #
21
24
# Note: a large part of the following code was taken and adapted from the
Original file line number Diff line number Diff line change @@ -26,10 +26,11 @@ summclust.lm <- function(
26
26
# ' should be computed.
27
27
# ' @param ... other function arguments passed to 'vcov'
28
28
# ' @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
30
30
# ' @importFrom dreamerr check_arg
31
31
# ' @importFrom MASS ginv
32
32
# ' @importFrom stats expand.model.frame formula model.frame model.response na.pass pt qt reformulate
33
+ # ' @importFrom rlang abort
33
34
# '
34
35
# ' @export
35
36
# '
You can’t perform that action at this time.
0 commit comments