Learn R Programming

flattabler (version 1.2.0)

read_text_file: Import text file

Description

Reads a text file and creates a pivot_table object. The file is expected to contain one or more pivot tables. Each line in the file corresponds to a row in a table; within each row, columns are defined by a separator character. The file name is included as part of the object attributes.

Usage

read_text_file(file, sep = ";", encoding = "UTF-8")

Value

A pivot_table object.

Arguments

file

A string, name of a text file.

sep

Column separator character.

encoding

A string, encoding to be assumed for input strings.

Details

When multiple files are handled, the file name may contain information associated with the pivot table, it could be the table page information. In order not to lose this information, it is always stored in the pivot_table object.

See Also

Other import functions: pivot_table(), read_excel_file(), read_excel_folder(), read_excel_sheet(), read_text_folder()

Examples

Run this code
file <- system.file("extdata", "csv/ine2871.csv", package = "flattabler")
pt <- read_text_file(file)

Run the code above in your browser using DataLab