read_data {RTextTools} | R Documentation |
reads data from files into an R data frame.
Description
Reads data from several types of data storage types into an R data frame.
Usage
read_data(filepath, type=c("csv","delim","folder"), index=NULL, ...)
Arguments
filepath |
Character string of the name of the file or folder, include path if the file is not located in the working directory. |
type |
Character vector specifying the file type. Options include |
index |
The path to a CSV file specifying the training label of each file in the folder of text files, one per line. An example of one line would be |
... |
Other arguments passed to R's |
Value
An data.frame
object is returned with the contents of the file.
Author(s)
Loren Collingwood, Timothy P. Jurka
Examples
library(RTextTools)
data <- read_data(system.file("data/NYTimes.csv.gz",package="RTextTools"),type="csv",sep=";")