Last active
November 14, 2017 09:32
-
-
Save verajosemanuel/d82702ba4a46f1c35846c45c72de40b2 to your computer and use it in GitHub Desktop.
head-tail #function for dataframes. Place it in .Rprofile to be available anytime in #Rstudio
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
ht <- function(d) rbind(head(d,5), tail(d,5)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment