Skip to content

Instantly share code, notes, and snippets.

@VictorOmondi1997
Created May 7, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VictorOmondi1997/9fd628cba176b5c7fe90e8909fb2cf0c to your computer and use it in GitHub Desktop.
Save VictorOmondi1997/9fd628cba176b5c7fe90e8909fb2cf0c to your computer and use it in GitHub Desktop.
Data types in R
my_age = 14
class(my_age)
my_weight = 90.6
class(my_weight)
my_name = "Victor" #Note how the quotation marks on the right indicate that "Victor" is a character
class(my_name)
is_teenager = TRUE
class(is_teanager)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment