Learn R Programming

stylo (version 0.5.7)

load.corpus: Load text files

Description

Function for loading text files from a specified directory.

Usage

load.corpus(files, corpus.dir = "", encoding = "native.enc")

Arguments

files
a vector of file names.
corpus.dir
a directory containing the text files to be loaded; if not specified, the current working directory will be used.
encoding
useful if you use Windows and non-ASCII alphabets: French, Polish, Hebrew, etc. In such a situation, it is quite convenient to convert your text files into Unicode and to set this option to encoding = "UTF-8". In Linux and Mac, y

Value

  • The function returns an object of the class stylo.corpus. It is a list containing as elements the texts loaded.

See Also

stylo, classify, rolling.delta, oppose, txt.to.words

Examples

Run this code
# to load file1.txt and file2.txt, stored in the subdirectory my.files:
my.corpus = load.corpus(corpus.dir = "my.files",
                        files = c("file1.txt", "file2.txt") )

# to load all XML files from the current directory:
my.corpus = load.corpus(files = list.files(pattern="[.]xml$") )

Run the code above in your browser using DataLab