ChiSquareTail: Plot upper tail in chi-square distribution

View source: R/ChiSquareTail.R

ChiSquareTailR Documentation

Plot upper tail in chi-square distribution

Description

Plot a chi-square distribution and shade the upper tail.

Usage

ChiSquareTail(
  U,
  df,
  xlim = c(0, 10),
  col = fadeColor("black", "22"),
  axes = TRUE,
  ...
)

Arguments

U

Cut off for the upper tail.

df

Degrees of freedom.

xlim

Limits for the plot.

col

Color of the shading.

axes

Whether to plot an x-axis.

...

Currently ignored.

Value

Nothing is returned from the function.

Author(s)

David Diez

See Also

normTail

Examples


data(COL)
ChiSquareTail(11.7,
  7,
  c(0, 25),
  col = COL[1]
)

openintro documentation built on Sept. 1, 2022, 9:06 a.m.