Checks whether a vector can be coerced to a length-1 factor.
stabilize_fct_scalar() is optimized to check for length-1 factors
(compared to stabilize_fct() with max_size = 1). stabilise_fct_scalar,
stabilize_factor_scalar(), and stabilise_factor_scalar are synonyms of
stabilize_fct_scalar().
Usage
stabilize_fct_scalar(
x,
...,
allow_null = FALSE,
allow_zero_length = FALSE,
allow_na = TRUE,
levels = NULL,
to_na = character(),
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)
stabilize_factor_scalar(
x,
...,
allow_null = FALSE,
allow_zero_length = FALSE,
allow_na = TRUE,
levels = NULL,
to_na = character(),
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)
stabilise_fct_scalar(
x,
...,
allow_null = FALSE,
allow_zero_length = FALSE,
allow_na = TRUE,
levels = NULL,
to_na = character(),
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)
stabilise_factor_scalar(
x,
...,
allow_null = FALSE,
allow_zero_length = FALSE,
allow_na = TRUE,
levels = NULL,
to_na = character(),
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)
)Arguments
- x
The object to stabilize.
- ...
Arguments passed to methods.
- allow_null
(
logical(1)) Is NULL an acceptable value?- allow_zero_length
(
logical(1)) Are zero-length vectors acceptable?- allow_na
(
logical(1)) Are NA values ok?- levels
(character)Expected levels. IfNULL(default), the levels will be computed bybase::factor().- to_na
(character)Values to convert toNA.- x_arg
(
character(1)) The name of the object being stabilized to use in error messages. The automatic value will work in most cases, or pass it through from higher-level functions to make error messages clearer in unexported functions.- call
(environment)The execution environment to mention as the source of error messages.- x_class
(
character(1)) The class name of the object being stabilized to use in error messages. Use this if you remove a special class from the object before checking its coercion, but want the error message to match the original class.
Value
The input as a length-1 factor, or an error condition with classes
<stbl-error>, <stbl-condition>, <rlang_error>, <error>,
<condition>, and a specific class by failure mode:
<stbl-error-coerce-factor>whenxcannot be coerced to factor.<stbl-error-bad_null>forNULLvalues whenallow_null = FALSE.<stbl-error-bad_empty>for empty vectors whenallow_zero_length = FALSE.<stbl-error-non_scalar>for non-scalar vectors.<stbl-error-bad_na>forNAvalues whenallow_na = FALSE.<stbl-error-fct_levels>when values are not present inlevels.
See also
Other factor functions:
are_fct_ish(),
specify_fct(),
stabilize_fct(),
to(),
to_fct(),
to_fct_scalar()
Other stabilization functions:
assert_present(),
stabilize_any_of(),
stabilize_arg(),
stabilize_chr(),
stabilize_chr_scalar(),
stabilize_date(),
stabilize_date_scalar(),
stabilize_dbl(),
stabilize_dbl_scalar(),
stabilize_df(),
stabilize_dttm(),
stabilize_dttm_scalar(),
stabilize_dur(),
stabilize_dur_scalar(),
stabilize_fct(),
stabilize_int(),
stabilize_int_scalar(),
stabilize_lgl(),
stabilize_lgl_scalar(),
stabilize_lst(),
stabilize_time(),
stabilize_time_scalar(),
to_chr(),
to_chr_scalar(),
to_date(),
to_date_scalar(),
to_dbl(),
to_dbl_scalar(),
to_dttm(),
to_dttm_scalar(),
to_dur(),
to_dur_scalar(),
to_fct(),
to_fct_scalar(),
to_int(),
to_int_scalar(),
to_lgl(),
to_lgl_scalar(),
to_time(),
to_time_scalar()
Examples
stabilize_fct_scalar("a")
#> [1] a
#> Levels: a
try(stabilize_fct_scalar(letters))
#> Error in eval(expr, envir) :
#> `letters` must be a single <factor>.
#> ✖ `letters` has 26 values.
try(stabilize_fct_scalar("c", levels = c("a", "b")))
#> Error in eval(expr, envir) :
#> Each value of `"c"` must be in the expected levels.
#> ℹ Allowed levels: "a" and "b".
#> ✖ Unexpected values: "c".