cdf {datana} | R Documentation |
Computes the cumulative distribution for a given random variable
Description
Cumulative distribution for a given random variable.
Usage
cdf(y = y)
Arguments
y |
a vector of a random variable |
Details
The cumulative distribution of the random variable is build every 5 the data at hand, that is to say, from 0.05 (i.e., 5
Value
The function returns a dataframe having two columns: the first contains the random variable values and the second the cumulative distribution for the variable.
Author(s)
Christian Salas-Eljatib
Examples
y.var <- rnorm(10)
cdf(y.var)
[Package datana version 1.0.5 Index]