LotkasLogX: Generate a Log 10(of X from Table)

Description Usage Arguments Value Author(s) Examples

View source: R/LotkasLogX.R

Description

Generates a table of Log base 10 of X

Usage

1
LotkasLogX(Table)

Arguments

Table

The table being imported containing Papers and Authors

Value

Returns a Column with Log base 10 of X.

Author(s)

Kenneth

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[, 1:1], base = 10)
    return(value)
  }

Example output

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

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