NTplot | R Documentation |
Specify plots to illustrate Normal and t Hypothesis Tests or Confidence Intervals, including normal approximation to the binomial.
NTplot(mean0, ...)
## Default S3 method:
NTplot(mean0=0, ..., shiny=FALSE,
distribution.name = c("normal","z","t","binomial"))
## S3 method for class 'htest'
NTplot(mean0, ..., shiny=FALSE, NTmethod="htest")
## S3 method for class 'power.htest'
NTplot(mean0, ..., shiny=FALSE, xbar=NA, ## these input values are used
mean1, n, df, sd, distribution.name, sub, ## these input values ignored
alpha.left, alpha.right, number.vars) ## these input values ignored
## NTplot(NTplot(htest.object), n=20) ## allows override of arguments
## S3 method for class 'NormalAndTplot'
NTplot(mean0, ..., shiny=FALSE)
mean0 |
For the default method, |
xbar |
See |
... |
Other arguments, selected from the options for the
default method |
shiny |
Logical. If |
htest |
logical. |
mean1 , n , df , sd , sub , alpha.left , alpha.right , number.vars |
These variables are ignored here. They
are captured so they won't interfere with similarly named variables
that are generated in the |
distribution.name |
Ignored by |
NTmethod |
Character string used when |
The graphs produced by this single function cover most of the first semester
introductory Statistics course.
All options of the t.test
, power.t.test
, and z.test
are accepted and displayed.
NTplot
is built on xyplot
.
Most of the arguments detailed in xyplot
documentation work to
control the appearance of the plot.
The shiny app (called when the argument shiny=TRUE
)
provides animated sliders for the means, standard
deviation, xlimits, significance levels, df, and n. The df and n are
rounded to integers for the sliders (relevant for htest
and
power.htest
objects). Checkboxes and Radio buttons are available
for
various display options
When you have a graph on the shiny window that you wish to keep, click on the "Display Options" tab, and then on the "Display Call" radio button. The main shiny window will show an R command which will reproduce the current plot. Pick it up with the mouse and drop it into an R console window.
To get out of the shiny window and return to an interactive R console,
move the cursor back to the console window and interrupt the shiny call, usually
by entering Ctrl-C
or ESC
.
"trellis"
object. The object can be plotted or fed back into the
NTplot
function with argument shiny=TRUE
to allow
interactive graphical investigation of the hypothesis test or confidence
interval.
The attributes of the object\
NTobj <- NTplot()
\
attr(NTobj, "scales")
and attr(NTobj, "prob")
make the
data values and probability values accessible for further R
computations.
The "call"
attribute
cat(attr(NT.object, "call"), "\n")
displays a statement that can be copied back into R to reproduce the graph.
The cat()
is needed to unescape embedded quotes.
The "call.list"
attribute
attr(NT.object, "call.list")
is a list that can be used with do.call
to reproduce the graph.
do.call(NTplot, attr(NT.object, "call.list"))
. This is usually
not needed by the user because the simpler statement
NTplot(NT.object)
does it for you.
This function is built on lattice and latticeExtra.
It supersedes the similar function
normal.and.t.dist
built on base graphics that is used in many
displays in the book by Erich Neuwirth and me: R through Excel, Springer
(2009).
https://link.springer.com/book/10.1007/978-1-4419-0052-4. Many details,
particularly the
alternate color scheme and the concept of floating probability labels,
grew out of discussions that Erich and I have had since the book was
published.
It incorporates ideas that Jay Kerns and I developed at the 2011 UseR! conference.
This version incorporates some ideas suggested by Moritz Heene.
Richard M. Heiberger (rmh@temple.edu)
NormalAndTplot
, print.NormalAndTplot
.
x1 <- rnorm(12)
x2 <- rnorm(12, mean=.5)
NT.object <- NTplot(mean0=0, mean1=1)
NT.object
attr(NT.object, "scales")
attr(NT.object, "prob")
cat(attr(NT.object, "call"), "\n") ## the cat() is needed to unescape embedded quotes.
NTplot(t.test(x1, x2))
NTplot(power.t.test(power = .90, delta = 1, alternative = "one.sided"))
## Not run:
## 22 distinct calls are shown in
demo(NTplot, ask=FALSE)
## End(Not run)
## Not run: ## these are interactive and do not work in static checking of the code
if (interactive())
NTplot(mean0=0, mean1=1, shiny=TRUE)
if (interactive())
NTplot(shiny=TRUE, px.height=475) ## default value is 575
if (interactive())
NTplot(t.test(x1, x2), shiny=TRUE, mean1=1)
if (interactive())
NTplot(power.t.test(power = .90, delta = 1, alternative = "one.sided"), shiny=TRUE)
if (interactive())
NTplot(NT.object, shiny=TRUE)
## run the shiny app
if (interactive()) shiny::runApp(system.file("shiny/NTplot", package="HH"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.