[Gmm-commits] r33 - in pkg/gmm: . R inst/doc man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Oct 16 00:19:22 CEST 2010
Author: chaussep
Date: 2010-10-16 00:19:22 +0200 (Sat, 16 Oct 2010)
New Revision: 33
Modified:
pkg/gmm/NEWS
pkg/gmm/R/getModel.R
pkg/gmm/R/gmm.R
pkg/gmm/R/momentEstim.R
pkg/gmm/inst/doc/gmm_with_R.pdf
pkg/gmm/man/getDat.Rd
pkg/gmm/man/gmm.Rd
Log:
Added the option data= to gmm() to avoid attaching variables. The rest is related to this change
Modified: pkg/gmm/NEWS
===================================================================
--- pkg/gmm/NEWS 2010-10-15 19:59:01 UTC (rev 32)
+++ pkg/gmm/NEWS 2010-10-15 22:19:22 UTC (rev 33)
@@ -2,8 +2,11 @@
o It is now possible to enter the instruments in x either as a matrix
(like before) or as a formula. See details and examples in gmm help
+o A data argument is added to the gmm function. Therefore, it is no longer required
+ that the variables in data.frames be attached before using gmm(). You just need to add the option data=your_data.frame.
+
Changes in version 1.3-3
o It is a very small modification to avoid errors in the installation. The function linear.hypothesis of the car package is now deprecated. They have be changed to linearHypothesis.
Modified: pkg/gmm/R/getModel.R
===================================================================
--- pkg/gmm/R/getModel.R 2010-10-15 19:59:01 UTC (rev 32)
+++ pkg/gmm/R/getModel.R 2010-10-15 22:19:22 UTC (rev 33)
@@ -21,7 +21,11 @@
if(is(object$g, "formula"))
{
object$gradvf <- FALSE
- dat <- getDat(object$g, object$x)
+ if (is.null(object$data))
+ dat <- getDat(object$g, object$x)
+ else
+ dat <- getDat(object$g, object$x, object$data)
+
if(is.null(object$weightsMatrix))
clname <- paste(class(object), ".", object$type, ".formula", sep = "")
else
Modified: pkg/gmm/R/gmm.R
===================================================================
--- pkg/gmm/R/gmm.R 2010-10-15 19:59:01 UTC (rev 32)
+++ pkg/gmm/R/gmm.R 2010-10-15 22:19:22 UTC (rev 33)
@@ -14,7 +14,7 @@
gmm <- function(g,x,t0=NULL,gradv=NULL, type=c("twoStep","cue","iterative"), wmatrix = c("optimal","ident"), vcov=c("HAC","iid"),
kernel=c("Quadratic Spectral","Truncated", "Bartlett", "Parzen", "Tukey-Hanning"),crit=10e-7,bw = bwAndrews,
prewhite = FALSE, ar.method = "ols", approx="AR(1)",tol = 1e-7, itermax=100,optfct=c("optim","optimize","nlminb"),
- model=TRUE, X=FALSE, Y=FALSE, TypeGmm = "baseGmm", centeredVcov = TRUE, weightsMatrix = NULL, ...)
+ model=TRUE, X=FALSE, Y=FALSE, TypeGmm = "baseGmm", centeredVcov = TRUE, weightsMatrix = NULL, data, ...)
{
type <- match.arg(type)
@@ -22,18 +22,21 @@
vcov <- match.arg(vcov)
wmatrix <- match.arg(wmatrix)
optfct <- match.arg(optfct)
-all_args<-list(g = g, x = x, t0 = t0, gradv = gradv, type = type, wmatrix = wmatrix, vcov = vcov, kernel = kernel,
+if(missing(data))
+ data<-NULL
+all_args<-list(data = data, g = g, x = x, t0 = t0, gradv = gradv, type = type, wmatrix = wmatrix, vcov = vcov, kernel = kernel,
crit = crit, bw = bw, prewhite = prewhite, ar.method = ar.method, approx = approx,
weightsMatrix = weightsMatrix, centeredVcov = centeredVcov,
tol = tol, itermax = itermax, optfct = optfct, model = model, X = X, Y = Y, call = match.call())
class(all_args)<-TypeGmm
Model_info<-getModel(all_args)
z <- momentEstim(Model_info, ...)
+
z <- FinRes(z, Model_info)
z
}
-getDat <- function (formula,h)
+getDat <- function (formula, h, data)
{
cl <- match.call()
mf <- match.call(expand.dots = FALSE)
@@ -46,7 +49,14 @@
if (inherits(h,'formula'))
{
- mfh <- eval(model.frame(formula = h, drop.unused.levels = TRUE), parent.frame())
+ mfh <- match.call(expand.dots = FALSE)
+ mh <- match(c("h", "data"), names(mfh), 0L)
+ mfh <- mfh[c(1L, mh)]
+ mfh$formula <- mfh$h
+ mfh$h <- NULL
+ mfh$drop.unused.levels <- TRUE
+ mfh[[1L]] <- as.name("model.frame")
+ mfh <- eval(mfh, parent.frame())
mth <- attr(mfh, "terms")
h <- as.matrix(model.matrix(mth, mfh, NULL))
}
@@ -66,7 +76,6 @@
h <- as.matrix(h[,2:ncol(h)])
}
}
-
y <- as.matrix(model.response(mf, "numeric"))
xt <- as.matrix(model.matrix(mt, mf, NULL))
ny <- ncol(y)
Modified: pkg/gmm/R/momentEstim.R
===================================================================
--- pkg/gmm/R/momentEstim.R 2010-10-15 19:59:01 UTC (rev 32)
+++ pkg/gmm/R/momentEstim.R 2010-10-15 22:19:22 UTC (rev 33)
@@ -109,14 +109,18 @@
{
P <- object
g <- P$g
- dat <- getDat(P$gform, P$x)
+ if (is.null(P$data))
+ dat <- getDat(P$gform, P$x)
+ else
+ dat <- getDat(P$gform, P$x, P$data)
+
x <- dat$x
k <- dat$k
k2 <- k*dat$ny
n <- nrow(x)
q <- dat$ny*dat$nh
df <- q-k*dat$ny
-
+
if (q == k2 | P$wmatrix == "ident")
{
w <- diag(q)
@@ -186,7 +190,11 @@
{
P <- object
g <- P$g
- dat <- getDat(P$gform, P$x)
+ if (is.null(P$data))
+ dat <- getDat(P$gform, P$x)
+ else
+ dat <- getDat(P$gform, P$x, P$data)
+
x <- dat$x
k <- dat$k
k2 <- k*dat$ny
@@ -373,7 +381,11 @@
{
P <- object
g <- P$g
- dat <- getDat(P$gform, P$x)
+ if (is.null(P$data))
+ dat <- getDat(P$gform, P$x)
+ else
+ dat <- getDat(P$gform, P$x, P$data)
+
x <- dat$x
k <- dat$k
k2 <- k*dat$ny
@@ -729,7 +741,11 @@
{
P <- object
g <- P$g
- dat <- getDat(P$gform, P$x)
+ if (is.null(P$data))
+ dat <- getDat(P$gform, P$x)
+ else
+ dat <- getDat(P$gform, P$x, P$data)
+
x <- dat$x
k <- dat$k
k2 <- k*dat$ny
Modified: pkg/gmm/inst/doc/gmm_with_R.pdf
===================================================================
--- pkg/gmm/inst/doc/gmm_with_R.pdf 2010-10-15 19:59:01 UTC (rev 32)
+++ pkg/gmm/inst/doc/gmm_with_R.pdf 2010-10-15 22:19:22 UTC (rev 33)
@@ -1294,6 +1294,7 @@
/ProcSet [ /PDF /Text ]
/Font << /F1 261 0 R/F2 262 0 R/F3 263 0 R>>
/ExtGState <<
+/GSais 264 0 R
>>>>
/Length 47077
>>
@@ -3842,8 +3843,8 @@
endobj
260 0 obj
<<
-/CreationDate (D:20100924133334)
-/ModDate (D:20100924133334)
+/CreationDate (D:20101015181453)
+/ModDate (D:20101015181453)
/Title (R Graphics Output)
/Producer (R 2.11.1)
/Creator (R)
@@ -3863,7 +3864,7 @@
/Subtype /Type1
/Name /F2
/BaseFont /Helvetica
-/Encoding 264 0 R
+/Encoding 265 0 R
>>
endobj
263 0 obj
@@ -3872,11 +3873,17 @@
/Subtype /Type1
/Name /F3
/BaseFont /Helvetica-Bold
-/Encoding 264 0 R
+/Encoding 265 0 R
>>
endobj
264 0 obj
<<
+/Type /ExtGState
+/AIS false
+>>
+endobj
+265 0 obj
+<<
/Type /Encoding
/BaseEncoding /WinAnsiEncoding
/Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
@@ -3896,7 +3903,7 @@
/XObject << /Im1 250 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-283 0 obj <<
+284 0 obj <<
/Length 2788
/Filter /FlateDecode
>>
@@ -3921,137 +3928,137 @@
eÈ"øq7ÌDÿ×óqîÊ×â é´°¬}3Ò|éÁ¼÷jï9Å0gÓ4ÈéüëÀé¢+)òu¼mÍûÝQg±Í-ü¡ß\Ð-ÈÖ¥¥tøÄàÐBÝ"h_èÑWbs.Gw(P ¡Jèo2´³UG÷8ø8ÓÖ×ã¨ý_]bmLÙøo=ábw»ºv}ìÆéóu'jÇÛ²OÆðW×ôÓ< [ܹPÂ~°?kh $HÆ1ï.þ½/ei
endstream
endobj
-282 0 obj <<
+283 0 obj <<
/Type /Page
-/Contents 283 0 R
-/Resources 281 0 R
+/Contents 284 0 R
+/Resources 282 0 R
/MediaBox [0 0 595.276 841.89]
/Parent 249 0 R
-/Annots [ 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 279 0 R 280 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R ]
+/Annots [ 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 280 0 R 281 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R ]
>> endobj
-265 0 obj <<
+266 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [221.913 250.325 229.36 263.123]
/A << /S /GoTo /D (equation.2.3) >>
>> endobj
-266 0 obj <<
+267 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 196.128 111.712 208.926]
/A << /S /GoTo /D (cite.zeileis06) >>
>> endobj
-267 0 obj <<
+268 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [117.585 196.128 141.395 208.926]
/A << /S /GoTo /D (cite.zeileis06) >>
>> endobj
-268 0 obj <<
+269 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [168.464 196.128 200.173 208.926]
/A << /S /GoTo /D (cite.zeileis04) >>
>> endobj
-269 0 obj <<
+270 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [206.045 196.128 229.856 208.926]
/A << /S /GoTo /D (cite.zeileis04) >>
>> endobj
-270 0 obj <<
+271 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [232.821 166.157 239.543 179.294]
/A << /S /GoTo /D (Hfootnote.3) >>
>> endobj
-279 0 obj <<
+280 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [192.412 151.997 235.979 164.795]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-280 0 obj <<
+281 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [241.069 151.997 264.88 164.795]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-271 0 obj <<
+272 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [254.044 117.486 280.846 129.391]
/A << /S /GoTo /D (cite.white84) >>
>> endobj
-272 0 obj <<
+273 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [285.648 117.486 306.04 129.391]
/A << /S /GoTo /D (cite.white84) >>
>> endobj
-273 0 obj <<
+274 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [313.435 117.486 383.058 129.391]
/A << /S /GoTo /D (cite.newey-west87a) >>
>> endobj
-274 0 obj <<
+275 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [387.861 117.486 408.252 129.391]
/A << /S /GoTo /D (cite.newey-west87a) >>
>> endobj
-275 0 obj <<
+276 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [431.093 117.486 463.06 129.391]
/A << /S /GoTo /D (cite.gallant87) >>
>> endobj
-276 0 obj <<
+277 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [467.862 117.486 488.254 129.391]
/A << /S /GoTo /D (cite.gallant87) >>
>> endobj
-277 0 obj <<
+278 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [302.923 106.527 340.027 117.401]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-278 0 obj <<
+279 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [344.613 106.527 365.004 117.401]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-284 0 obj <<
-/D [282 0 R /XYZ 80 770.89 null]
->> endobj
285 0 obj <<
-/D [282 0 R /XYZ 97.575 131.683 null]
+/D [283 0 R /XYZ 80 770.89 null]
>> endobj
-281 0 obj <<
+286 0 obj <<
+/D [283 0 R /XYZ 97.575 131.683 null]
+>> endobj
+282 0 obj <<
/Font << /F8 99 0 R /F83 137 0 R /F22 140 0 R /F23 143 0 R /F26 160 0 R /F20 104 0 R /F103 138 0 R /F105 195 0 R /F80 101 0 R /F21 105 0 R /F50 107 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-292 0 obj <<
+293 0 obj <<
/Length 1174
/Filter /FlateDecode
>>
@@ -4066,21 +4073,21 @@
ë¹°c=4R3ùÛ2|ß-Îþnõ
endstream
endobj
-291 0 obj <<
+292 0 obj <<
/Type /Page
-/Contents 292 0 R
-/Resources 290 0 R
+/Contents 293 0 R
+/Resources 291 0 R
/MediaBox [0 0 595.276 841.89]
/Parent 249 0 R
>> endobj
-293 0 obj <<
-/D [291 0 R /XYZ 80 770.89 null]
+294 0 obj <<
+/D [292 0 R /XYZ 80 770.89 null]
>> endobj
-290 0 obj <<
+291 0 obj <<
/Font << /F83 137 0 R /F8 99 0 R /F103 138 0 R /F105 195 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-304 0 obj <<
+305 0 obj <<
/Length 1479
/Filter /FlateDecode
>>
@@ -4098,26 +4105,27 @@
ôð,~ð7®$õ¿jÇöµãC¢ÿ¶þj²ó¡
endstream
endobj
-303 0 obj <<
+304 0 obj <<
/Type /Page
-/Contents 304 0 R
-/Resources 302 0 R
+/Contents 305 0 R
+/Resources 303 0 R
/MediaBox [0 0 595.276 841.89]
/Parent 249 0 R
-/Annots [ 294 0 R 295 0 R 296 0 R 306 0 R 297 0 R 298 0 R 299 0 R ]
+/Annots [ 295 0 R 296 0 R 297 0 R 307 0 R 298 0 R 299 0 R 300 0 R ]
>> endobj
-300 0 obj <<
+301 0 obj <<
/Type /XObject
/Subtype /Form
/FormType 1
/PTEX.FileName (./gmm_with_R-025.pdf)
/PTEX.PageNumber 1
-/PTEX.InfoDict 307 0 R
+/PTEX.InfoDict 308 0 R
/BBox [0 0 720 504]
/Resources <<
/ProcSet [ /PDF /Text ]
-/Font << /F1 308 0 R/F2 309 0 R/F3 310 0 R>>
+/Font << /F1 309 0 R/F2 310 0 R/F3 311 0 R>>
/ExtGState <<
+/GSais 312 0 R
>>>>
/Length 26819
>>
@@ -5406,16 +5414,16 @@
Q
endstream
endobj
-307 0 obj
+308 0 obj
<<
-/CreationDate (D:20100924133334)
-/ModDate (D:20100924133334)
+/CreationDate (D:20101015181454)
+/ModDate (D:20101015181454)
/Title (R Graphics Output)
/Producer (R 2.11.1)
/Creator (R)
>>
endobj
-308 0 obj
+309 0 obj
<<
/Type /Font
/Subtype /Type1
@@ -5423,89 +5431,95 @@
/BaseFont /ZapfDingbats
>>
endobj
-309 0 obj
+310 0 obj
<<
/Type /Font
/Subtype /Type1
/Name /F2
/BaseFont /Helvetica
-/Encoding 311 0 R
+/Encoding 313 0 R
>>
endobj
-310 0 obj
+311 0 obj
<<
/Type /Font
/Subtype /Type1
/Name /F3
/BaseFont /Helvetica-Bold
-/Encoding 311 0 R
+/Encoding 313 0 R
>>
endobj
-311 0 obj
+312 0 obj
<<
+/Type /ExtGState
+/AIS false
+>>
+endobj
+313 0 obj
+<<
/Type /Encoding
/BaseEncoding /WinAnsiEncoding
/Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
>>
endobj
-294 0 obj <<
+295 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [139.224 570.18 182.79 582.978]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-295 0 obj <<
+296 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [187.499 570.18 211.31 582.978]
/A << /S /GoTo /D (cite.andrews91) >>
>> endobj
-296 0 obj <<
+297 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [469.772 570.18 522.996 582.978]
/A << /S /GoTo /D (cite.newey-west94) >>
>> endobj
-306 0 obj <<
+307 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 556.631 105.669 569.429]
/A << /S /GoTo /D (cite.newey-west94) >>
>> endobj
-297 0 obj <<
+298 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [110.907 556.631 134.718 569.429]
/A << /S /GoTo /D (cite.newey-west94) >>
>> endobj
-298 0 obj <<
+299 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [128.502 515.984 241.36 528.782]
/A << /S /GoTo /D (cite.andrews-monahan92) >>
>> endobj
-299 0 obj <<
+300 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [247.204 515.984 271.015 528.782]
/A << /S /GoTo /D (cite.andrews-monahan92) >>
>> endobj
-305 0 obj <<
-/D [303 0 R /XYZ 80 770.89 null]
+306 0 obj <<
+/D [304 0 R /XYZ 80 770.89 null]
>> endobj
-302 0 obj <<
+303 0 obj <<
/Font << /F8 99 0 R /F83 137 0 R /F105 195 0 R /F103 138 0 R /F22 140 0 R >>
-/XObject << /Im2 300 0 R >>
+/XObject << /Im2 301 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-321 0 obj <<
+323 0 obj <<
/Length 3145
/Filter /FlateDecode
>>
@@ -5543,27 +5557,26 @@
ï+ðáBÈÿa"6Ä
endstream
endobj
-320 0 obj <<
+322 0 obj <<
/Type /Page
-/Contents 321 0 R
-/Resources 319 0 R
+/Contents 323 0 R
+/Resources 321 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
-/Annots [ 313 0 R 314 0 R 315 0 R 318 0 R 316 0 R 317 0 R 326 0 R ]
+/Parent 331 0 R
+/Annots [ 315 0 R 316 0 R 317 0 R 320 0 R 318 0 R 319 0 R 328 0 R ]
>> endobj
-301 0 obj <<
+302 0 obj <<
/Type /XObject
/Subtype /Form
/FormType 1
/PTEX.FileName (./gmm_with_R-026.pdf)
/PTEX.PageNumber 1
-/PTEX.InfoDict 330 0 R
+/PTEX.InfoDict 332 0 R
/BBox [0 0 720 504]
/Resources <<
/ProcSet [ /PDF /Text ]
-/Font << /F1 331 0 R/F2 332 0 R/F3 333 0 R>>
+/Font << /F1 333 0 R/F2 334 0 R/F3 335 0 R>>
/ExtGState <<
-/GSais 334 0 R
>>>>
/Length 32620
>>
@@ -7226,16 +7239,16 @@
Q
endstream
endobj
-330 0 obj
+332 0 obj
<<
-/CreationDate (D:20100924133334)
-/ModDate (D:20100924133334)
+/CreationDate (D:20101015181454)
+/ModDate (D:20101015181454)
/Title (R Graphics Output)
/Producer (R 2.11.1)
/Creator (R)
>>
endobj
-331 0 obj
+333 0 obj
<<
/Type /Font
/Subtype /Type1
@@ -7243,104 +7256,98 @@
/BaseFont /ZapfDingbats
>>
endobj
-332 0 obj
+334 0 obj
<<
/Type /Font
/Subtype /Type1
/Name /F2
/BaseFont /Helvetica
-/Encoding 335 0 R
+/Encoding 336 0 R
>>
endobj
-333 0 obj
+335 0 obj
<<
/Type /Font
/Subtype /Type1
/Name /F3
/BaseFont /Helvetica-Bold
-/Encoding 335 0 R
+/Encoding 336 0 R
>>
endobj
-334 0 obj
+336 0 obj
<<
-/Type /ExtGState
-/AIS false
->>
-endobj
-335 0 obj
-<<
/Type /Encoding
/BaseEncoding /WinAnsiEncoding
/Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
>>
endobj
-313 0 obj <<
+315 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [181.679 415.897 326.149 428.695]
/A << /S /GoTo /D (cite.campbell-lo-mackinlay96) >>
>> endobj
-314 0 obj <<
+316 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [332.376 415.897 356.186 428.695]
/A << /S /GoTo /D (cite.campbell-lo-mackinlay96) >>
>> endobj
-315 0 obj <<
+317 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [111.978 196.063 118.701 209.2]
/A << /S /GoTo /D (Hfootnote.4) >>
>> endobj
-318 0 obj <<
+320 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [96.367 184.631 103.09 195.651]
/A << /S /GoTo /D (Hfootnote.5) >>
>> endobj
-316 0 obj <<
+318 0 obj <<
/Type /Annot
/Border[0 0 0]/H/I/C[0 1 1]
/Rect [263.82 161.322 397.365 173.227]
/Subtype/Link/A<</Type/Action/S/URI/URI(http://ca.finance.yahoo.com/)>>
>> endobj
-317 0 obj <<
+319 0 obj <<
/Type /Annot
/Border[0 0 0]/H/I/C[0 1 1]
/Rect [497.512 139.404 522.996 150.278]
/Subtype/Link/A<</Type/Action/S/URI/URI(http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/data_library.html)>>
>> endobj
-326 0 obj <<
+328 0 obj <<
/Type /Annot
/Border[0 0 0]/H/I/C[0 1 1]
/Rect [80.004 127.399 396.783 138.902]
/Subtype/Link/A<</Type/Action/S/URI/URI(http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/data_library.html)>>
>> endobj
-322 0 obj <<
-/D [320 0 R /XYZ 80 770.89 null]
+324 0 obj <<
+/D [322 0 R /XYZ 80 770.89 null]
>> endobj
30 0 obj <<
-/D [320 0 R /XYZ 81 471.708 null]
+/D [322 0 R /XYZ 81 471.708 null]
>> endobj
-323 0 obj <<
-/D [320 0 R /XYZ 81 471.708 null]
+325 0 obj <<
+/D [322 0 R /XYZ 81 471.708 null]
>> endobj
-324 0 obj <<
-/D [320 0 R /XYZ 97.575 175.518 null]
+326 0 obj <<
+/D [322 0 R /XYZ 97.575 175.518 null]
>> endobj
-327 0 obj <<
-/D [320 0 R /XYZ 97.575 131.683 null]
+329 0 obj <<
+/D [322 0 R /XYZ 97.575 131.683 null]
>> endobj
-319 0 obj <<
-/Font << /F83 137 0 R /F8 99 0 R /F60 96 0 R /F80 101 0 R /F22 140 0 R /F23 143 0 R /F25 141 0 R /F20 104 0 R /F21 105 0 R /F50 107 0 R /F107 325 0 R /F51 328 0 R >>
-/XObject << /Im3 301 0 R >>
+321 0 obj <<
+/Font << /F83 137 0 R /F8 99 0 R /F60 96 0 R /F80 101 0 R /F22 140 0 R /F23 143 0 R /F25 141 0 R /F20 104 0 R /F21 105 0 R /F50 107 0 R /F107 327 0 R /F51 330 0 R >>
+/XObject << /Im3 302 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-339 0 obj <<
+340 0 obj <<
/Length 1490
/Filter /FlateDecode
>>
@@ -7356,21 +7363,21 @@
Ýs 'K¬×>΢ñjÁn'lJÃ0öclñ÷¶XÛº ¸=ÎâÖ¹{Ú73Æá 6¬:!F)ãKÜ°À´Ð}SÖ7Öb¥¸É&¦Ã,Ü?c&~õc`·DæTuE:OçË2ûYc_Qf·"óîé½ÀÒË9fUæ¡4%ت:÷!ËôË)ÞøûÏB)ÞÀºìP =åe«Y(TÒyJOeaÅF¢p¦bf:.À/ÖHG¶æ³m¥(0LQW³Þ¸Ú39µFñë%ÛY4ôIKé»}j+Ôìþ%À@+ÇA)Fð¶zu8FveébÓ§âº(üg¶ÖÖ6â×À;|u×ãB,GõØ?¹økÒlyù1*ﯰÀXøÍ(×'pÖ>Ÿ¶Y»þåäà_×O
endstream
endobj
-338 0 obj <<
+339 0 obj <<
/Type /Page
-/Contents 339 0 R
-/Resources 337 0 R
+/Contents 340 0 R
+/Resources 338 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
+/Parent 331 0 R
>> endobj
-340 0 obj <<
-/D [338 0 R /XYZ 80 770.89 null]
+341 0 obj <<
+/D [339 0 R /XYZ 80 770.89 null]
>> endobj
-337 0 obj <<
+338 0 obj <<
/Font << /F8 99 0 R /F83 137 0 R /F105 195 0 R /F103 138 0 R /F22 140 0 R /F25 141 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-347 0 obj <<
+348 0 obj <<
/Length 2686
/Filter /FlateDecode
>>
@@ -7398,69 +7405,69 @@
Ô°²:¡Äzt¸F>ª¼Tz <äå`ÿ?"CrR¼à
ÂáÀö á/5i¥¾°ÖâYC<¼©*XÝÈçÎÝ!(D9ªO2|j}Û»÷]$¢sâ#Çy·ñy~ìJ÷Ô¹¾=HâpÁýíã7 ub§~[iÿ÷w®üZ0JdTXá÷ìaÈûûÓ˳^üÑ
endstream
endobj
-346 0 obj <<
+347 0 obj <<
/Type /Page
-/Contents 347 0 R
-/Resources 345 0 R
+/Contents 348 0 R
+/Resources 346 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
-/Annots [ 341 0 R 350 0 R 342 0 R 343 0 R 344 0 R ]
+/Parent 331 0 R
+/Annots [ 342 0 R 351 0 R 343 0 R 344 0 R 345 0 R ]
>> endobj
-341 0 obj <<
+342 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [459.684 582.247 522.996 593.927]
/A << /S /GoTo /D (cite.jagannathan-skoulakis02) >>
>> endobj
-350 0 obj <<
+351 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 568.087 148.756 580.885]
/A << /S /GoTo /D (cite.jagannathan-skoulakis02) >>
>> endobj
-342 0 obj <<
+343 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [155.629 568.087 179.439 580.885]
/A << /S /GoTo /D (cite.jagannathan-skoulakis02) >>
>> endobj
-343 0 obj <<
+344 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [248.698 213.607 381.633 226.405]
/A << /S /GoTo /D (cite.jagannathan-skoulakis02) >>
>> endobj
-344 0 obj <<
+345 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [387.622 213.607 411.433 226.405]
/A << /S /GoTo /D (cite.jagannathan-skoulakis02) >>
>> endobj
-348 0 obj <<
-/D [346 0 R /XYZ 80 770.89 null]
+349 0 obj <<
+/D [347 0 R /XYZ 80 770.89 null]
>> endobj
34 0 obj <<
-/D [346 0 R /XYZ 81 634.885 null]
+/D [347 0 R /XYZ 81 634.885 null]
>> endobj
-349 0 obj <<
-/D [346 0 R /XYZ 81 634.885 null]
+350 0 obj <<
+/D [347 0 R /XYZ 81 634.885 null]
>> endobj
38 0 obj <<
-/D [346 0 R /XYZ 81 253.307 null]
+/D [347 0 R /XYZ 81 253.307 null]
>> endobj
-351 0 obj <<
-/D [346 0 R /XYZ 81 253.307 null]
+352 0 obj <<
+/D [347 0 R /XYZ 81 253.307 null]
>> endobj
-345 0 obj <<
+346 0 obj <<
/Font << /F83 137 0 R /F8 99 0 R /F103 138 0 R /F60 96 0 R /F22 140 0 R /F23 143 0 R /F20 104 0 R /F28 161 0 R /F25 141 0 R /F105 195 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-357 0 obj <<
+358 0 obj <<
/Length 2609
/Filter /FlateDecode
>>
@@ -7487,42 +7494,42 @@
9ÕÂÚÑW.¶¨êâÀ³ÓEóYÑ M]5*^=z9øäÙ9%ú3oµÇ9øòæðÕºÂ(Ý×KWÿç^vçðÄÂè/¸û}éf´RúÏý¦gWÔ2¿hÿÅJ^^L½¥Ïºí~ß\>ù7:\h
endstream
endobj
-356 0 obj <<
+357 0 obj <<
/Type /Page
-/Contents 357 0 R
-/Resources 355 0 R
+/Contents 358 0 R
+/Resources 356 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
-/Annots [ 353 0 R 354 0 R ]
+/Parent 331 0 R
+/Annots [ 354 0 R 355 0 R ]
>> endobj
-353 0 obj <<
+354 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [101.854 121.244 158.064 134.042]
/A << /S /GoTo /D (cite.wooldridge02) >>
>> endobj
-354 0 obj <<
+355 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [163.937 121.244 187.748 134.042]
/A << /S /GoTo /D (cite.wooldridge02) >>
>> endobj
-358 0 obj <<
-/D [356 0 R /XYZ 80 770.89 null]
+359 0 obj <<
+/D [357 0 R /XYZ 80 770.89 null]
>> endobj
42 0 obj <<
-/D [356 0 R /XYZ 81 190.316 null]
+/D [357 0 R /XYZ 81 190.316 null]
>> endobj
-359 0 obj <<
-/D [356 0 R /XYZ 81 190.316 null]
+360 0 obj <<
+/D [357 0 R /XYZ 81 190.316 null]
>> endobj
-355 0 obj <<
+356 0 obj <<
/Font << /F8 99 0 R /F83 137 0 R /F22 140 0 R /F23 143 0 R /F20 104 0 R /F25 141 0 R /F28 161 0 R /F103 138 0 R /F105 195 0 R /F60 96 0 R /F80 101 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-367 0 obj <<
+368 0 obj <<
/Length 3143
/Filter /FlateDecode
>>
@@ -7554,56 +7561,56 @@
FÁûÒWs Ķ;~\ñH<þÉa}6õlóýU
¿ÿèl
endstream
endobj
-366 0 obj <<
+367 0 obj <<
/Type /Page
-/Contents 367 0 R
-/Resources 365 0 R
+/Contents 368 0 R
+/Resources 366 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
-/Annots [ 361 0 R 362 0 R 363 0 R 364 0 R ]
+/Parent 331 0 R
+/Annots [ 362 0 R 363 0 R 364 0 R 365 0 R ]
>> endobj
-361 0 obj <<
+362 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [178.733 355.886 275.487 368.684]
/A << /S /GoTo /D (cite.plm) >>
>> endobj
-362 0 obj <<
+363 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [281.739 355.886 305.55 368.684]
/A << /S /GoTo /D (cite.plm) >>
>> endobj
-363 0 obj <<
+364 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [179.294 263.921 211.002 276.718]
/A << /S /GoTo /D (cite.zeileis06) >>
>> endobj
-364 0 obj <<
+365 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [216.689 263.921 240.499 276.718]
/A << /S /GoTo /D (cite.zeileis06) >>
>> endobj
-368 0 obj <<
-/D [366 0 R /XYZ 80 770.89 null]
+369 0 obj <<
+/D [367 0 R /XYZ 80 770.89 null]
>> endobj
46 0 obj <<
-/D [366 0 R /XYZ 81 316.826 null]
+/D [367 0 R /XYZ 81 316.826 null]
>> endobj
-369 0 obj <<
-/D [366 0 R /XYZ 81 316.826 null]
+370 0 obj <<
+/D [367 0 R /XYZ 81 316.826 null]
>> endobj
-365 0 obj <<
+366 0 obj <<
/Font << /F83 137 0 R /F8 99 0 R /F22 140 0 R /F23 143 0 R /F25 141 0 R /F103 138 0 R /F105 195 0 R /F80 101 0 R /F60 96 0 R /F28 161 0 R /F26 160 0 R /F20 104 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-382 0 obj <<
+383 0 obj <<
/Length 2415
/Filter /FlateDecode
>>
@@ -7626,29 +7633,29 @@
Íë
endstream
endobj
-381 0 obj <<
+382 0 obj <<
/Type /Page
-/Contents 382 0 R
-/Resources 380 0 R
+/Contents 383 0 R
+/Resources 381 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 329 0 R
-/Annots [ 371 0 R ]
+/Parent 331 0 R
+/Annots [ 372 0 R ]
>> endobj
-371 0 obj <<
+372 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [133.221 579.835 149.144 592.633]
/A << /S /GoTo /D (subsection.3.4) >>
>> endobj
-383 0 obj <<
-/D [381 0 R /XYZ 80 770.89 null]
+384 0 obj <<
+/D [382 0 R /XYZ 80 770.89 null]
>> endobj
-380 0 obj <<
+381 0 obj <<
/Font << /F8 99 0 R /F83 137 0 R /F22 140 0 R /F103 138 0 R /F80 101 0 R /F26 160 0 R /F20 104 0 R /F25 141 0 R /F23 143 0 R /F105 195 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-396 0 obj <<
+397 0 obj <<
/Length 3499
/Filter /FlateDecode
>>
@@ -7686,157 +7693,157 @@
¬1ÙºV·Øóè>Öà_nóÒj³|( CNÃþ¥myz©ãïÞ`îß4Vh6÷Ý_¿Ò¡´° íÅ÷Wü
Y1÷B°í<'äH´6wJßp{Âç?<òÚ1<âgà'ÏözªYÞJ¶Þb³I oº«L_zaMs?÷Zd²:x°õ+üîIÂGlUì9Ól¹ÿ³[Õi¶\äÁÖAhüQ/»@=}Y«ÝÉU}Îè÷Ëÿ¤1ï
endstream
endobj
-395 0 obj <<
+396 0 obj <<
/Type /Page
-/Contents 396 0 R
-/Resources 394 0 R
+/Contents 397 0 R
+/Resources 395 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 400 0 R
-/Annots [ 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R ]
+/Parent 401 0 R
+/Annots [ 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R ]
>> endobj
-372 0 obj <<
+373 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [157.099 640.86 186.048 653.658]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-373 0 obj <<
+374 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [191.309 640.86 215.12 653.658]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-374 0 obj <<
+375 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [456.051 613.761 486.494 626.559]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-375 0 obj <<
+376 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [491.931 613.761 515.742 626.559]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-376 0 obj <<
+377 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 600.212 166.475 613.01]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-377 0 obj <<
+378 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [172.348 600.212 196.159 613.01]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-378 0 obj <<
+379 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [215.384 600.212 265.823 613.01]
/A << /S /GoTo /D (cite.anatolyev05) >>
>> endobj
-379 0 obj <<
+380 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [271.696 600.212 295.507 613.01]
/A << /S /GoTo /D (cite.anatolyev05) >>
>> endobj
-384 0 obj <<
+385 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [447.352 391.596 476.3 404.497]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-385 0 obj <<
+386 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [483.087 391.596 506.897 404.497]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-386 0 obj <<
+387 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [200.172 310.301 285.703 323.202]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-387 0 obj <<
+388 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [291.105 310.301 314.916 323.202]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-388 0 obj <<
+389 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 225.323 110.447 238.225]
/A << /S /GoTo /D (cite.smith01) >>
>> endobj
-389 0 obj <<
+390 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [116.319 225.323 140.13 238.225]
/A << /S /GoTo /D (cite.smith01) >>
>> endobj
-390 0 obj <<
+391 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [381.589 152.711 488.95 165.613]
/A << /S /GoTo /D (cite.kitamura-stutzer97) >>
>> endobj
-391 0 obj <<
+392 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [494.953 152.711 518.764 165.613]
/A << /S /GoTo /D (cite.kitamura-stutzer97) >>
>> endobj
-392 0 obj <<
+393 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [101.2 139.162 131.643 151.96]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-393 0 obj <<
+394 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [137.516 139.162 161.326 151.96]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-397 0 obj <<
-/D [395 0 R /XYZ 80 770.89 null]
+398 0 obj <<
+/D [396 0 R /XYZ 80 770.89 null]
>> endobj
50 0 obj <<
-/D [395 0 R /XYZ 81 693.571 null]
+/D [396 0 R /XYZ 81 693.571 null]
>> endobj
-398 0 obj <<
-/D [395 0 R /XYZ 81 693.571 null]
->> endobj
399 0 obj <<
-/D [395 0 R /XYZ 372.967 156.435 null]
+/D [396 0 R /XYZ 81 693.571 null]
>> endobj
-394 0 obj <<
+400 0 obj <<
+/D [396 0 R /XYZ 372.967 156.435 null]
+>> endobj
+395 0 obj <<
/Font << /F83 137 0 R /F8 99 0 R /F60 96 0 R /F22 140 0 R /F20 104 0 R /F23 143 0 R /F28 161 0 R /F26 160 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-421 0 obj <<
+422 0 obj <<
/Length 3683
/Filter /FlateDecode
>>
@@ -7868,135 +7875,135 @@
Î}e|á¡Ýø³:T}uþqâøð¶,.æÑ%õMü¡½V°ëKK9CÅUP'MLN:ßÞÃÏU¿ÛÂìs5<Â#7óàû"·ðþ%Sî(#ŻϾnw1Å·¤ô]Vì>>* &Uâü¡#JÅ=½N'<îZ²äPâXàxtAz¨)ÏC`dÕI°ã4O³(¦¡Ë
9Ýí¢ÁÀ:~rL6S@|ؤßĪú¾·%À¿/=Ø|zõ²hsÛÌðé·]¤F±!ý¦9¶ 3xí¹åtÁ±C(+ô~eÑA©§O)ÃbKZ¥îcûN*°Ývo2_Ónkv½ßìO7þ³E&¹Á«ÞäB3/6Ì;?\×8Õuè´.ã¿"Ãa©³¿O¯.þZ¸jC
endstream
endobj
-420 0 obj <<
+421 0 obj <<
/Type /Page
-/Contents 421 0 R
-/Resources 419 0 R
+/Contents 422 0 R
+/Resources 420 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 400 0 R
-/Annots [ 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R ]
+/Parent 401 0 R
+/Annots [ 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R ]
>> endobj
-403 0 obj <<
+404 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [80.004 509.467 110.447 522.265]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-404 0 obj <<
+405 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [116.267 509.467 140.077 522.265]
/A << /S /GoTo /D (cite.smith97) >>
>> endobj
-405 0 obj <<
+406 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [400.742 509.467 429.691 522.265]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-406 0 obj <<
+407 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [435.511 509.467 459.322 522.265]
/A << /S /GoTo /D (cite.owen01) >>
>> endobj
-407 0 obj <<
+408 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [203.803 495.918 311.67 508.716]
/A << /S /GoTo /D (cite.kitamura-stutzer97) >>
>> endobj
-408 0 obj <<
+409 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [317.926 495.918 341.737 508.716]
/A << /S /GoTo /D (cite.kitamura-stutzer97) >>
>> endobj
-409 0 obj <<
+410 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [174.204 482.369 261.019 495.167]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-410 0 obj <<
+411 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [267.063 482.369 290.874 495.167]
/A << /S /GoTo /D (cite.newey-smith04) >>
>> endobj
-411 0 obj <<
+412 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [183.279 468.82 247.793 481.618]
/A << /S /GoTo /D (cite.hansen-heaton-yaron96) >>
>> endobj
-412 0 obj <<
+413 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [253.553 468.82 277.364 481.618]
/A << /S /GoTo /D (cite.hansen-heaton-yaron96) >>
>> endobj
-413 0 obj <<
+414 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [406.089 389.681 413.536 402.582]
/A << /S /GoTo /D (equation.4.6) >>
>> endobj
-414 0 obj <<
+415 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [131.442 189.927 144.343 202.725]
/A << /S /GoTo /D (equation.4.10) >>
>> endobj
-415 0 obj <<
+416 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [211.247 135.73 279.381 148.528]
/A << /S /GoTo /D (cite.guggenberger08) >>
>> endobj
-416 0 obj <<
+417 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [285.995 135.73 309.806 148.528]
/A << /S /GoTo /D (cite.guggenberger08) >>
>> endobj
-422 0 obj <<
-/D [420 0 R /XYZ 80 770.89 null]
->> endobj
423 0 obj <<
-/D [420 0 R /XYZ 225.9 690.783 null]
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/gmm -r 33
More information about the Gmm-commits
mailing list