forked from quanteda/quanteda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextplot_influence.Rd
34 lines (31 loc) · 932 Bytes
/
textplot_influence.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/textplot_influence.R
\name{textplot_influence}
\alias{textplot_influence}
\title{Influence plot for text scaling models}
\usage{
textplot_influence(x, n = 30, ...)
}
\arguments{
\item{x}{the object output from `influence()` run on the
fitted or predicted scaling model object to be plotted}
\item{n}{the number of features whose influence will be plotted}
\item{...}{additional arguments passed to \code{\link{plot}}}
}
\description{
Plot the results of a fitted scaling model, from (e.g.) a predicted
\link{textmodel_affinity} model.
}
\examples{
tmod <- textmodel_affinity(data_dfm_lbgexample, y = c("L", NA, NA, NA, "R", NA))
pred <- predict(tmod)
textplot_influence(influence(pred))
}
\seealso{
\code{\link{textmodel_affinity}}
\code{\link{influence.predict.textmodel_affinity}}
}
\author{
Patrick Perry and Kenneth Benoit
}
\keyword{textplot}