Get column classes.

replyr_colClasses(x)

Arguments

x

tbl or item that can be coerced into such.

Value

list of column classes.

Examples

d <- data.frame(x=c(1,2)) replyr_colClasses(d)
#> $x #> [1] "numeric" #>