Learn R Programming

RTextTools (version 1.3.8)

read_data: 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 csv, delim, and folder to denote .csv files, delimited files (tab, pipe, etc.) files, or folders of text files. If using the delim option, be su
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 1.txt,1. Do not include the full file path for each file, that will be handled automatically using th
...
Other arguments passed to R's read.csv function.

Value

  • An data.frame object is returned with the contents of the file.

Examples

Run this code
library(RTextTools)
data <- read_data(system.file("data/NYTimes.csv.gz",package="RTextTools"),type="csv")

Run the code above in your browser using DataLab