Skip to content

Instantly share code, notes, and snippets.

@ilessing
Created October 9, 2020 18:08
Show Gist options
  • Save ilessing/5746fd6b11ff3b912e45d43749426f34 to your computer and use it in GitHub Desktop.
Save ilessing/5746fd6b11ff3b912e45d43749426f34 to your computer and use it in GitHub Desktop.
r-lang data frame sample
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