standardize | R Documentation |
Standardizes organizational names. Takes either vector or column in the table.
standardize(
x,
procedures = nstandr_default_procedures_list,
show_progress = TRUE,
nrows_min_to_show_progress = 10^3,
progress_step_nrows = NULL,
progress_step_in_percent = 1,
progress_message_use_names = TRUE,
quite = FALSE,
save_intermediate_x_to_var = NULL,
...
)
make_std_names(
x,
procedures = nstandr_default_procedures_list,
show_progress = TRUE,
nrows_min_to_show_progress = 10^3,
progress_step_nrows = NULL,
progress_step_in_percent = 1,
progress_message_use_names = TRUE,
quite = FALSE,
save_intermediate_x_to_var = NULL,
...
)
make_standard_names(
x,
procedures = nstandr_default_procedures_list,
show_progress = TRUE,
nrows_min_to_show_progress = 10^3,
progress_step_nrows = NULL,
progress_step_in_percent = 1,
progress_message_use_names = TRUE,
quite = FALSE,
save_intermediate_x_to_var = NULL,
...
)
nstand(
x,
procedures = nstandr_default_procedures_list,
show_progress = TRUE,
nrows_min_to_show_progress = 10^3,
progress_step_nrows = NULL,
progress_step_in_percent = 1,
progress_message_use_names = TRUE,
quite = FALSE,
save_intermediate_x_to_var = NULL,
...
)
x |
object (table) |
procedures |
The procedures that basically comprise the standardization algorithm are specified as a list of either (1) names of procedures function as character strings or as (2) calls where you can provide optional arguments or (3) nested lists that allow user to group procedures. Nesting lists of procedures has an effect on standardization progress reporting and on visualizing algorithms with |
show_progress |
Whether to report progress percentage. Default is TRUE |
nrows_min_to_show_progress |
The minimum number of rows the x should have for automatic progress estimation. If x has less rows no progress will be shown. Default is 10^5 |
progress_step_nrows |
If set it will divide the x into chunk of this amount of rows. Default is NULL. |
progress_step_in_percent |
Number of percents that represent one step in progress. Value should be between 0.1 and 50. Default is 1 which means it will try to chunk the x into 100 pieces. |
progress_message_use_names |
Should we use names from |
quite |
Suppress all messages. Default is FALSE. |
save_intermediate_x_to_var |
For debuging of standartization procedures. Saves intermediate results to this variable. If procedures finish without errors then the variable will be removed. |
... |
Arguments passed on to
|
standardized data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.