Created
April 16, 2012 18:10
-
-
Save geofferyzh/2400436 to your computer and use it in GitHub Desktop.
RinAction - R Importing Data - Keyboard
This file contains 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 in Action - Importing Data # | |
#-----------------------------------------------------------------------------# | |
#-----------------------------------------------------------------------------# | |
######################################## | |
# Entering Data from Keyboard # | |
######################################## | |
mydata <- data.frame(age=numeric(0), gender=character(0),weight=numeric(0)) | |
str(mydata) | |
mydata <- edit(mydata) | |
fix(mydata) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment