Learn R Programming

finalfit (version 1.0.8)

variable_type: Determine type/class of a variable

Description

Determine type/class of a variable

Usage

variable_type(.var)

Value

One of "factor", "character", "numeric", "logical", "date".

Arguments

.var

A vector, data frame column, or equivalent.

Examples

Run this code
var_d = as.Date("12.03.18", "%d.%m.%y")
var_f = factor(c("yes", "no"))
var_c = c("yes", "no")
var_n = 1:10
var_l = as.logical(c("true", "false"))
variable_type(var_d)
variable_type(var_f)
variable_type(var_c)
variable_type(var_n)
variable_type(var_l)

Run the code above in your browser using DataLab