зеркало из https://github.com/microsoft/wpa.git
80 строки
2.3 KiB
R
80 строки
2.3 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/meeting_tm_report.R
|
|
\name{meeting_tm_report}
|
|
\alias{meeting_tm_report}
|
|
\title{Generate a Meeting Text Mining report in HTML}
|
|
\usage{
|
|
meeting_tm_report(
|
|
data,
|
|
path = "meeting text mining report",
|
|
stopwords = NULL,
|
|
timestamp = TRUE,
|
|
keep = 100,
|
|
seed = 100
|
|
)
|
|
}
|
|
\arguments{
|
|
\item{data}{A Meeting Query dataset in the form of a data frame.}
|
|
|
|
\item{path}{Pass the file path and the desired file name, \emph{excluding the file
|
|
extension}. For example, \code{"meeting text mining report"}.}
|
|
|
|
\item{stopwords}{A character vector OR a single-column data frame labelled
|
|
\code{'word'} containing custom stopwords to remove.}
|
|
|
|
\item{timestamp}{Logical vector specifying whether to include a timestamp in
|
|
the file name. Defaults to TRUE.}
|
|
|
|
\item{keep}{A numeric vector specifying maximum number of words to keep.}
|
|
|
|
\item{seed}{A numeric vector to set seed for random generation.}
|
|
}
|
|
\value{
|
|
An HTML report with the same file name as specified in the arguments is
|
|
generated in the working directory. No outputs are directly returned by the
|
|
function.
|
|
}
|
|
\description{
|
|
Create a text mining report in HTML based on Meeting Subject Lines
|
|
}
|
|
\seealso{
|
|
Other Reports:
|
|
\code{\link{IV_report}()},
|
|
\code{\link{capacity_report}()},
|
|
\code{\link{coaching_report}()},
|
|
\code{\link{collaboration_report}()},
|
|
\code{\link{connectivity_report}()},
|
|
\code{\link{generate_report}()},
|
|
\code{\link{read_preamble}()},
|
|
\code{\link{subject_validate_report}()},
|
|
\code{\link{validation_report}()},
|
|
\code{\link{workpatterns_report}()}
|
|
|
|
Other Meetings:
|
|
\code{\link{meeting_dist}()},
|
|
\code{\link{meeting_extract}()},
|
|
\code{\link{meeting_fizz}()},
|
|
\code{\link{meeting_line}()},
|
|
\code{\link{meeting_quality}()},
|
|
\code{\link{meeting_rank}()},
|
|
\code{\link{meeting_skim}()},
|
|
\code{\link{meeting_summary}()},
|
|
\code{\link{meeting_trend}()},
|
|
\code{\link{meetingtype_dist_ca}()},
|
|
\code{\link{meetingtype_dist_mt}()},
|
|
\code{\link{meetingtype_dist}()},
|
|
\code{\link{meetingtype_summary}()}
|
|
|
|
Other Text-mining:
|
|
\code{\link{pairwise_count}()},
|
|
\code{\link{subject_validate_report}()},
|
|
\code{\link{subject_validate}()},
|
|
\code{\link{tm_clean}()},
|
|
\code{\link{tm_cooc}()},
|
|
\code{\link{tm_freq}()},
|
|
\code{\link{tm_wordcloud}()}
|
|
}
|
|
\concept{Meetings}
|
|
\concept{Reports}
|
|
\concept{Text-mining}
|