Created
May 7, 2020 08:19
-
-
Save VictorOmondiCDS/9fd628cba176b5c7fe90e8909fb2cf0c to your computer and use it in GitHub Desktop.
Data types in R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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