fBasics (version 4032.96)

rowStats: Row statistics

Description

Functions to compute row statistical properties of financial and economic time series data.

The functions are:

rowStatscalculates row statistics,
rowSdscalculates row standard deviations,
rowVarscalculates row variances,
rowSkewnesscalculates row skewness,
rowKurtosiscalculates row kurtosis,
rowMaxscalculates maximum values in each row,
rowMinscalculates minimum values in each row,
rowProdscomputes product of all values in each row,
rowQuantilescomputes quantiles of each row.

Usage

rowStats(x, FUN, ...) 

rowSds(x, ...) rowVars(x, ...) rowSkewness(x, ...) rowKurtosis(x, ...) rowMaxs(x, ...) rowMins(x, ...) rowProds(x, ...) rowQuantiles(x, prob = 0.05, ...)

rowStdevs(x, ...) rowAvgs(x, ...)

Value

each function returns a numeric vector of the statistics

Arguments

FUN

a function name, the statistical function to be applied.

prob

a numeric value, the probability with value in [0,1].

x

a rectangular object which can be transformed into a matrix by the function as.matrix.

...

arguments to be passed.

See Also

colStats

Examples

Run this code
## Simulated Return Data in Matrix Form:
   x = matrix(rnorm(10*10), nrow = 10)
     
## rowStats -
   rowStats(x, FUN = mean)
   
## rowMaxs -
   rowMaxs(x)  

Run the code above in your browser using DataLab