Skip to content

Commit 214a1c4

Browse files
committed
namespace
1 parent f94a1a1 commit 214a1c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

R/standardize_info.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ standardize_info.default <- function(model,
323323
if (inherits(model, c("gls", "lme"))) {
324324
response <- insight::get_response(model)
325325
} else if (inherits(model, "fixest")) {
326-
response <- model.matrix(model, type = "lhs")
326+
response <- stats::model.matrix(model, type = "lhs")
327327
} else {
328328
response <- stats::model.frame(model)[[1]]
329329
}
@@ -370,7 +370,7 @@ standardize_info.default <- function(model,
370370
if (inherits(model, c("gls", "lme"))) {
371371
response <- insight::get_response(model)
372372
} else if (inherits(model, "fixest")) {
373-
response <- model.matrix(model, type = "lhs")
373+
response <- stats::model.matrix(model, type = "lhs")
374374
} else {
375375
response <- stats::model.frame(model)[[1]]
376376
}

0 commit comments

Comments
 (0)