norm_internal_adjust {OlinkAnalyze} | R Documentation |
The function is used by norm_internal_subset
and
norm_internal_bridge
to combine the reference dataset that has
Adj_factor = 0
and the non-reference dataset that used the adjustment
factors provided in adj_fct_df
.
norm_internal_adjust(
ref_df,
ref_name,
ref_cols,
not_ref_df,
not_ref_name,
not_ref_cols,
adj_fct_df
)
ref_df |
The reference dataset to be used in normalization (required). |
ref_name |
Project name of the reference dataset (required). |
ref_cols |
Named list of column names in the reference dataset (required). |
not_ref_df |
The non-reference dataset to be used in normalization (required). |
not_ref_name |
Project name of the non-reference dataset (required). |
not_ref_cols |
Named list of column names in the non-reference dataset (required). |
adj_fct_df |
Dataset containing the adjustment factors to be applied to the non-reference dataset for (required). |
The function calls norm_internal_adjust_ref
and
norm_internal_adjust_not_ref
and combines their outputs.
Tibble or ArrowObject with the normalized dataset.
Klev Diamanti