Sorry to bother you again with the argument verbose. When I write a wrapper function around tam.mml(), using verbose results in an error:
f1 <- function(verbose = FALSE, ...) {
TAM::tam.mml(verbose = verbose, ...)
}
data(data.sim.rasch, package = "TAM")
mod1 <- f1(resp = data.sim.rasch, verbose = TRUE)
#> Error in if (progress) {: argument is not interpretable as logical
I don't fully understand everything surrounding tam_args_CALL_search() , but I think that args_CALL <- as.list( sys.call() ) (in tam.mml()) should be replaced with something along the lines of https://stackoverflow.com/q/17256834 to fix that?
It's not urgent, because I can still use f1(resp = data.sim.rasch, control = list(progress = FALSE)), but I wanted to let you know.
Sorry to bother you again with the argument
verbose
. When I write a wrapper function aroundtam.mml()
, usingverbose
results in an error:I don't fully understand everything surrounding
tam_args_CALL_search()
, but I think thatargs_CALL <- as.list( sys.call() )
(intam.mml()
) should be replaced with something along the lines of https://stackoverflow.com/q/17256834 to fix that?It's not urgent, because I can still use
f1(resp = data.sim.rasch, control = list(progress = FALSE))
, but I wanted to let you know.