discrete: Function to discretize in silico generated data

Usage Arguments Examples

Usage

1
discrete(observations, n)

Arguments

observations
n

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 (observations, n) 
{
    "make realistic observations by discretization of simulated data."
    result <- observations[seq(1, nrow(observations), by = n), 
        ]
    return(result)
  }

lkshrsch/gLVInterNetworks documentation built on May 21, 2019, 7:33 a.m.