Learn R Programming

LotkasLaw (version 0.0.1.0)

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

Description

Generates a table of Log base 10 of X

Usage

LotkasLogX(Table)

Arguments

Table
The table being imported containing Papers and Authors

Value

Returns a Column with Log base 10 of X.

Examples

Run this code
##---- 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)
  }

Run the code above in your browser using DataLab