[Returnanalytics-commits] r3541 - in pkg/PerformanceAnalytics: . R man tests/Examples vignettes
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Sep 15 11:39:58 CEST 2014
Author: braverock
Date: 2014-09-15 11:39:58 +0200 (Mon, 15 Sep 2014)
New Revision: 3541
Modified:
pkg/PerformanceAnalytics/ChangeLog
pkg/PerformanceAnalytics/DESCRIPTION
pkg/PerformanceAnalytics/R/chart.BarVaR.R
pkg/PerformanceAnalytics/R/zzz.R
pkg/PerformanceAnalytics/man/chart.BarVaR.Rd
pkg/PerformanceAnalytics/tests/Examples/PerformanceAnalytics-Ex.Rout.save
pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw
pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsPresentation-UseR-2007.Rnw
Log:
- updates to pass R CMD check for CRAN, per Kurt Hornik
Modified: pkg/PerformanceAnalytics/ChangeLog
===================================================================
--- pkg/PerformanceAnalytics/ChangeLog 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/ChangeLog 2014-09-15 09:39:58 UTC (rev 3541)
@@ -1,5 +1,24 @@
+2014-09-14 braverock
+
+ * DESCRIPTION: - add Diethelm to 'ctb' designation
+ * R/zerofill.R: - remove Kris from copyright banner for zerofill,
+ Ross (and Brian) wrote this
+ * DESCRIPTION: - add Kris to 'cph' designation, per Kurt Hornick
+ for CRAN team
+ * man/PerformanceAnalytics-package.Rd: - add missing comma
+ * DESCRIPTION, man/PerformanceAnalytics-package.Rd: - move all
+ Thanks to the documentation, it is now against CRAN policies to
+ thank people in the DESCRIPTION file.
+ * DESCRIPTION: - change Authors and Contributors fields to
+ Authors at R to address yet another suggestion that is actually a
+ requirement from CRAN
+
2014-09-12 braverock
+ * .Rbuildignore, ChangeLog, DESCRIPTION, NEWS,
+ tests/Examples/PerformanceAnalytics-Ex.Rout.save: - minor updates
+ prior to CRAN submit
+ - bump version to 1.4.3534
* DESCRIPTION, NAMESPACE, man/AverageDrawdown.Rd: - minor updates
prior to CRAN release
Modified: pkg/PerformanceAnalytics/DESCRIPTION
===================================================================
--- pkg/PerformanceAnalytics/DESCRIPTION 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/DESCRIPTION 2014-09-15 09:39:58 UTC (rev 3541)
@@ -1,6 +1,6 @@
Package: PerformanceAnalytics
Type: Package
-Title: Econometric tools for performance and risk analysis.
+Title: Econometric tools for performance and risk analysis
Authors at R: c(
person(given=c("Brian","G."),family="Peterson",role=c("cre","aut","cph"), email="brian at braverock.com")
, person(given="Peter",family="Carl",role=c("aut","cph"), email="peter at braverock.com")
@@ -12,7 +12,7 @@
, person(given="Kyle",family="Balkissoon",role="ctb")
, person(given="Diethelm",family="Wuertz",role="ctb")
)
-Version: 1.4.3540
+Version: 1.4.3541
Date: $Date$
Description: Collection of econometric functions for
performance and risk analysis. This package aims to aid
Modified: pkg/PerformanceAnalytics/R/chart.BarVaR.R
===================================================================
--- pkg/PerformanceAnalytics/R/chart.BarVaR.R 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/R/chart.BarVaR.R 2014-09-15 09:39:58 UTC (rev 3541)
@@ -83,12 +83,16 @@
#' main="... with Empirical VaR from Inception")
#'
#' # with lines for all managers in the sample
+#'
#' chart.BarVaR(managers[,1:6],
#' methods="GaussianVaR",
#' all=TRUE, lty=1, lwd=2,
#' colorset= c("red", rep("gray", 5)),
#' main="... with Gaussian VaR and Estimates for Peers")
#'
+#' \dontrun{
+#' # not run on CRAN because of example time
+#'
#' # with multiple methods
#' chart.BarVaR(managers[,1,drop=FALSE],
#' methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
@@ -113,6 +117,7 @@
#' lwd=2, ypad=.01, clean="boudt",
#' show.horizontal=TRUE, lty=2,
#' main="... with Robust ModVaR and Line for Identifying Exceptions")
+#' }
#'
#' @rdname chart.BarVaR
#' @export
Modified: pkg/PerformanceAnalytics/R/zzz.R
===================================================================
--- pkg/PerformanceAnalytics/R/zzz.R 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/R/zzz.R 2014-09-15 09:39:58 UTC (rev 3541)
@@ -6,7 +6,9 @@
if(interactive() || getOption("verbose")) {
# not in test scripts
MSG(paste("\nPackage ", pkg, " (",dsc$Version,") loaded.\n",
- dsc$Title, "\n", dsc$Copyright, " ", dsc$Author, ". License: ", dsc$License, "\n", dsc$URL,
+ # dsc$Title, "\n",
+ "Copyright (c) 2004-2014 Peter Carl and Brian G. Peterson, ",
+ dsc$License, "\n", dsc$URL,
"\n", sep=""))
}
}
Modified: pkg/PerformanceAnalytics/man/chart.BarVaR.Rd
===================================================================
--- pkg/PerformanceAnalytics/man/chart.BarVaR.Rd 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/man/chart.BarVaR.Rd 2014-09-15 09:39:58 UTC (rev 3541)
@@ -120,12 +120,16 @@
main="... with Empirical VaR from Inception")
# with lines for all managers in the sample
+
chart.BarVaR(managers[,1:6],
methods="GaussianVaR",
all=TRUE, lty=1, lwd=2,
colorset= c("red", rep("gray", 5)),
main="... with Gaussian VaR and Estimates for Peers")
+\dontrun{
+# not run on CRAN because of example time
+
# with multiple methods
chart.BarVaR(managers[,1,drop=FALSE],
methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
@@ -151,6 +155,7 @@
show.horizontal=TRUE, lty=2,
main="... with Robust ModVaR and Line for Identifying Exceptions")
}
+}
\author{
Peter Carl
}
Modified: pkg/PerformanceAnalytics/tests/Examples/PerformanceAnalytics-Ex.Rout.save
===================================================================
--- pkg/PerformanceAnalytics/tests/Examples/PerformanceAnalytics-Ex.Rout.save 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/tests/Examples/PerformanceAnalytics-Ex.Rout.save 2014-09-15 09:39:58 UTC (rev 3541)
@@ -5248,43 +5248,45 @@
+ main="... with Empirical VaR from Inception")
>
> # with lines for all managers in the sample
+>
> chart.BarVaR(managers[,1:6],
+ methods="GaussianVaR",
+ all=TRUE, lty=1, lwd=2,
+ colorset= c("red", rep("gray", 5)),
+ main="... with Gaussian VaR and Estimates for Peers")
>
-> # with multiple methods
-> chart.BarVaR(managers[,1,drop=FALSE],
-+ methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
-+ main="... with Multiple Methods")
+> ## Not run:
+> ##D # not run on CRAN because of example time
+> ##D
+> ##D # with multiple methods
+> ##D chart.BarVaR(managers[,1,drop=FALSE],
+> ##D methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
+> ##D main="... with Multiple Methods")
+> ##D
+> ##D # cleaned up a bit
+> ##D chart.BarVaR(managers[,1,drop=FALSE],
+> ##D methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
+> ##D lwd=2, ypad=.01,
+> ##D main="... with Padding for Bottom Legend")
+> ##D
+> ##D # with 'cleaned' data for VaR estimates
+> ##D chart.BarVaR(managers[,1,drop=FALSE],
+> ##D methods=c("HistoricalVaR", "ModifiedVaR"),
+> ##D lwd=2, ypad=.01, clean="boudt",
+> ##D main="... with Robust ModVaR Estimate")
+> ##D
+> ##D # Cornish Fisher VaR estimated with cleaned data,
+> ##D # with horizontal line to show exceptions
+> ##D chart.BarVaR(managers[,1,drop=FALSE],
+> ##D methods="ModifiedVaR",
+> ##D lwd=2, ypad=.01, clean="boudt",
+> ##D show.horizontal=TRUE, lty=2,
+> ##D main="... with Robust ModVaR and Line for Identifying Exceptions")
+> ## End(Not run)
>
-> # cleaned up a bit
-> chart.BarVaR(managers[,1,drop=FALSE],
-+ methods=c("HistoricalVaR", "ModifiedVaR", "GaussianVaR"),
-+ lwd=2, ypad=.01,
-+ main="... with Padding for Bottom Legend")
>
-> # with 'cleaned' data for VaR estimates
-> chart.BarVaR(managers[,1,drop=FALSE],
-+ methods=c("HistoricalVaR", "ModifiedVaR"),
-+ lwd=2, ypad=.01, clean="boudt",
-+ main="... with Robust ModVaR Estimate")
>
-> # Cornish Fisher VaR estimated with cleaned data,
-> # with horizontal line to show exceptions
-> chart.BarVaR(managers[,1,drop=FALSE],
-+ methods="ModifiedVaR",
-+ lwd=2, ypad=.01, clean="boudt",
-+ show.horizontal=TRUE, lty=2,
-+ main="... with Robust ModVaR and Line for Identifying Exceptions")
->
->
->
> cleanEx()
-
-detaching ‘package:robustbase’
-
> nameEx("chart.Boxplot")
> ### * chart.Boxplot
>
@@ -6955,21 +6957,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -6989,7 +6984,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.Arbitrary")
> ### * table.Arbitrary
@@ -7135,21 +7130,14 @@
> # prettify with format.df in hmisc package
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7170,7 +7158,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.CaptureRatios")
> ### * table.CaptureRatios
@@ -7252,21 +7240,14 @@
> rownames(result)=colnames(managers[,1:6])
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7285,7 +7266,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.Distributions")
> ### * table.Distributions
@@ -7317,21 +7298,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7349,7 +7323,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.DownsideRisk")
> ### * table.DownsideRisk
@@ -7440,21 +7414,14 @@
> result=t(table.DownsideRisk(edhec, Rf=.04/12, MAR =.05/12, p=.95))
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7470,7 +7437,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.DownsideRiskRatio")
> ### * table.DownsideRiskRatio
@@ -7506,21 +7473,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7538,7 +7498,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.Drawdowns")
> ### * table.Drawdowns
@@ -7612,21 +7572,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7644,7 +7597,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.HigherMoments")
> ### * table.HigherMoments
@@ -7669,21 +7622,14 @@
> rownames(result)=colnames(managers[,1:6])
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7699,7 +7645,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.InformationRatio")
> ### * table.InformationRatio
@@ -7725,21 +7671,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7757,7 +7696,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.MonthlyReturns")
> ### * table.MonthlyReturns
@@ -7850,21 +7789,14 @@
> result=t(table.Stats(edhec))
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7879,7 +7811,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.ProbOutPerformance")
> ### * table.ProbOutPerformance
@@ -7948,21 +7880,14 @@
> result=table.TrailingPeriods(edhec[,10:13], periods=c(12,24,36))
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -7978,7 +7903,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.SpecificRisk")
> ### * table.SpecificRisk
@@ -8000,21 +7925,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -8032,7 +7950,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("table.Variability")
> ### * table.Variability
@@ -8058,21 +7976,14 @@
>
> require("Hmisc")
Loading required package: Hmisc
+Loading required package: grid
+Loading required package: lattice
Loading required package: survival
Loading required package: splines
Loading required package: Formula
-Hmisc library by Frank E Harrell Jr
-Type library(help='Hmisc'), ?Overview, or ?Hmisc.Overview')
-to see overall documentation.
-
-
Attaching package: ‘Hmisc’
-The following objects are masked from ‘package:survival’:
-
- survfitKM, untangle.specials
-
The following objects are masked from ‘package:base’:
format.pval, round.POSIXt, trunc.POSIXt, units
@@ -8090,7 +8001,7 @@
> cleanEx()
detaching ‘package:Hmisc’, ‘package:Formula’, ‘package:survival’,
- ‘package:splines’
+ ‘package:splines’, ‘package:lattice’, ‘package:grid’
> nameEx("textplot")
> ### * textplot
@@ -8176,7 +8087,7 @@
> ###
> options(digits = 7L)
> base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
-Time elapsed: 62.721 1.582 85.601 0 0
+Time elapsed: 45.537 1.744 47.545 0 0
> grDevices::dev.off()
pdf
2
Modified: pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw
===================================================================
--- pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsChartsPresentation-Meielisalp-2007.Rnw 2014-09-15 09:39:58 UTC (rev 3541)
@@ -12,10 +12,6 @@
%\VignetteKeywords{returns, performance, risk, benchmark, portfolio}
%\VignettePackage{PerformanceAnalytics}
-% - Talk at a conference/colloquium.
-% - Talk length is about 60min.
-
-% Beamer Presentation Template Copyright 2004 by Till Tantau <tantau at users.sourceforge.net>.
% Contents Copyright 2007 Peter Carl and Brian G. Peterson
%
% This file can be redistributed and/or modified under
@@ -23,43 +19,29 @@
\mode<presentation>
{
-% \usetheme{CambridgeUS}
- % or ...
-
-% \setbeamercovered{transparent}
- % or whatever (possibly just delete it)
+% \usetheme{whatever}
}
\makeatletter
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
-%%\usepackage{noweb}
+%%%
\usepackage{subfigure}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage[english]{babel}
\makeatother
\usepackage[latin1]{inputenc}
-% or whatever
\usepackage{times}
\usepackage[T1]{fontenc}
-% Or whatever. Note that the encoding and the font should match. If T1
-% does not look nice, try deleting the line with the fontenc.
\title[PerformanceAnalytics] % (optional, use only with long paper titles)
{Overview of PerformanceAnalytics' \\ Charts and Tables}
-
% \subtitle
-% {Include Only If Paper Has a Subtitle}
-\author[Brian Peterson] % (optional, use only with lots of authors)
+\author[Brian Peterson]
{Brian~G.~Peterson}
-% - Give the names in the same order as the appear in the paper.
-% - Use the \inst{?} command only if the authors have different
-% affiliation.
\institute[Diamond] % (optional, but mostly needed)
{
@@ -70,27 +52,9 @@
\date[July 2007] % (optional, should be abbreviation of conference name)
{R/Rmetrics User and Developer Workshop, 2007}
-% - Either use conference name or its abbreviation.
-% - Not really informative to the audience, more for people (including
-% yourself) who are reading the slides online
\subject{Overview of PerformanceAnalytics' Charts and Tables}
-% This is only inserted into the PDF information catalog. Can be left
-% out.
-
-
-% If you have a file called "university-logo-filename.xxx", where xxx
-% is a graphic format that can be processed by latex or pdflatex,
-% resp., then you can add a logo as follows:
-
-% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename}
-% \logo{\pgfuseimage{university-logo}}
-
-
-
-% Delete this, if you do not want the table of contents to pop up at
-% the beginning of each subsection:
\AtBeginSubsection[]
{
\begin{frame}<beamer>
@@ -100,12 +64,7 @@
}
-% If you wish to uncover everything in a step-wise fashion, uncomment
-% the following command:
-
-%\beamerdefaultoverlayspecification{<+->}
\begin{document}
-%\right] \right\rbrace \right\rangle \right( \begin{document}
% this has to be after \begin{document} to work
\setkeys{Gin}{width=2.5in}
\begin{frame}
Modified: pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsPresentation-UseR-2007.Rnw
===================================================================
--- pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsPresentation-UseR-2007.Rnw 2014-09-14 13:22:19 UTC (rev 3540)
+++ pkg/PerformanceAnalytics/vignettes/PerformanceAnalyticsPresentation-UseR-2007.Rnw 2014-09-15 09:39:58 UTC (rev 3541)
@@ -12,10 +12,6 @@
%\VignetteKeywords{returns, performance, risk, benchmark, portfolio}
%\VignettePackage{PerformanceAnalytics}
-% - Talk at a conference/colloquium.
-% - Talk length is about 60min.
-
-% Beamer Presentation Template Copyright 2004 by Till Tantau <tantau at users.sourceforge.net>.
% Contents Copyright 2007 Peter Carl and Brian G. Peterson
%
% This file can be redistributed and/or modified under
@@ -24,44 +20,29 @@
\mode<presentation>
{
\usetheme{default}
- % or ...
-
-% \setbeamercovered{transparent}
- % or whatever (possibly just delete it)
}
\makeatletter
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
-%%\usepackage{noweb}
+%%%
\usepackage{subfigure}
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
-
\usepackage[english]{babel}
\makeatother
\usepackage[latin1]{inputenc}
-% or whatever
\usepackage{times}
\usepackage[T1]{fontenc}
-% Or whatever. Note that the encoding and the font should match. If T1
-% does not look nice, try deleting the line with the fontenc.
-
\title[PerformanceAnalytics] % (optional, use only with long paper titles)
{Exploratory Data Analysis in Finance Using PerformanceAnalytics}
% \subtitle
-% {Include Only If Paper Has a Subtitle}
-\author[Brian Peterson \& Peter Carl] % (optional, use only with lots of authors)
+\author[Brian Peterson \& Peter Carl]
{Brian~G.~Peterson \& Peter~Carl}
-% - Give the names in the same order as the appear in the paper.
-% - Use the \inst{?} command only if the authors have different
-% affiliation.
-\institute[Braverock] % (optional, but mostly needed)
+\institute[Braverock]
{
\inst{1}
Diamond Management \& Technology Consultants \\
@@ -72,46 +53,15 @@
Guidance Capital\\
Chicago, IL\\
peter at braverock.com
-} %the formatting of our companies is likely to be all screwed up
+}
-\date[July 2007] % (optional, should be abbreviation of conference name)
+\date[July 2007]
{UseR! International User and Developer Conference, Ames, Iowa, 8-10 Aug 2007}
-% - Either use conference name or its abbreviation.
-% - Not really informative to the audience, more for people (including
-% yourself) who are reading the slides online
\subject{Data Mining using PerformanceAnalytics}
-% This is only inserted into the PDF information catalog. Can be left
-% out.
-
-
-% If you have a file called "university-logo-filename.xxx", where xxx
-% is a graphic format that can be processed by latex or pdflatex,
-% resp., then you can add a logo as follows:
-
-% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename}
-% \logo{\pgfuseimage{university-logo}}
-
-
-
-% Delete this, if you do not want the table of contents to pop up at
-% the beginning of each subsection:
-% \AtBeginSubsection[]
-% {
-% \begin{frame}<beamer>
-% \frametitle{Outline}
-% \tableofcontents[currentsection,currentsubsection]
-% \end{frame}
-% }
-
-
-% If you wish to uncover everything in a step-wise fashion, uncomment
-% the following command:
-
-%\beamerdefaultoverlayspecification{<+->}
+%%%
\begin{document}
-%\right] \right\rbrace \right\rangle \right( \begin{document}
% this has to be after \begin{document} to work
\setkeys{Gin}{width=2.5in}
More information about the Returnanalytics-commits
mailing list