easy.load {erp.easy} | R Documentation |
An even easier way to import your data!
Description
easy.load
generates the code required to import your data by
asking questions from the R console
Usage
easy.load()
Details
easy.load
will begin the import wizard. A series of
questions presented from the R console will ask for the necessary
information to import your data in a user-friendly way. See
load.data
for parameter definitions and conventions
for how to answer easy.load
questions if you get stuck.
easy.load
uses an interactive window to locate files
to create the path name. The window usually appears BEHIND
the R session and other open programs, so minimize open
windows until the interactive pop-up window is visible. After
you browse to your file location, bring the R session window
back up to continue.
Follow any instructions accompanying the questions exactly, as some prompts require a very specific answer format.
Value
A complete line of code ready to be copy/pasted into the command line or R script
Author(s)
Travis Moore
Examples
## Not run:
# example output from easy.load (after answering questions)
myData = load.data('/Users/Username/Folder/', 'Positive', 20, -200, 899, 'n', FALSE)
## End(Not run)