umx (version 4.0.0)

umx_as_numeric: umx_as_numeric

Description

Convert each column of a dataframe to numeric

Usage

umx_as_numeric(df, which = NULL, force = FALSE)

Arguments

df

A [data.frame()] to convert

which

which columns to convert (default (null) selects all)

force

Whether to force conversion to numeric for non-numeric columns (defaults to FALSE)

Value

- data.frame

References

- <https://www.github.com/tbates/umx>

See Also

Other Data Functions: umxFactor(), umxHetCor(), 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_select_valid(), umx_stack(), umx

Examples

Run this code
# NOT RUN {
df = mtcars
# make mpg into string, and cyl into a factor
df$mpg = as.character(df$mpg)
df$cyl = factor(df$cyl)

df = umx_as_numeric(df); str(df) # mpg not touched
df = umx_as_numeric(df, force=TRUE); str(df) # mpg coerced back to numeric
# }
# NOT RUN {
# coercing a real string will cause NAs
df$mpg = c(letters[1:16]); str(df) # replace mpg with letters.
df = umx_as_numeric(df, force=TRUE); str(df)
# }

Run the code above in your browser using DataLab