R/mypvalue.R

Defines functions mypvalue

Documented in mypvalue

#' My bootstrap p-value
#'
#' Calculates p-value, rejection regions, and plots the t-distribution for a given t-value.
#'
#' Given a calculated t-value and the size of the sample used to calculate it, returns a plot of the t-distribution, the rejection quantile, and the p-value.
#'
#' @param t0 the calculated t-statistic
#' @param xmax the maximum x value to include on the plot
#' @param n the size of the sample used to calculate the t-statistic
#' @param alpha used to define the width of the confidence interval as 1-alpha
#'
#' @return q, quantile of the rejection region
#' @return p, the p-value
#' @export
#'
#' @examples
#' t0 = 2;mypvalue(t0=t0)
mypvalue=function(t0,xmax=4,n=20, alpha=0.05){
  #calculate alpha/2
  va=round(pt(-t0,df=n-1),4)
  pv=2*va

  # plot the t dist
  curve(dt(x,df=n-1),xlim=c(-xmax,xmax),ylab="T Density",xlab=expression(t),
        main=substitute(paste("P-value=", pv, " alpha=", alpha)))


  # set up points on the polygon to the right
  xcurve=seq(t0,xmax,length=1000)
  ycurve=dt(xcurve,df=n-1)

  # set up points to the left
  xlcurve=seq(-t0,-xmax,length=1000)
  ylcurve=dt(xcurve,df=n-1)

  # Shade in the polygon defined by the line segments
  polygon(c(t0,xcurve,xmax),c(0,ycurve,0),col="green")
  polygon(c(-t0,xlcurve,-xmax),c(0,ylcurve,0),col="green")

  # make quantiles
  q=qt(1-alpha/2,n-1)
  abline( v=c(q,-q),lwd=2) # plot the cut off t value
  axis(3,c(q,-q),c(expression(abs(t[alpha/2])),expression(-abs(t[alpha/2]))))


  # Annotation
  text(0.5*(t0+xmax),max(ycurve),substitute(paste(area, "=",va)))
  text(-0.5*(t0+xmax),max(ycurve),expression(area))

  return(list(q=q,pvalue=pv))
}
Nat-Geo/math4753 documentation built on April 16, 2020, 12:35 a.m.