Learn R Programming

RPESE (version 1.2.5)

printSE: Formatted Output for Standard Errors Functions in RPESE

Description

printSE returns a formatted output from standard error functions from RPESE.

Usage

printSE(SE.data, round.digit = 3, round.out = TRUE)

Value

A data frame with formatted output from standard error functions from RPESE.

Arguments

SE.data

Standard error estimates output from RPESE functions.

round.digit

Number of digits for rounding.

round.out

Round data (TRUE) with round.digit number of digits. Default is TRUE.

Author

Xin Chen, chenx26@uw.edu

Anthony-Alexander Christidis, anthony.christidis@stat.ubc.ca

Examples

Run this code
# Loading data
data(edhec, package = "PerformanceAnalytics")
# Changing the data colnames
names(edhec) = c("CA", "CTA", "DIS", "EM", "EMN",
                 "ED", "FIA", "GM", "LS", "MA",
                 "RV", "SS", "FOF")
# Computing the standard errors for
# the two influence functions based approaches
ES.out <- ES.SE(edhec, se.method = c("IFiid","IFcor"),
                cleanOutliers = FALSE,
                fitting.method = c("Exponential", "Gamma")[1])
# Print the output
printSE(ES.out)

Run the code above in your browser using DataLab