├── DESCRIPTION ├── NAMESPACE ├── R ├── Attribution.geometric.R ├── AttributionFixedIncome.R ├── Carino.R ├── Conv.option.R ├── DaviesLaker.R ├── Frongello.R ├── Grap.R ├── HierarchyQuintiles.R ├── Menchero.R ├── Return.level.R ├── Weight.level.R ├── Weight.transform.R ├── attribution.R └── attribution.levels.R ├── data └── attrib.rda ├── inst └── doc │ ├── PortfolioAttribution.pdf │ ├── PortfolioAttribution.tex │ └── References.bib ├── man ├── Attribution.Rd ├── Attribution.geometric.Rd ├── Attribution.levels.Rd ├── AttributionFixedIncome.Rd ├── Carino.Rd ├── Conv.option.Rd ├── DaviesLaker.Rd ├── Frongello.Rd ├── Grap.Rd ├── HierarchyQuintiles.Rd ├── Menchero.Rd ├── Return.level.Rd ├── Weight.level.Rd ├── Weight.transform.Rd └── attrib.Rd └── test_suite.R /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Attribution.geometric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Attribution.geometric.R -------------------------------------------------------------------------------- /R/AttributionFixedIncome.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/AttributionFixedIncome.R -------------------------------------------------------------------------------- /R/Carino.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Carino.R -------------------------------------------------------------------------------- /R/Conv.option.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Conv.option.R -------------------------------------------------------------------------------- /R/DaviesLaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/DaviesLaker.R -------------------------------------------------------------------------------- /R/Frongello.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Frongello.R -------------------------------------------------------------------------------- /R/Grap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Grap.R -------------------------------------------------------------------------------- /R/HierarchyQuintiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/HierarchyQuintiles.R -------------------------------------------------------------------------------- /R/Menchero.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Menchero.R -------------------------------------------------------------------------------- /R/Return.level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Return.level.R -------------------------------------------------------------------------------- /R/Weight.level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Weight.level.R -------------------------------------------------------------------------------- /R/Weight.transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/Weight.transform.R -------------------------------------------------------------------------------- /R/attribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/attribution.R -------------------------------------------------------------------------------- /R/attribution.levels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/R/attribution.levels.R -------------------------------------------------------------------------------- /data/attrib.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/data/attrib.rda -------------------------------------------------------------------------------- /inst/doc/PortfolioAttribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/inst/doc/PortfolioAttribution.pdf -------------------------------------------------------------------------------- /inst/doc/PortfolioAttribution.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/inst/doc/PortfolioAttribution.tex -------------------------------------------------------------------------------- /inst/doc/References.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/inst/doc/References.bib -------------------------------------------------------------------------------- /man/Attribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Attribution.Rd -------------------------------------------------------------------------------- /man/Attribution.geometric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Attribution.geometric.Rd -------------------------------------------------------------------------------- /man/Attribution.levels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Attribution.levels.Rd -------------------------------------------------------------------------------- /man/AttributionFixedIncome.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/AttributionFixedIncome.Rd -------------------------------------------------------------------------------- /man/Carino.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Carino.Rd -------------------------------------------------------------------------------- /man/Conv.option.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Conv.option.Rd -------------------------------------------------------------------------------- /man/DaviesLaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/DaviesLaker.Rd -------------------------------------------------------------------------------- /man/Frongello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Frongello.Rd -------------------------------------------------------------------------------- /man/Grap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Grap.Rd -------------------------------------------------------------------------------- /man/HierarchyQuintiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/HierarchyQuintiles.Rd -------------------------------------------------------------------------------- /man/Menchero.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Menchero.Rd -------------------------------------------------------------------------------- /man/Return.level.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Return.level.Rd -------------------------------------------------------------------------------- /man/Weight.level.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Weight.level.Rd -------------------------------------------------------------------------------- /man/Weight.transform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/Weight.transform.Rd -------------------------------------------------------------------------------- /man/attrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/man/attrib.Rd -------------------------------------------------------------------------------- /test_suite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Finance/PortfolioAttribution/HEAD/test_suite.R --------------------------------------------------------------------------------