Skip to content

Latest commit

 

History

History
44 lines (22 loc) · 534 Bytes

types-class.md

File metadata and controls

44 lines (22 loc) · 534 Bytes
description
⚠️ THIS IS A WORK IN PROGRESS

Types / Class & packages x

Its good practice to check that you are dealing with

How do you check an object type?

you should use a class function(). here are some examples

x <- 2
class(x)
# should display "numeric"

y <- "2"
class(y)
# should display "character"

the classic types

data frames

xml_document

advanced types

Classic Packages

see why packages matters

Lubridate