LotkasLogY: Generates a Table of Log base 10 of Y

Description Usage Arguments Value Author(s) Examples

View source: R/LotkasLogY.R

Description

This forumla is to create the Log base 10 of Y

Usage

1
LotkasLogY(Table)

Arguments

Table

Table imported containing Papers and Authors.

Value

Returned value is a Column containing Log base 10 of Y

Author(s)

Kenneth Buker

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
##---- 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 (Table) 
{
    value <- log(Table[, 2:2], base = 10)
    return(value)
  }

Example output

function (Table) 
{
    value <- log(Table[, 2:2], base = 10)
    return(value)
}

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