You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mamlr/man/dfm_gen.Rd

27 lines
853 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dfm_gen.R
\name{dfm_gen}
\alias{dfm_gen}
\title{Generates dfm from ElasticSearch output}
\usage{
dfm_gen(out, words = "999", text = "lemmas", clean)
}
\arguments{
\item{out}{The elasticizer-generated data frame}
\item{words}{String indicating the number of words to keep from each document (maximum document length), 999 indicates the whole document}
\item{text}{String indicating whether the "merged" field will contain the "full" text, old-style "lemmas" (will be deprecated), new-style "ud"}
\item{clean}{Boolean indicating whether the results should be cleaned by removing words matching regex (see code). Lemmatized output is always cleaned!}
}
\value{
A Quanteda dfm
}
\description{
Generates dfm from ElasticSearch output
}
\examples{
dfm_gen(out, words = '999')
}