Quickload-R Installation and Use
- Windows Installation
- Save the zip file on your computer
- Open R
- Choose Install from local zip file under the Packages menu
- Navigate to where you saved the file and select the file.
- After it installs, choose Load Package from the Packages menu and then Quickload to load the package.
- Using QuickLoad-R
- The R function of interest is quickLoad, which takes the
name of the stdf file as its only required parameter. Make sure you double any
backslashes in the file name because of an R requirement, like this
mydataset <- quickLoad("c:\\work\\myfile.stdf")
or
mydataset <- quickLoad(list("c:\\work\\myfile.stdf","c:\\work\\myotherfile.stdf"))
- Type ?quickLoad for additional information about the syntax of quickLoad
- Type ?quickLoadLimits for information about creating a data frame containing your test limits.