R/sign.star.R

Defines functions sign.star

sign.star <- function(y)
{
  if(y <= 0.001)
    y <- "***"
  if(y > 0.001 && y <= 0.01)
    y <- "**"
  if(y > 0.01 && y <= 0.05)
    y <- "*"
  if(y > 0.05 && y <= 0.1)
    y <- "."
  if(y > 0.1)
    y <- " "
  return(y)
}

Try the GENMETA package in your browser

Any scripts or data that you put into this service are public.

GENMETA documentation built on Dec. 1, 2022, 1:25 a.m.