fix_coltypes: Automatically fix column types

View source: R/fix_coltypes.R

fix_coltypesR Documentation

Automatically fix column types

Description

Sometimes things that should be numbers get interpreted as strings (e.g. 1 vs. "1"). This function automatically inferred the best match for each column and reformats its column type accordingly.

Usage

fix_coltypes(dat)

Arguments

dat

A data.frame.

Value

A fixed data.frame

Examples

dat <- mtcars
dat$cyl <- as.character(dat$cyl)
dat$wt <- as.character(dat$wt)
dat$drat <- as.factor(dat$drat)

dat2 <- fix_coltypes(dat=dat)

RajLabMSSM/echodata documentation built on Nov. 21, 2023, 8 a.m.