blob: 381adb0d0634eb31375c4361a92911f7b791c553 [file] [log] [blame]
Marc Kupietzdcc1de62019-10-04 09:10:36 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/ci.R
3\name{ci}
4\alias{ci}
5\title{Add confidence interval and relative frequency variables}
6\usage{
7ci(df, x = totalResults, N = tokens, conf.level = 0.95)
8}
9\arguments{
10\item{df}{table with columns for absolute and total frequencies.}
11
12\item{x}{column with the observed absolute frequency.}
13
14\item{N}{column with the total frequncies}
15
16\item{conf.level}{confidence level of the returned confidence interval. Must
17be a single number between 0 and 1.}
18}
19\description{
20Using \code{\link{prop.test}}, \code{ci} adds three columns to a data frame:
Marc Kupietz3f575282019-10-04 14:46:04 +0200211. relative frequency (\code{f})
222. lower bound of a confidence interval (\code{ci.low})
233. upper bound of a confidence interval
Marc Kupietzdcc1de62019-10-04 09:10:36 +020024}
25\examples{
26library(ggplot2)
27kco <- new("KorAPConnection", verbose=TRUE)
28expand_grid(year=2015:2018, alternatives=c("Hate Speech", "Hatespeech")) \%>\%
29 bind_cols(corpusQuery(kco, .$alternatives, sprintf("pubDate in \%d", .$year))) \%>\%
30 mutate(tokens=corpusStats(kco, vc=vc)$tokens) \%>\%
31 ci() \%>\%
32 ggplot(aes(x=year, y=f, fill=query, color=query, ymin=conf.low, ymax=conf.high)) +
33 geom_point() + geom_line() + geom_ribbon(alpha=.3)
34
35}
Marc Kupietz3f575282019-10-04 14:46:04 +020036\seealso{
37\code{ci} is alread included in \code{\link{frequencyQuery}}
38}