LotkasXY: Multiplies Log base 10 of X and Log base 10 of Y

Description Usage Arguments Value Author(s) Examples

View source: R/LotkasXY.R

Description

Multiplies Log base 10 of X and Log base 10 of Y together and returns a table.

Usage

1
LotkasXY(Table)

Arguments

Table

Value

Returns a table of X*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 <- (Table[, 3:3] * Table[, 4:4])
    return(value)
  }

Example output

function (Table) 
{
    value <- (Table[, 3:3] * Table[, 4:4])
    return(value)
}

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