umx (version 4.0.0)

umx_select_valid: Update NA values in one column with valid entries from another

Description

Merge valid entries from two columns

Usage

umx_select_valid(col1, col2, bothways = FALSE, data)

Arguments

col1

name of the first column

col2

name of the second column

bothways

Whether to replace from 1 to 2 as well as from 2 to 1

data

The dataframe containing the two columns.

Value

  • Updated dataframe

See Also

Other Data Functions: umxFactor(), umxHetCor(), umx_as_numeric(), umx_cont_2_quantiles(), umx_lower2full(), umx_make_MR_data(), umx_make_TwinData(), umx_make_fake_data(), umx_make_raw_from_cov(), umx_polychoric(), umx_polypairwise(), umx_polytriowise(), umx_read_lower(), umx_rename(), umx_reorder(), umx_stack(), umx

Examples

Run this code
# NOT RUN {
tmp = mtcars
tmp$newDisp = tmp$disp
tmp$disp[c(1,3,6)] = NA
anyNA(tmp$disp) # column has NAs
tmp = umx_select_valid("disp", "newDisp", data = tmp)
anyNA(tmp$disp) # column repaired
# }

Run the code above in your browser using DataLab