File: triplot.Rd

package info (click to toggle)
r-cran-learnbayes 2.15.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,864 kB
  • sloc: sh: 15; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (4)
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
\name{triplot}
\alias{triplot}
\title{Plot of prior, likelihood and posterior for a proportion}
\description{
For a proportion problem with a beta prior, plots the prior, likelihood and posterior
on one graph.
}
\usage{
triplot(prior,data,where="topright")
}
\arguments{
  \item{prior}{vector of parameters for beta prior}
  \item{data}{vector consisting of number of successes and number of
  failures}
  \item{where}{the location of the legend for the plot}
}

\author{Jim Albert}

\examples{
prior=c(3,10)  # proportion has a beta(3, 10) prior
data=c(10,6)   # observe 10 successes and 6 failures
triplot(prior,data)
}

\keyword{models}