Created
October 9, 2020 18:08
-
-
Save ilessing/5746fd6b11ff3b912e45d43749426f34 to your computer and use it in GitHub Desktop.
r-lang data frame sample
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
cats <- data.frame( | |
coat = c("calico", "black", "tabby"), | |
weight = c(2.1, 5.0, 3.2), | |
likes_string = c(TRUE, FALSE, TRUE) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment