R/mypvalue.R

Defines functions mypvalue

Documented in mypvalue

#' mypvalue
#'
#' When given a t0 it calculates alpha/2 and graphs the distribution
#'
#' This is a function created in the Math4753 package that when given parameters of alpha and t0 it will graph the p-value and display p-values areas
#'
#' @param t0 tcalc param
#' @param alpha the value of alpha
#' @param xmax maximum x
#' @param n number of values
#'
#' @return a list with the q and p-value
#' @export
#'
#' @examples
#' mypvalue=function(t0,xmax=4,n=20, alpha=0.05)
#' #
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))
}
lukedlw/math4753ward0018 documentation built on April 28, 2020, 6:07 a.m.