Created
June 12, 2015 01:05
-
-
Save andrewbtran/9acf9fd2cae7470082e7 to your computer and use it in GitHub Desktop.
head and foot 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
# Look at the first five rows in the Console | |
head(earnings) | |
# Alternatively, to look at the last five rows | |
foot(earnings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you meant to put
tail(earnings)
!