Created
December 11, 2014 16:23
-
-
Save thoolihan/221e83623d330744809b to your computer and use it in GitHub Desktop.
select example
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
R> library(dplyr) | |
R> d <- data.frame(a=c(1,2,3), b=c(4,5,6)) | |
R> select(d, -a) | |
b | |
1 4 | |
2 5 | |
3 6 | |
R> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment