Transforms the given attributes by replacing the string values with the replacement value.
Usage
replace_string(ft, attributes, string, replacement)
# S3 method for flat_table
replace_string(ft, attributes = NULL, string, replacement = NULL)
Arguments
- ft
A
flat_table
object.- attributes
A vector of strings, attribute names.
- string
A character string to replace.
- replacement
A replacement for matched string.
See also
Other flat table transformation functions:
add_custom_column()
,
remove_instances_without_measures()
,
replace_empty_values()
,
replace_unknown_values()
,
select_attributes()
,
select_instances_by_comparison()
,
select_instances()
,
select_measures()
,
separate_measures()
,
transform_attribute_format()
,
transform_from_values()
,
transform_to_attribute()
,
transform_to_measure()
,
transform_to_values()
Examples
ft <- flat_table('iris', iris) |>
replace_string(
attributes = 'Species',
string = c('set'),
replacement = c('Set')
)