Tracking down error: stringsAsFactors [Power / Sample Size]

posted by d_labes  – Berlin, Germany, 2020-05-13 13:34 (2222 d 21:44 ago) – Posting: # 21431
Views: 14,923

Dear Helmut, dear Alyssa!

❝ ❝ Then i continued with the following command but it appeared error: […]


❝ Let’s try to figure it out. Execute this code:

❝ ...

❝ res <- data.frame(design = rep(designs, each = length(target)),

❝ target = target, n = NA, power = NA)


This line is the casus knacktus!
The error
Error in match.arg(design) : 'arg' must be NULL or a character vector
means that the design argument in the call of sampleN.scABEL() is not character.
Reason:
Before R4.0.0 the optional argument stringsAsFactors in the call of data.frame() was TRUE. Changed in R4.0.0 to FALSE.
Check this in your installation via
default.stringsAsFactors()
If you get TRUE as answer change
res     <- data.frame(design = rep(designs, each = length(target)),
                      target = target, n = NA, power = NA,
                      stringsAsFactors = FALSE)

and than I'm sure that it works.

All the best

Regards,

Detlew

Complete thread:

UA Flag
Activity
 Admin contact
23,653 posts in 4,991 threads, 1,570 registered users;
139 visitors (0 registered, 139 guests [including 36 identified bots]).
Forum time: 11:19 CEST (Europe/Vienna)

I have never in my life learned anything
from any man who agreed with me.    Dudley Field Malone

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5