Description Usage Arguments Value Author(s) See Also Examples
View source: R/inference.classic.R
This function uses standard student's t-statistic to obtain the estimate for response of the event and the corresponding confidence intervals.
1 2 3 4 5 | inference.classic(es.w,
to.plot = TRUE,
xlab = "Event time",
ylab = "Cumulative returns of response series",
main = "Event study plot")
|
es.w |
a zoo object indexed by event time: the “z.e”
component of the list returned by the |
to.plot |
a ‘logical’ indicating whether to generate an event study plot of the inference estimated. Defaults to ‘TRUE’. |
xlab |
the x-axis label of the generated plot. Used if “to.plot” is ‘TRUE’. |
ylab |
the y-axis label of the generated plot. Used if “to.plot” is ‘TRUE’. |
main |
main title of the plot. Used if “to.plot” is ‘TRUE’. |
A ‘matrix’ with 3 columns, the lower confidence interval (CI), the mean, and the upper CI which are the result of inference drawn using student's inference.
Sargam Jain
boot
phys2eventtime
inference.wilcox
inference.bootstrap
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(StockPriceReturns)
data(SplitDates)
es.results <- phys2eventtime(z = StockPriceReturns,
events = SplitDates,
width = 5)
es.w <- window(es.results$z.e,
start = -5,
end = +5)
eventtime <- remap.cumsum(es.w, is.pc = FALSE, base = 0)
inference.classic(es.w = eventtime,
to.plot = FALSE)
|
Loading required package: zoo
Attaching package: 'zoo'
The following objects are masked from 'package:base':
as.Date, as.Date.numeric
Loading required package: xts
2.5% Mean 97.5%
[1,] NaN 0.00000000 NaN
[2,] -1.769804 -0.04963427 1.670535
[3,] -1.824798 0.11112653 2.047051
[4,] -2.832604 -0.02981150 2.772981
[5,] -1.176208 0.16682379 1.509856
[6,] -3.910083 -1.12396803 1.662147
[7,] -7.207655 -1.34188821 4.523879
[8,] -6.223253 -0.96626653 4.290720
[9,] -3.914495 0.08482258 4.084140
[10,] -4.152251 0.52233286 5.196917
[11,] -4.328110 0.02624783 4.380606
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.