CV: Runs Critical Value

Description Usage Arguments Value Author(s) Examples

View source: R/CV.R

Description

Runs Critical Value for Desired Data (in this case Sums). Assumes 1.63 Value.

Usage

1
CV(Sums)

Arguments

Sums

A Sumed Table of the Data Being Run Through Lotkas Law.

Value

The Value Returned is the Critical Value From the Data Inputted (as Sums)

Author(s)

Kenneth Buker

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (Sums) 
{
    bottom <- sqrt(Sums[2])
    top <- 1.63
    answer <- top/bottom
    return(answer)
  }

Example output

function (Sums) 
{
    bottom <- sqrt(Sums[2])
    top <- 1.63
    answer <- top/bottom
    return(answer)
}

LotkasLaw documentation built on May 2, 2019, 8:54 a.m.