summary {pa} | R Documentation |
Provide a summary for Brinson or regression analysis
Description
Summarize a portfolio and its benchmark. Present the attribution
information including basic portfolio information, expsosures, and
returns. The input can be any of the four class objects including
brinson
, brinsonMulti
, regression
, and
regressionMulti
.
Usage
summary(object, ...)
Arguments
object |
An object of |
... |
Other options. |
Value
Return relevant information about a portfolio and its benchmark. It includes their exposures based on input categories (for Brinson analysis only) and the results of either Brinson analysis or regression analysis.
Author(s)
Yang Lu Yang.Lu@williams.edu
Examples
## Single-period brinson analysis
data(jan)
p1 <- brinson(x = jan, date.var = "date", cat.var = "sector",
bench.weight = "benchmark", portfolio.weight = "portfolio", ret.var
= "return")
summary(p1)
## Multi-period brinson analysis
data(quarter)
p2 <- brinson(x = quarter, date.var = "date", cat.var = "sector",
bench.weight = "benchmark", portfolio.weight = "portfolio", ret.var =
"return")
summary(p2)
[Package pa version 1.2-4 Index]