Modeling heteroskedasticity: GARCH modeling Hedibert Freitas Lopes 5/28/2018

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "Modeling heteroskedasticity: GARCH modeling Hedibert Freitas Lopes 5/28/2018"

Transcript

1 Modeling heteroskedasticity: GARCH modeling Hedibert Freitas Lopes 5/28/2018 Glossary of ARCH models Bollerslev wrote the article Glossary to ARCH (2010) which lists several families of ARCH models. You can find a technical report version of the paper here: I reproduce here the first paragraph of his paper: Rob Engle s seminal Nobel Prize winning 1982 Econometrica article on the AutoRegressive Conditional Heteroskedastic (ARCH) class of models spurred a virtual arms race into the development of new and better procedures for modeling and forecasting timevarying financial market volatility. Some of the most influential of these early papers were collected in Engle (1995). Numerous surveys of the burgeoning ARCH literature also exist; e.g., Andersen and Bollerslev (1998), Andersen, Bollerslev, Christoffersen and Diebold (2006a), Bauwens, Laurent and Rombouts (2006), Bera and Higgins (1993), Bollerslev, Chou and Kroner (1992), Bollerslev, Engle and Nelson (1994), Degiannakis and Xekalaki (2004), Diebold (2004), Diebold and Lopez (1995), Engle (2001, 2004), Engle and Patton (2001), Pagan (1996), Palm (1996), and Shephard (1996). Moreover, ARCH models have now become standard textbook material in econometrics and finance as exemplified by, e.g., Alexander (2001, 2008), Brooks (2002), Campbell, Lo and MacKinlay (1997), Chan (2002), Christoffersen (2003), Enders (2004), Franses and van Dijk (2000), Gourieroux and Jasiak (2001), Hamilton (1994), Mills (1993), Poon (2005), Singleton (2006), Stock and Watson (2007), Tsay (2002), and Taylor (2004). So, why another survey type chapter? Installing packages and creating functions #install.packages("fgarch") #install.packages("rugarch") library("fgarch") Loading required package: timedate Loading required package: timeseries Loading required package: fbasics library("rugarch") Loading required package: parallel Attaching package: 'rugarch' The following object is masked from 'package:stats': sigma 1

2 plot.sigt = function(y,sigt,model){ limy = range(abs(y),-abs(y)) par(mfrow=c(1,1)) plot(abs(y),xlab="",ylab="log-returns (-/+)",main="",type="h",axes=false,ylim=limy) lines(-abs(y),type="h") axis(2);box();axis(1,at=ind,lab=date) lines(sigt,col=2) lines(-sigt,col=2) title(model) } Using Petrobras data as illustration data = read.table("pbr.txt",header=true) n = nrow(data) attach(data) n = nrow(data) y = diff(log(pbr)) ind = trunc(seq(1,n,length=5)) date = c("jan/3/05","may/08/08","sep/12/11","jan/16/15","may/23/18") par(mfrow=c(1,1)) plot(pbr,xlab="",ylab="prices",axes=false,type="l") axis(2);axis(1,at=ind,lab=date);box() Prices par(mfrow=c(1,1)) plot(y,xlab="",ylab="returns",axes=false,type="l") axis(2);axis(1,at=ind,lab=date);box() 2

3 Returns AutoRegressive Conditional Heteroskedastic (ARCH) For all models considered in this set of notes, we assume that y t = σ t ε t where ε t are iid D (Gaussian, Student s t, GED, etc), and the time-varying variances (or standard deviations) are modeled via one of the members of the large GARCH family of volatility models. The ARCH(1), for example, assumes that σ 2 t = ω + α 1 ε 2 t 1, with ε 2 0 either estimated or fixed. See Engle (1992). fit.arch fit.arch = garchfit(~garch(1,0),data=y,trace=f,include.mean=false) Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 0), data = y, include.mean = FALSE, trace = F) Mean and Variance Equation: data ~ garch(1, 0) <environment: 0x7fafa0d83150> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha

4 Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 7.969e e <2e-16 *** alpha e e <2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.arch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e alpha e plot.sigt(y,fit.arch@sigma.t,"arch(1)") ARCH(1) Log returns ( /+) Generalized ARCH (GARCH) The GARCH(1,1) model extends the ARCH(1) model: See Bollerslev (1986). σ 2 t = ω + α 1 ε 2 t 1 + β 1 σ 2 t 1. fit.garch = garchfit(~garch(1,1),data=y,trace=f,include.mean=f) fit.garch 4

5 Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, include.mean = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa3a22928> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha1 beta e e e-01 Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 2.789e e e-07 *** alpha e e e-12 *** beta e e < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.garch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e e-07 alpha e e e-12 beta e e e+00 plot.sigt(y,fit.garch@sigma.t,"garch(1,1)") 5

6 GARCH(1,1) Log returns ( /+) Taylor-Schwert GARCH (TS-GARCH) The TS-GARCH(1,1) models the time-varying standard deviation: See Taylor (1986) and Schwert (1989). σ t = ω + α 1 ε t 1 + β 1 σ t 1. fit.tsgarch = garchfit(~garch(1,1),delta=1,data=y,trace=f,include.mean=f) fit.tsgarch Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, delta = 1, include.mean = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa19be0b0> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha1 beta Std. Errors: based on Hessian 6

7 Error Analysis: Estimate Std. Error t value Pr(> t ) omega e-07 *** alpha < 2e-16 *** beta < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.tsgarch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e-07 alpha e+00 beta e+00 plot.sigt(y,fit.tsgarch@sigma.t,"taylor-schwert-garch(1,1)") Taylor Schwert GARCH(1,1) Log returns ( /+) Threshold GARCH (T-GARCH) The T-GARCH(1,1) also models the time-varying standard deviation: See Zakoian (1993). σ t = ω + α 1 ε t 1 + γ 1 ε t 1 I(ε t 1 < 0) + β 1 σ t 1. fit.tgarch = garchfit(~garch(1,1),delta=1,leverage=t,data=y,trace=f,include.mean=f) fit.tgarch Title: 7

8 GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, delta = 1, include.mean = F, leverage = T, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa2c032b8> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha1 gamma1 beta Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega e-07 *** alpha < 2e-16 *** gamma *** beta < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.tgarch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e-07 alpha e+00 gamma e-04 beta e+00 plot.sigt(y,fit.tgarch@sigma.t,"threshold-garch(1,1)") 8

9 Threshold GARCH(1,1) Log returns ( /+) Glosten-Jaganathan-Runkle GARCH (GJR-GARCH) The GJR-GARCH(1,1) model is similar to the T-GARCH(1,1), but it models time-varying variances instead: See Glosten, Jaganathan and Runkle (1993). σ 2 t = ω + α 1 ε 2 t 1 + γ 1 ε 2 t 1I(ε t 1 < 0) + β 1 σ 2 t 1. fit.gjrgarch = garchfit(~garch(1,1),delta=2,leverage=t,data=y,trace=f,include.mean=f) fit.gjrgarch Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, delta = 2, include.mean = F, leverage = T, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa34c27e8> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha1 gamma1 beta e e e e-01 Std. Errors: based on Hessian 9

10 Error Analysis: Estimate Std. Error t value Pr(> t ) omega 2.791e e e-08 *** alpha e e e-10 *** gamma e e ** beta e e < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.gjrgarch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e e-08 alpha e e e-10 gamma e e e-03 beta e e e+00 plot.sigt(y,fit.gjrgarch@sigma.t,"gjr-garch(1,1)") GJR GARCH(1,1) Log returns ( /+) Asymmetric Power GARCH (AP-GARCH) The AP-GARCH(1,1) (aka APARCH(1,1)) models σt δ = ω + α 1 ( ε t 1 γ 1 ε t 1 ) δ + β 1 σt 1, δ for δ > 0 and γ 1 ( 1, 1). Th AP-GARCH model includes several models as special cases. ARCH - δ = 2, γ 1 = 0 and β 1 = 0 GARCH - δ = 2 and γ 1 = 0 10

11 TS-GARCH - δ = 1 and γ 1 = 0 T-GARCH - δ = 1 and γ 1 (0, 1) GJR-GARCH - δ = 2 and γ 1 (0, 1) See Ding, Granger and Engle (1993). fit.aparch = garchfit(~aparch(1,1),data=y,trace=f,include.mean=f) fit.aparch Title: GARCH Modelling Call: garchfit(formula = ~aparch(1, 1), data = y, include.mean = F, trace = F) Mean and Variance Equation: data ~ aparch(1, 1) <environment: 0x7fafa2bd09f8> [data = y] Conditional Distribution: norm Coefficient(s): omega alpha1 gamma1 beta1 delta Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega e-10 *** alpha < 2e-16 *** gamma e-07 *** beta < 2e-16 *** delta e-09 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.aparch@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e-10 alpha e+00 gamma e-07 beta e+00 11

12 delta e-09 Asymmetric Power GARCH(1,1) Log returns ( /+) Exponential GARCH model The EGARCH(1,1) models See Nelson (1991). log σ 2 t = ω + α 1 ε t 1 + γ 1 ε t 1 + β 1 log σ 2 t 1. fit=ugarchfit(ugarchspec(mean.model=list(armaorder=c(0,0),include.mean=true,archm=false,archpow=1,arfima fit * * * GARCH Model Fit * * * Conditional Variance Dynamics GARCH Model : egarch(1,1) Mean Model : ARFIMA(0,0,0) Distribution : norm Optimal Parameters Estimate Std. Error t value Pr(> t ) mu omega alpha beta gamma

13 Robust Standard Errors: Estimate Std. Error t value Pr(> t ) mu omega alpha beta gamma LogLikelihood : Information Criteria Akaike Bayes Shibata Hannan-Quinn Weighted Ljung-Box Test on Standardized Residuals statistic p-value Lag[1] Lag[2*(p+q)+(p+q)-1][2] Lag[4*(p+q)+(p+q)-1][5] d.o.f=0 H0 : No serial correlation Weighted Ljung-Box Test on Standardized Squared Residuals statistic p-value Lag[1] Lag[2*(p+q)+(p+q)-1][5] Lag[4*(p+q)+(p+q)-1][9] d.o.f=2 Weighted ARCH LM Tests Statistic Shape Scale P-Value ARCH Lag[3] ARCH Lag[5] ARCH Lag[7] Nyblom stability test Joint Statistic: Individual Statistics: mu omega alpha beta gamma Asymptotic Critical Values (10% 5% 1%) 13

14 Joint Statistic: Individual Statistic: Sign Bias Test t-value prob sig Sign Bias Negative Sign Bias Positive Sign Bias Joint Effect Adjusted Pearson Goodness-of-Fit Test: group statistic p-value(g-1) e e e e-06 Elapsed time : egarch.sigma.t = as.vector(sigma(fit)[,1]) plot.sigt(y,egarch.sigma.t,"egarch(1,1)") EGARCH(1,1) Log returns ( /+) Non-Gaussian GARCH models The R function garchfit has the cond.dist option for the specification of conditional distributions. The alternative erro distributions are dnorm, dged, dstd, dsnorm, dsged and dsstd. Skewed ones: dsnorm, dsged, dsstd. 14

15 GARCH(1,1) with Student-t with degrees of freedom (shape) estimated fit.garch.std = garchfit(~garch(1,1),cond.dist="std",data=y,trace=f,include.mean=f) fit.garch.std Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, cond.dist = "std", include.mean = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa2be4b48> [data = y] Conditional Distribution: std Coefficient(s): omega alpha1 beta1 shape Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 1.096e e ** alpha e e e-08 *** beta e e < 2e-16 *** shape 6.162e e < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.garch.std@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e e-03 alpha e e e-08 beta e e e+00 shape e e e+00 plot.sigt(y,fit.garch.std@sigma.t,"garch(1,1) with Student-t errors") 15

16 GARCH(1,1) with Student t errors Log returns ( /+) GARCH(1,1) with skewed Student-t with degrees of freedom (shape) and skewness estimated fit.garch.sstd = garchfit(~garch(1,1),cond.dist="sstd",data=y,trace=f,include.mean=f) fit.garch.sstd Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, cond.dist = "sstd", include.mean = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa34a90a8> [data = y] Conditional Distribution: sstd Coefficient(s): omega alpha1 beta1 skew shape e e e e e+00 Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 1.079e e ** 16

17 alpha e e e-08 *** beta e e < 2e-16 *** skew 9.589e e < 2e-16 *** shape 6.076e e < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.garch.sstd@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e-03 alpha e e-08 beta e e+00 skew e e+00 shape e e+00 plot.sigt(y,fit.garch.sstd@sigma.t,"garch(1,1) with skewed Student-t errors") GARCH(1,1) with skewed Student t errors Log returns ( /+) GARCH(1,1) with Student-t with degrees of freedom (shape) fixed at 3 fit.garch.std3 = garchfit(~garch(1,1),cond.dist="std",shape=3,include.shape=f,data=y,trace=f,include.mea fit.garch.std3 Title: GARCH Modelling 17

18 Call: garchfit(formula = ~garch(1, 1), data = y, shape = 3, cond.dist = "std", include.mean = F, include.shape = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa04f2c08> [data = y] Conditional Distribution: std Coefficient(s): omega alpha1 beta e e e-01 Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 1.451e e ** alpha e e e-06 *** beta e e < 2e-16 *** --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.garch.std3@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e-03 alpha e e-06 beta e e+00 plot.sigt(y,fit.garch.std3@sigma.t,"garch(1,1) with Student-t errosr % df=3") 18

19 GARCH(1,1) with Student t errosr % df=3 Log returns ( /+) GARCH(1,1) with Laplace (a GED with shape fixed at 1) fit.garch.ged = garchfit(~garch(1,1),cond.dist="ged",shape=1,include.shape=f,data=y,trace=f,include.mean fit.garch.ged Title: GARCH Modelling Call: garchfit(formula = ~garch(1, 1), data = y, shape = 1, cond.dist = "ged", include.mean = F, include.shape = F, trace = F) Mean and Variance Equation: data ~ garch(1, 1) <environment: 0x7fafa26409a8> [data = y] Conditional Distribution: ged Coefficient(s): omega alpha1 beta e e e-01 Std. Errors: based on Hessian Error Analysis: Estimate Std. Error t value Pr(> t ) omega 1.571e e ** alpha e e e-06 *** beta e e < 2e-16 *** 19

20 --- Signif. codes: 0 '***' '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 Log Likelihood: normalized: Description: Mon May 28 18:12: by user: fit.garch.ged@fit$matcoef Estimate Std. Error t value Pr(> t ) omega e e e-03 alpha e e e-06 beta e e e+00 plot.sigt(y,fit.garch.ged@sigma.t,"garch(1,1) with GED errors") GARCH(1,1) with GED errors Log returns ( /+) Comparing the estimates of σ t sigma.t = cbind(fit.garch@sigma.t, fit.aparch@sigma.t, fit.tsgarch@sigma.t, fit.tgarch@sigma.t, fit.gjrgarch@sigma.t, egarch.sigma.t, fit.garch.std@sigma.t, fit.garch.std3@sigma.t, fit.garch.sstd@sigma.t, fit.garch.ged@sigma.t) limy=range(sigma.t) par(mfrow=c(1,1)) 20

21 plot(sigma.t[,1],xlab="",ylab="standard deviation",main="",type="l",ylim=limy,axes=false) axis(2);box();axis(1,at=ind,lab=date) for (i in 2:6) lines(sigma.t[,i],col=i) legend("topright",col=1:6,lty=1, legend=c("garch","aparch","ts-garch","t-garch","gjr-garch","egarch")) Standard deviation GARCH APARCH TS GARCH T GARCH GJR GARCH EGARCH par(mfrow=c(1,1)) plot(sigma.t[,1],xlab="",ylab="standard deviation",main="",type="l",ylim=limy,axes=false) axis(2);box();axis(1,at=ind,lab=date) lines(sigma.t[,7],col=2) lines(sigma.t[,8],col=3) lines(sigma.t[,9],col=4) lines(sigma.t[,10],col=5) legend("topright",legend=c("garch","garch t","garch t(3)","garch st","garch GED"),col=1:5,lty=1) Standard deviation GARCH GARCH t GARCH t(3) GARCH st GARCH GED 21

22 Cited references Bollerslev (1986) Generalized Autoregressive Conditional Heteroskedasticity. Journal of Econometrics, 31, Bollerslev (2010) Glossary to ARCH (GARCH) In Volatility and Time Series Econometrics: Essays in Honor of Robert F. Engle. Edited by Bollerslev, Russell and Watson. Chapter 8, pages Ding, Granger and Engle (1993) A Long Memory Property of Stock Market Returns and a New Model. Journal of Empirical Finance, 1, Engle (1982) Autoregressive Conditional Heteroskedasticity with Estimates of the Variance of U.K. Inflation. Econometrica, 50, Glosten, Jagannathan and Runkle (1993) On the Relation Between the Expected Value and the Volatility of the Nominal Excess Return on Stocks, Journal of Finance, 48, Nelson (1991) Conditional Heteroskedasticity in Asset Returns: A New Approach. Econometrica, 59, Schwert (1989) Why Does Stock Market Volatility Change Over Time? Journal of Finance, 44, Taylor (1986) Modeling Financial Time Series. Chichester, UK: John Wiley and Sons. Zakoian (1994) Threshold Heteroskedastic Models. Journal of Economic Dynamics and Control, 18,

1 1 1 2 1 2 2 1 43 123 5 122 3 1 312 1 1 122 1 1 1 1 6 1 7 1 6 1 7 1 3 4 2 312 43 4 3 3 1 1 4 1 1 52 122 54 124 8 1 3 1 1 1 1 1 152 1 1 1 1 1 1 152 1 5 1 152 152 1 1 3 9 1 159 9 13 4 5 1 122 1 4 122 5

Διαβάστε περισσότερα

Supplementary Appendix

Supplementary Appendix Supplementary Appendix Measuring crisis risk using conditional copulas: An empirical analysis of the 2008 shipping crisis Sebastian Opitz, Henry Seidel and Alexander Szimayer Model specification Table

Διαβάστε περισσότερα

Queensland University of Technology Transport Data Analysis and Modeling Methodologies

Queensland University of Technology Transport Data Analysis and Modeling Methodologies Queensland University of Technology Transport Data Analysis and Modeling Methodologies Lab Session #7 Example 5.2 (with 3SLS Extensions) Seemingly Unrelated Regression Estimation and 3SLS A survey of 206

Διαβάστε περισσότερα

Other Test Constructions: Likelihood Ratio & Bayes Tests

Other Test Constructions: Likelihood Ratio & Bayes Tests Other Test Constructions: Likelihood Ratio & Bayes Tests Side-Note: So far we have seen a few approaches for creating tests such as Neyman-Pearson Lemma ( most powerful tests of H 0 : θ = θ 0 vs H 1 :

Διαβάστε περισσότερα

Table 1: Military Service: Models. Model 1 Model 2 Model 3 Model 4 Model 5 Model 6 Model 7 Model 8 Model 9 num unemployed mili mili num unemployed

Table 1: Military Service: Models. Model 1 Model 2 Model 3 Model 4 Model 5 Model 6 Model 7 Model 8 Model 9 num unemployed mili mili num unemployed Tables: Military Service Table 1: Military Service: Models Model 1 Model 2 Model 3 Model 4 Model 5 Model 6 Model 7 Model 8 Model 9 num unemployed mili mili num unemployed mili 0.489-0.014-0.044-0.044-1.469-2.026-2.026

Διαβάστε περισσότερα

Statistical Inference I Locally most powerful tests

Statistical Inference I Locally most powerful tests Statistical Inference I Locally most powerful tests Shirsendu Mukherjee Department of Statistics, Asutosh College, Kolkata, India. shirsendu st@yahoo.co.in So far we have treated the testing of one-sided

Διαβάστε περισσότερα

SECTION II: PROBABILITY MODELS

SECTION II: PROBABILITY MODELS SECTION II: PROBABILITY MODELS 1 SECTION II: Aggregate Data. Fraction of births with low birth weight per province. Model A: OLS, using observations 1 260 Heteroskedasticity-robust standard errors, variant

Διαβάστε περισσότερα

Bayesian statistics. DS GA 1002 Probability and Statistics for Data Science.

Bayesian statistics. DS GA 1002 Probability and Statistics for Data Science. Bayesian statistics DS GA 1002 Probability and Statistics for Data Science http://www.cims.nyu.edu/~cfgranda/pages/dsga1002_fall17 Carlos Fernandez-Granda Frequentist vs Bayesian statistics In frequentist

Διαβάστε περισσότερα

ΧΩΡΙΚΑ ΟΙΚΟΝΟΜΕΤΡΙΚΑ ΥΠΟΔΕΙΓΜΑΤΑ ΣΤΗΝ ΕΚΤΙΜΗΣΗ ΤΩΝ ΤΙΜΩΝ ΤΩΝ ΑΚΙΝΗΤΩΝ SPATIAL ECONOMETRIC MODELS FOR VALUATION OF THE PROPERTY PRICES

ΧΩΡΙΚΑ ΟΙΚΟΝΟΜΕΤΡΙΚΑ ΥΠΟΔΕΙΓΜΑΤΑ ΣΤΗΝ ΕΚΤΙΜΗΣΗ ΤΩΝ ΤΙΜΩΝ ΤΩΝ ΑΚΙΝΗΤΩΝ SPATIAL ECONOMETRIC MODELS FOR VALUATION OF THE PROPERTY PRICES 1 ο Συνέδριο Χωρικής Ανάλυσης: Πρακτικά, Αθήνα, 013, Σ. Καλογήρου (Επ.) ISBN: 978-960-86818-6-6 ΧΩΡΙΚΑ ΟΙΚΟΝΟΜΕΤΡΙΚΑ ΥΠΟΔΕΙΓΜΑΤΑ ΣΤΗΝ ΕΚΤΙΜΗΣΗ ΤΩΝ ΤΙΜΩΝ ΤΩΝ ΑΚΙΝΗΤΩΝ Μαριάνθη Στάμου 1*, Άγγελος Μιμής και

Διαβάστε περισσότερα

22 .5 Real consumption.5 Real residential investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.5 Real house prices.5 Real fixed investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.3 Inflation

Διαβάστε περισσότερα

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM Solutions to Question 1 a) The cumulative distribution function of T conditional on N n is Pr T t N n) Pr max X 1,..., X N ) t N n) Pr max

Διαβάστε περισσότερα

ST5224: Advanced Statistical Theory II

ST5224: Advanced Statistical Theory II ST5224: Advanced Statistical Theory II 2014/2015: Semester II Tutorial 7 1. Let X be a sample from a population P and consider testing hypotheses H 0 : P = P 0 versus H 1 : P = P 1, where P j is a known

Διαβάστε περισσότερα

Statistics 104: Quantitative Methods for Economics Formula and Theorem Review

Statistics 104: Quantitative Methods for Economics Formula and Theorem Review Harvard College Statistics 104: Quantitative Methods for Economics Formula and Theorem Review Tommy MacWilliam, 13 tmacwilliam@college.harvard.edu March 10, 2011 Contents 1 Introduction to Data 5 1.1 Sample

Διαβάστε περισσότερα

Biostatistics for Health Sciences Review Sheet

Biostatistics for Health Sciences Review Sheet Biostatistics for Health Sciences Review Sheet http://mathvault.ca June 1, 2017 Contents 1 Descriptive Statistics 2 1.1 Variables.............................................. 2 1.1.1 Qualitative........................................

Διαβάστε περισσότερα

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required)

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required) Phys460.nb 81 ψ n (t) is still the (same) eigenstate of H But for tdependent H. The answer is NO. 5.5.5. Solution for the tdependent Schrodinger s equation If we assume that at time t 0, the electron starts

Διαβάστε περισσότερα

, Ilmanen 2003 ADCC VAR. NO.2, 2011 Serial NO.315 CONTEMPORARY FINANCE & ECONOMICS JA [1] Cappiello et al.

, Ilmanen 2003 ADCC VAR. NO.2, 2011 Serial NO.315 CONTEMPORARY FINANCE & ECONOMICS JA [1] Cappiello et al. 2011 2 315 CONTEMPORARY FINANCE & ECONOMICS NO.2, 2011 Serial NO.315 361005 A : F830.91 : A : 1005-0892 (2011) 02-0045-09 2010-11- 10, Ilmanen 2003 20 30 50 [1] Cappiello et al. 2006 ADCC [2] Li 2004 Connolly

Διαβάστε περισσότερα

Μηχανική Μάθηση Hypothesis Testing

Μηχανική Μάθηση Hypothesis Testing ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Μηχανική Μάθηση Hypothesis Testing Γιώργος Μπορμπουδάκης Τμήμα Επιστήμης Υπολογιστών Procedure 1. Form the null (H 0 ) and alternative (H 1 ) hypothesis 2. Consider

Διαβάστε περισσότερα

Solution Series 9. i=1 x i and i=1 x i.

Solution Series 9. i=1 x i and i=1 x i. Lecturer: Prof. Dr. Mete SONER Coordinator: Yilin WANG Solution Series 9 Q1. Let α, β >, the p.d.f. of a beta distribution with parameters α and β is { Γ(α+β) Γ(α)Γ(β) f(x α, β) xα 1 (1 x) β 1 for < x

Διαβάστε περισσότερα

Web-based supplementary materials for Bayesian Quantile Regression for Ordinal Longitudinal Data

Web-based supplementary materials for Bayesian Quantile Regression for Ordinal Longitudinal Data Web-based supplementary materials for Bayesian Quantile Regression for Ordinal Longitudinal Data Rahim Alhamzawi, Haithem Taha Mohammad Ali Department of Statistics, College of Administration and Economics,

Διαβάστε περισσότερα

Εργαστήριο Ανάπτυξης Εφαρμογών Βάσεων Δεδομένων. Εξάμηνο 7 ο

Εργαστήριο Ανάπτυξης Εφαρμογών Βάσεων Δεδομένων. Εξάμηνο 7 ο Εργαστήριο Ανάπτυξης Εφαρμογών Βάσεων Δεδομένων Εξάμηνο 7 ο Procedures and Functions Stored procedures and functions are named blocks of code that enable you to group and organize a series of SQL and PL/SQL

Διαβάστε περισσότερα

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM

SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM SOLUTIONS TO MATH38181 EXTREME VALUES AND FINANCIAL RISK EXAM Solutions to Question 1 a) The cumulative distribution function of T conditional on N n is Pr (T t N n) Pr (max (X 1,..., X N ) t N n) Pr (max

Διαβάστε περισσότερα

4.6 Autoregressive Moving Average Model ARMA(1,1)

4.6 Autoregressive Moving Average Model ARMA(1,1) 84 CHAPTER 4. STATIONARY TS MODELS 4.6 Autoregressive Moving Average Model ARMA(,) This section is an introduction to a wide class of models ARMA(p,q) which we will consider in more detail later in this

Διαβάστε περισσότερα

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS CHAPTER 5 SOLVING EQUATIONS BY ITERATIVE METHODS EXERCISE 104 Page 8 1. Find the positive root of the equation x + 3x 5 = 0, correct to 3 significant figures, using the method of bisection. Let f(x) =

Διαβάστε περισσότερα

ΠΩΣ ΕΠΗΡΕΑΖΕΙ Η ΜΕΡΑ ΤΗΣ ΕΒΔΟΜΑΔΑΣ ΤΙΣ ΑΠΟΔΟΣΕΙΣ ΤΩΝ ΜΕΤΟΧΩΝ ΠΡΙΝ ΚΑΙ ΜΕΤΑ ΤΗΝ ΟΙΚΟΝΟΜΙΚΗ ΚΡΙΣΗ

ΠΩΣ ΕΠΗΡΕΑΖΕΙ Η ΜΕΡΑ ΤΗΣ ΕΒΔΟΜΑΔΑΣ ΤΙΣ ΑΠΟΔΟΣΕΙΣ ΤΩΝ ΜΕΤΟΧΩΝ ΠΡΙΝ ΚΑΙ ΜΕΤΑ ΤΗΝ ΟΙΚΟΝΟΜΙΚΗ ΚΡΙΣΗ Σχολή Διοίκησης και Οικονομίας Κρίστια Κυριάκου ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΣΧΟΛΗ ΔΙΟΙΚΗΣΗΣ ΚΑΙ ΟΙΚΟΝΟΜΙΑΣ ΤΜΗΜΑ ΕΜΠΟΡΙΟΥ,ΧΡΗΜΑΤΟΟΙΚΟΝΟΜΙΚΩΝ ΚΑΙ ΝΑΥΤΙΛΙΑΣ Της Κρίστιας Κυριάκου ii Έντυπο έγκρισης Παρουσιάστηκε

Διαβάστε περισσότερα

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- -----------------

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- ----------------- Inverse trigonometric functions & General Solution of Trigonometric Equations. 1. Sin ( ) = a) b) c) d) Ans b. Solution : Method 1. Ans a: 17 > 1 a) is rejected. w.k.t Sin ( sin ) = d is rejected. If sin

Διαβάστε περισσότερα

Generalized additive models in R

Generalized additive models in R www.nr.no Generalized additive models in R Magne Aldrin, Norwegian Computing Center and the University of Oslo Sharp workshop, Copenhagen, October 2012 Generalized Linear Models - GLM y Distributed with

Διαβάστε περισσότερα

: Monte Carlo EM 313, Louis (1982) EM, EM Newton-Raphson, /. EM, 2 Monte Carlo EM Newton-Raphson, Monte Carlo EM, Monte Carlo EM, /. 3, Monte Carlo EM

: Monte Carlo EM 313, Louis (1982) EM, EM Newton-Raphson, /. EM, 2 Monte Carlo EM Newton-Raphson, Monte Carlo EM, Monte Carlo EM, /. 3, Monte Carlo EM 2008 6 Chinese Journal of Applied Probability and Statistics Vol.24 No.3 Jun. 2008 Monte Carlo EM 1,2 ( 1,, 200241; 2,, 310018) EM, E,,. Monte Carlo EM, EM E Monte Carlo,. EM, Monte Carlo EM,,,,. Newton-Raphson.

Διαβάστε περισσότερα

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Aquinas College Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Pearson Edexcel Level 3 Advanced Subsidiary and Advanced GCE in Mathematics and Further Mathematics Mathematical

Διαβάστε περισσότερα

Lecture 7: Overdispersion in Poisson regression

Lecture 7: Overdispersion in Poisson regression Lecture 7: Overdispersion in Poisson regression Claudia Czado TU München c (Claudia Czado, TU Munich) ZFS/IMS Göttingen 2004 0 Overview Introduction Modeling overdispersion through mixing Score test for

Διαβάστε περισσότερα

The Simply Typed Lambda Calculus

The Simply Typed Lambda Calculus Type Inference Instead of writing type annotations, can we use an algorithm to infer what the type annotations should be? That depends on the type system. For simple type systems the answer is yes, and

Διαβάστε περισσότερα

Άσκηση 10, σελ. 119. Για τη μεταβλητή x (άτυπος όγκος) έχουμε: x censored_x 1 F 3 F 3 F 4 F 10 F 13 F 13 F 16 F 16 F 24 F 26 F 27 F 28 F

Άσκηση 10, σελ. 119. Για τη μεταβλητή x (άτυπος όγκος) έχουμε: x censored_x 1 F 3 F 3 F 4 F 10 F 13 F 13 F 16 F 16 F 24 F 26 F 27 F 28 F Άσκηση 0, σελ. 9 από το βιβλίο «Μοντέλα Αξιοπιστίας και Επιβίωσης» της Χ. Καρώνη (i) Αρχικά, εισάγουμε τα δεδομένα στο minitab δημιουργώντας δύο μεταβλητές: τη x για τον άτυπο όγκο και την y για τον τυπικό

Διαβάστε περισσότερα

Homework 3 Solutions

Homework 3 Solutions Homework 3 Solutions Igor Yanovsky (Math 151A TA) Problem 1: Compute the absolute error and relative error in approximations of p by p. (Use calculator!) a) p π, p 22/7; b) p π, p 3.141. Solution: For

Διαβάστε περισσότερα

.5 Real consumption.5 Real residential investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.5 Real house prices.5 Real fixed investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.3 Inflation rate.3

Διαβάστε περισσότερα

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ: Mετακύλιση τιμών βασικών προϊόντων και τροφίμων στην περίπτωση του Νομού Αιτωλοακαρνανίας

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ: Mετακύλιση τιμών βασικών προϊόντων και τροφίμων στην περίπτωση του Νομού Αιτωλοακαρνανίας ΤΜΗΜΑ ΔΙΟΙΚΗΣΗΣ ΕΠΙΧΕΙΡΗΣΕΩΝ ΑΓΡΟΤΙΚΩΝ ΠΡΟΙΟΝΤΩΝ ΚΑΙ ΤΡΟΦΙΜΩΝ MBA ΔΙΟΙΚΗΣΗ ΕΠΙΧΕΙΡΗΣΕΩΝ ΤΡΟΦΙΜΩΝ ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ: Mετακύλιση τιμών βασικών προϊόντων και τροφίμων στην περίπτωση του Νομού Αιτωλοακαρνανίας

Διαβάστε περισσότερα

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013 Notes on Average Scattering imes and Hall Factors Jesse Maassen and Mar Lundstrom Purdue University November 5, 13 I. Introduction 1 II. Solution of the BE 1 III. Exercises: Woring out average scattering

Διαβάστε περισσότερα

Srednicki Chapter 55

Srednicki Chapter 55 Srednicki Chapter 55 QFT Problems & Solutions A. George August 3, 03 Srednicki 55.. Use equations 55.3-55.0 and A i, A j ] = Π i, Π j ] = 0 (at equal times) to verify equations 55.-55.3. This is our third

Διαβάστε περισσότερα

Math 6 SL Probability Distributions Practice Test Mark Scheme

Math 6 SL Probability Distributions Practice Test Mark Scheme Math 6 SL Probability Distributions Practice Test Mark Scheme. (a) Note: Award A for vertical line to right of mean, A for shading to right of their vertical line. AA N (b) evidence of recognizing symmetry

Διαβάστε περισσότερα

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β 3.4 SUM AND DIFFERENCE FORMULAS Page Theorem cos(αβ cos α cos β -sin α cos(α-β cos α cos β sin α NOTE: cos(αβ cos α cos β cos(α-β cos α -cos β Proof of cos(α-β cos α cos β sin α Let s use a unit circle

Διαβάστε περισσότερα

An Inventory of Continuous Distributions

An Inventory of Continuous Distributions Appendi A An Inventory of Continuous Distributions A.1 Introduction The incomplete gamma function is given by Also, define Γ(α; ) = 1 with = G(α; ) = Z 0 Z 0 Z t α 1 e t dt, α > 0, >0 t α 1 e t dt, α >

Διαβάστε περισσότερα

Approximation of distance between locations on earth given by latitude and longitude

Approximation of distance between locations on earth given by latitude and longitude Approximation of distance between locations on earth given by latitude and longitude Jan Behrens 2012-12-31 In this paper we shall provide a method to approximate distances between two points on earth

Διαβάστε περισσότερα

Estimation for ARMA Processes with Stable Noise. Matt Calder & Richard A. Davis Colorado State University

Estimation for ARMA Processes with Stable Noise. Matt Calder & Richard A. Davis Colorado State University Estimation for ARMA Processes with Stable Noise Matt Calder & Richard A. Davis Colorado State University rdavis@stat.colostate.edu 1 ARMA processes with stable noise Review of M-estimation Examples of

Διαβάστε περισσότερα

Matrices and Determinants

Matrices and Determinants Matrices and Determinants SUBJECTIVE PROBLEMS: Q 1. For what value of k do the following system of equations possess a non-trivial (i.e., not all zero) solution over the set of rationals Q? x + ky + 3z

Διαβάστε περισσότερα

Introduction to the ML Estimation of ARMA processes

Introduction to the ML Estimation of ARMA processes Introduction to the ML Estimation of ARMA processes Eduardo Rossi University of Pavia October 2013 Rossi ARMA Estimation Financial Econometrics - 2013 1 / 1 We consider the AR(p) model: Y t = c + φ 1 Y

Διαβάστε περισσότερα

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1)

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1) HW 3 Solutions a) I use the autoarima R function to search over models using AIC and decide on an ARMA3,) b) I compare the ARMA3,) to ARMA,0) ARMA3,) does better in all three criteria c) The plot of the

Διαβάστε περισσότερα

Figure A.2: MPC and MPCP Age Profiles (estimating ρ, ρ = 2, φ = 0.03)..

Figure A.2: MPC and MPCP Age Profiles (estimating ρ, ρ = 2, φ = 0.03).. Supplemental Material (not for publication) Persistent vs. Permanent Income Shocks in the Buffer-Stock Model Jeppe Druedahl Thomas H. Jørgensen May, A Additional Figures and Tables Figure A.: Wealth and

Διαβάστε περισσότερα

ΜΑΘΗΜΑ 3ο. Υποδείγματα μιας εξίσωσης

ΜΑΘΗΜΑ 3ο. Υποδείγματα μιας εξίσωσης ΜΑΘΗΜΑ 3ο Υποδείγματα μιας εξίσωσης Οι βασικές υποθέσεις 1. Ο διαταρακτικός όρος u t είναι μια τυχαία μεταβλητή με μέσο το μηδέν. Eu t = 0 για t = 1,2,3..n 2. Η διακύμανση της τυχαίας μεταβλητής u t είναι

Διαβάστε περισσότερα

Εργαστήριο στατιστικής Στατιστικό πακέτο S.P.S.S.

Εργαστήριο στατιστικής Στατιστικό πακέτο S.P.S.S. Σημειώσεις για το μάθημα Εργαστήριο στατιστικής Στατιστικό πακέτο S.P.S.S. Παπάνα Αγγελική E mail: papanagel@yahoo.gr, agpapana@gen.auth.gr Α.Τ.Ε.Ι. Θεσσαλονίκης ΠΑΡΑΡΤΗΜΑ ΚΑΤΕΡΙΝΗΣ Τμήμα Τυποποίησης και

Διαβάστε περισσότερα

2 Composition. Invertible Mappings

2 Composition. Invertible Mappings Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan Composition. Invertible Mappings In this section we discuss two procedures for creating new mappings from old ones, namely,

Διαβάστε περισσότερα

Optimizing Microwave-assisted Extraction Process for Paprika Red Pigments Using Response Surface Methodology

Optimizing Microwave-assisted Extraction Process for Paprika Red Pigments Using Response Surface Methodology 2012 34 2 382-387 http / /xuebao. jxau. edu. cn Acta Agriculturae Universitatis Jiangxiensis E - mail ndxb7775@ sina. com 212018 105 W 42 2 min 0. 631 TS202. 3 A 1000-2286 2012 02-0382 - 06 Optimizing

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

5.4 The Poisson Distribution.

5.4 The Poisson Distribution. The worst thing you can do about a situation is nothing. Sr. O Shea Jackson 5.4 The Poisson Distribution. Description of the Poisson Distribution Discrete probability distribution. The random variable

Διαβάστε περισσότερα

Προβλέψεις ισοτιμιών στο EViews

Προβλέψεις ισοτιμιών στο EViews Προβλέψεις ισοτιμιών στο EViews Θεωρητικό πλαίσιο προβλέψεων σημείου Σημαντικές επιλογές πλαισίου: Τί θα κάνουμε με την πρόβλεψη; Θα την μοιραστούμε με πολλούς πελάτες, που θα την χρησιμοποιήσουν με διαφορετικό

Διαβάστε περισσότερα

6.3 Forecasting ARMA processes

6.3 Forecasting ARMA processes 122 CHAPTER 6. ARMA MODELS 6.3 Forecasting ARMA processes The purpose of forecasting is to predict future values of a TS based on the data collected to the present. In this section we will discuss a linear

Διαβάστε περισσότερα

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8 questions or comments to Dan Fetter 1

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8  questions or comments to Dan Fetter 1 Eon : Fall 8 Suggested Solutions to Problem Set 8 Email questions or omments to Dan Fetter Problem. Let X be a salar with density f(x, θ) (θx + θ) [ x ] with θ. (a) Find the most powerful level α test

Διαβάστε περισσότερα

HOMEWORK#1. t E(x) = 1 λ = (b) Find the median lifetime of a randomly selected light bulb. Answer:

HOMEWORK#1. t E(x) = 1 λ = (b) Find the median lifetime of a randomly selected light bulb. Answer: HOMEWORK# 52258 李亞晟 Eercise 2. The lifetime of light bulbs follows an eponential distribution with a hazard rate of. failures per hour of use (a) Find the mean lifetime of a randomly selected light bulb.

Διαβάστε περισσότερα

Finite Field Problems: Solutions

Finite Field Problems: Solutions Finite Field Problems: Solutions 1. Let f = x 2 +1 Z 11 [x] and let F = Z 11 [x]/(f), a field. Let Solution: F =11 2 = 121, so F = 121 1 = 120. The possible orders are the divisors of 120. Solution: The

Διαβάστε περισσότερα

η π 2 /3 χ 2 χ 2 t k Y 0/0, 0/1,..., 3/3 π 1, π 2,..., π k k k 1 β ij Y I i = 1,..., I p (X i = x i1,..., x ip ) Y i J (j = 1,..., J) x i Y i = j π j (x i ) x i π j (x i ) x (n 1 (x),..., n J (x))

Διαβάστε περισσότερα

MathCity.org Merging man and maths

MathCity.org Merging man and maths MathCity.org Merging man and maths Exercise 10. (s) Page Textbook of Algebra and Trigonometry for Class XI Available online @, Version:.0 Question # 1 Find the values of sin, and tan when: 1 π (i) (ii)

Διαβάστε περισσότερα

Summary of the model specified

Summary of the model specified Program: HLM 7 Hierarchical Linear and Nonlinear Modeling Authors: Stephen Raudenbush, Tony Bryk, & Richard Congdon Publisher: Scientific Software International, Inc. (c) 2010 techsupport@ssicentral.com

Διαβάστε περισσότερα

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics Fourier Series MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction Not all functions can be represented by Taylor series. f (k) (c) A Taylor series f (x) = (x c)

Διαβάστε περισσότερα

Σεμινάριο Κατάρτισης Financial Econometric Modelling with R Οικονομικό Πανεπιστήμιο Αθηνών, Μαΐου 2017

Σεμινάριο Κατάρτισης Financial Econometric Modelling with R Οικονομικό Πανεπιστήμιο Αθηνών, Μαΐου 2017 Σεμινάριο Κατάρτισης Financial Econometric Modelling with R Οικονομικό Πανεπιστήμιο Αθηνών, 26-28 Μαΐου 2017 Σκοπός Αντικείμενο του Προγράμματος Σκοπός του σεμιναρίου είναι η παρουσίαση, ανάπτυξη και εφαρμογή

Διαβάστε περισσότερα

Research on Economics and Management

Research on Economics and Management 36 5 2015 5 Research on Economics and Management Vol. 36 No. 5 May 2015 490 490 F323. 9 A DOI:10.13502/j.cnki.issn1000-7636.2015.05.007 1000-7636 2015 05-0052 - 10 2008 836 70% 1. 2 2010 1 2 3 2015-03

Διαβάστε περισσότερα

Test Data Management in Practice

Test Data Management in Practice Problems, Concepts, and the Swisscom Test Data Organizer Do you have issues with your legal and compliance department because test environments contain sensitive data outsourcing partners must not see?

Διαβάστε περισσότερα

Χρηματοοικονομική Ανάπτυξη, Θεσμοί και

Χρηματοοικονομική Ανάπτυξη, Θεσμοί και ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΣΧΟΛΗ ΝΟΜΙΚΩΝ, ΟΙΚΟΝΟΜΙΚΩΝ ΚΑΙ ΠΟΛΙΤΙΚΩΝ ΕΠΙΣΤΗΜΩΝ ΤΜΗΜΑ ΟΙΚΟΝΟΜΙΚΩΝ ΕΠΙΣΤΗΜΩΝ Τομέας Ανάπτυξης και Προγραμματισμού Χρηματοοικονομική Ανάπτυξη, Θεσμοί και Οικονομική

Διαβάστε περισσότερα

Λογαριθμικά Γραμμικά Μοντέλα Poisson Παλινδρόμηση Παράδειγμα στο SPSS

Λογαριθμικά Γραμμικά Μοντέλα Poisson Παλινδρόμηση Παράδειγμα στο SPSS Λογαριθμικά Γραμμικά Μοντέλα Poisson Παλινδρόμηση Παράδειγμα στο SPSS Ο παρακάτω πίνακας παρουσιάζει θανάτους από καρδιακή ανεπάρκεια ανάμεσα σε άνδρες γιατρούς οι οποίοι έχουν κατηγοριοποιηθεί κατά ηλικία

Διαβάστε περισσότερα

PENGARUHKEPEMIMPINANINSTRUKSIONAL KEPALASEKOLAHDAN MOTIVASI BERPRESTASI GURU TERHADAP KINERJA MENGAJAR GURU SD NEGERI DI KOTA SUKABUMI

PENGARUHKEPEMIMPINANINSTRUKSIONAL KEPALASEKOLAHDAN MOTIVASI BERPRESTASI GURU TERHADAP KINERJA MENGAJAR GURU SD NEGERI DI KOTA SUKABUMI 155 Lampiran 6 Yayan Sumaryana, 2014 PENGARUHKEPEMIMPINANINSTRUKSIONAL KEPALASEKOLAHDAN MOTIVASI BERPRESTASI GURU TERHADAP KINERJA MENGAJAR GURU SD NEGERI DI KOTA SUKABUMI Universitas Pendidikan Indonesia

Διαβάστε περισσότερα

EE512: Error Control Coding

EE512: Error Control Coding EE512: Error Control Coding Solution for Assignment on Finite Fields February 16, 2007 1. (a) Addition and Multiplication tables for GF (5) and GF (7) are shown in Tables 1 and 2. + 0 1 2 3 4 0 0 1 2 3

Διαβάστε περισσότερα

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ.

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ. Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο The time integral of a force is referred to as impulse, is determined by and is obtained from: Newton s 2 nd Law of motion states that the action

Διαβάστε περισσότερα

An Introduction to Signal Detection and Estimation - Second Edition Chapter II: Selected Solutions

An Introduction to Signal Detection and Estimation - Second Edition Chapter II: Selected Solutions An Introduction to Signal Detection Estimation - Second Edition Chapter II: Selected Solutions H V Poor Princeton University March 16, 5 Exercise : The likelihood ratio is given by L(y) (y +1), y 1 a With

Διαβάστε περισσότερα

χ 2 test ανεξαρτησίας

χ 2 test ανεξαρτησίας χ 2 test ανεξαρτησίας Καθηγητής Ι. Κ. ΔΗΜΗΤΡΙΟΥ demetri@econ.uoa.gr 7.2 Το χ 2 Τεστ Ανεξαρτησίας Tο χ 2 τεστ ανεξαρτησίας (όπως και η παλινδρόμηση) είναι στατιστικά εργαλεία για τον εντοπισμό σχέσεων μεταξύ

Διαβάστε περισσότερα

ΣΤΑΤΙΣΤΙΚΗ ΕΠΙΧΕΙΡΗΣΕΩΝ ΕΙΔΙΚΑ ΘΕΜΑΤΑ. Κεφάλαιο 13. Συμπεράσματα για τη σύγκριση δύο πληθυσμών

ΣΤΑΤΙΣΤΙΚΗ ΕΠΙΧΕΙΡΗΣΕΩΝ ΕΙΔΙΚΑ ΘΕΜΑΤΑ. Κεφάλαιο 13. Συμπεράσματα για τη σύγκριση δύο πληθυσμών ΤΕΧΝΟΛΟΓΙΚΟ ΕΚΠΑΙΔΕΥΤΙΚΟ ΙΔΡΥΜΑ ΔΥΤΙΚΗΣ ΕΛΛΑΔΑΣ ΤΜΗΜΑ ΔΙΟΙΚΗΣΗΣ ΕΠΙΧΕΙΡΗΣΕΩΝ ΠΑΤΡΑΣ Εργαστήριο Λήψης Αποφάσεων & Επιχειρησιακού Προγραμματισμού Καθηγητής Ι. Μητρόπουλος ΣΤΑΤΙΣΤΙΚΗ ΕΠΙΧΕΙΡΗΣΕΩΝ ΕΙΔΙΚΑ ΘΕΜΑΤΑ

Διαβάστε περισσότερα

Example of the Baum-Welch Algorithm

Example of the Baum-Welch Algorithm Example of the Baum-Welch Algorithm Larry Moss Q520, Spring 2008 1 Our corpus c We start with a very simple corpus. We take the set Y of unanalyzed words to be {ABBA, BAB}, and c to be given by c(abba)

Διαβάστε περισσότερα

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics Exploring Data: Distributions Look for overall pattern (shape, center, spread) and deviations (outliers). Mean (use a calculator): x = x 1 + x

Διαβάστε περισσότερα

6.1. Dirac Equation. Hamiltonian. Dirac Eq.

6.1. Dirac Equation. Hamiltonian. Dirac Eq. 6.1. Dirac Equation Ref: M.Kaku, Quantum Field Theory, Oxford Univ Press (1993) η μν = η μν = diag(1, -1, -1, -1) p 0 = p 0 p = p i = -p i p μ p μ = p 0 p 0 + p i p i = E c 2 - p 2 = (m c) 2 H = c p 2

Διαβάστε περισσότερα

Mean bond enthalpy Standard enthalpy of formation Bond N H N N N N H O O O

Mean bond enthalpy Standard enthalpy of formation Bond N H N N N N H O O O Q1. (a) Explain the meaning of the terms mean bond enthalpy and standard enthalpy of formation. Mean bond enthalpy... Standard enthalpy of formation... (5) (b) Some mean bond enthalpies are given below.

Διαβάστε περισσότερα

Supplementary figures

Supplementary figures A Supplementary figures a) DMT.BG2 0.87 0.87 0.72 20 40 60 80 100 DMT.EG2 0.93 0.85 20 40 60 80 EMT.MG3 0.85 0 20 40 60 80 20 40 60 80 100 20 40 60 80 100 20 40 60 80 EMT.G6 DMT/EMT b) EG2 0.92 0.85 5

Διαβάστε περισσότερα

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch:

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch: HOMEWORK 4 Problem a For the fast loading case, we want to derive the relationship between P zz and λ z. We know that the nominal stress is expressed as: P zz = ψ λ z where λ z = λ λ z. Therefore, applying

Διαβάστε περισσότερα

Κόστος Κεφαλαίου. Estimating Inputs: Discount Rates

Κόστος Κεφαλαίου. Estimating Inputs: Discount Rates Αρτίκης Γ. Παναγιώτης Κόστος Κεφαλαίου Estimating Inputs: Discount Rates Critical ingredient in discounted cashflow valuation. Errors in estimating the discount rate or mismatching cashflows and discount

Διαβάστε περισσότερα

5. Choice under Uncertainty

5. Choice under Uncertainty 5. Choice under Uncertainty Daisuke Oyama Microeconomics I May 23, 2018 Formulations von Neumann-Morgenstern (1944/1947) X: Set of prizes Π: Set of probability distributions on X : Preference relation

Διαβάστε περισσότερα

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD CHAPTER FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD EXERCISE 36 Page 66. Determine the Fourier series for the periodic function: f(x), when x +, when x which is periodic outside this rge of period.

Διαβάστε περισσότερα

Instruction Execution Times

Instruction Execution Times 1 C Execution Times InThisAppendix... Introduction DL330 Execution Times DL330P Execution Times DL340 Execution Times C-2 Execution Times Introduction Data Registers This appendix contains several tables

Διαβάστε περισσότερα

w o = R 1 p. (1) R = p =. = 1

w o = R 1 p. (1) R = p =. = 1 Πανεπιστήµιο Κρήτης - Τµήµα Επιστήµης Υπολογιστών ΗΥ-570: Στατιστική Επεξεργασία Σήµατος 205 ιδάσκων : Α. Μουχτάρης Τριτη Σειρά Ασκήσεων Λύσεις Ασκηση 3. 5.2 (a) From the Wiener-Hopf equation we have:

Διαβάστε περισσότερα

NOB= Dickey=Fuller Engle-Granger., P. ( ). NVAR=Engle-Granger/Dickey-Fuller. 1( ), 6. CONSTANT/NOCONST (C) Dickey-Fuller. NOCONST NVAR=1. TREND/NOTREN

NOB= Dickey=Fuller Engle-Granger., P. ( ). NVAR=Engle-Granger/Dickey-Fuller. 1( ), 6. CONSTANT/NOCONST (C) Dickey-Fuller. NOCONST NVAR=1. TREND/NOTREN CDF(BIVNORM or CHISQ or DICKEYF or F or NORMAL or T or WTDCHI, DF=CHISQ T, DF1=F, DF2=F, NLAGS= Dickey-Fuller, NOB=, NVAR=, RHO=BIVNORM, EIGVAL=WTDCHI, LOWTAIL or UPTAIL or TWOTAIL, CONSTANT, TREND, TSQ,

Διαβάστε περισσότερα

5.1 logistic regresssion Chris Parrish July 3, 2016

5.1 logistic regresssion Chris Parrish July 3, 2016 5.1 logistic regresssion Chris Parrish July 3, 2016 Contents logistic regression model 1 1992 vote 1 data..................................................... 1 model....................................................

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Αν κάπου κάνετε κάποιες υποθέσεις να αναφερθούν στη σχετική ερώτηση. Όλα τα αρχεία που αναφέρονται στα προβλήματα βρίσκονται στον ίδιο φάκελο με το εκτελέσιμο

Διαβάστε περισσότερα

The Impact of Stopping IPO in Shenzhen A Stock Market on Guiding Pattern of Information in China s Stock Markets

The Impact of Stopping IPO in Shenzhen A Stock Market on Guiding Pattern of Information in China s Stock Markets 2005 9 9 :100026788 (2005) 0920036206,, (, 230009) :,.,, A ;, A A, A A.,2000 10,.,,,. : ; ; ; : F830191 : A The Impact of Stopping IPO in Shenzhen A Stock Market on Guiding Pattern of Information in China

Διαβάστε περισσότερα

( ) 2 and compare to M.

( ) 2 and compare to M. Problems and Solutions for Section 4.2 4.9 through 4.33) 4.9 Calculate the square root of the matrix 3!0 M!0 8 Hint: Let M / 2 a!b ; calculate M / 2!b c ) 2 and compare to M. Solution: Given: 3!0 M!0 8

Διαβάστε περισσότερα

RCA models with correlated errors

RCA models with correlated errors Applied Mathematics Letters 19 (006) 84 89 www.elsevier.com/locate/aml RCA models with correlated errors S.S. Appadoo a,a.thavaneswaran a,,jagbir Singh b a Department of Statistics, The University of Manitoba,

Διαβάστε περισσότερα

255 (log-normal distribution) 83, 106, 239 (malus) 26 - (Belgian BMS, Markovian presentation) 32 (median premium calculation principle) 186 À / Á (goo

255 (log-normal distribution) 83, 106, 239 (malus) 26 - (Belgian BMS, Markovian presentation) 32 (median premium calculation principle) 186 À / Á (goo (absolute loss function)186 - (posterior structure function)163 - (a priori rating variables)25 (Bayes scale) 178 (bancassurance)233 - (beta distribution)203, 204 (high deductible)218 (bonus)26 ( ) (total

Διαβάστε περισσότερα

Homework for 1/27 Due 2/5

Homework for 1/27 Due 2/5 Name: ID: Homework for /7 Due /5. [ 8-3] I Example D of Sectio 8.4, the pdf of the populatio distributio is + αx x f(x α) =, α, otherwise ad the method of momets estimate was foud to be ˆα = 3X (where

Διαβάστε περισσότερα

Section 7.6 Double and Half Angle Formulas

Section 7.6 Double and Half Angle Formulas 09 Section 7. Double and Half Angle Fmulas To derive the double-angles fmulas, we will use the sum of two angles fmulas that we developed in the last section. We will let α θ and β θ: cos(θ) cos(θ + θ)

Διαβάστε περισσότερα

SCITECH Volume 13, Issue 2 RESEARCH ORGANISATION Published online: March 29, 2018

SCITECH Volume 13, Issue 2 RESEARCH ORGANISATION Published online: March 29, 2018 Journal of rogressive Research in Mathematics(JRM) ISSN: 2395-028 SCITECH Volume 3, Issue 2 RESEARCH ORGANISATION ublished online: March 29, 208 Journal of rogressive Research in Mathematics www.scitecresearch.com/journals

Διαβάστε περισσότερα

6. MAXIMUM LIKELIHOOD ESTIMATION

6. MAXIMUM LIKELIHOOD ESTIMATION 6 MAXIMUM LIKELIHOOD ESIMAION [1] Maximum Likelihood Estimator (1) Cases in which θ (unknown parameter) is scalar Notational Clarification: From now on, we denote the true value of θ as θ o hen, view θ

Διαβάστε περισσότερα

ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ

ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ Διπλωματική Εργασία του φοιτητή του τμήματος Ηλεκτρολόγων Μηχανικών και Τεχνολογίας Ηλεκτρονικών

Διαβάστε περισσότερα

Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1

Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1 Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1 Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 2 Dervish Abu Bekr, «Παραμύθια τησ Χαλιμϊσ, τομ. Α» Ιούνιοσ 2013 Φωτo εξωφύλλου: Βαςιλεύα Αςπαςύα Μαςούρα Επιμϋλεια ϋκδοςησ:

Διαβάστε περισσότερα

/

/ : 2014 2010 2015/2014 : 2014 2010 2015/2014 I II الملخص The aim of this study is to know the effect of the number of the financial indicators on the prices of organizations shares in Dubai s stock exchange,

Διαβάστε περισσότερα

Exercises to Statistics of Material Fatigue No. 5

Exercises to Statistics of Material Fatigue No. 5 Prof. Dr. Christine Müller Dipl.-Math. Christoph Kustosz Eercises to Statistics of Material Fatigue No. 5 E. 9 (5 a Show, that a Fisher information matri for a two dimensional parameter θ (θ,θ 2 R 2, can

Διαβάστε περισσότερα

APPENDICES APPENDIX A. STATISTICAL TABLES AND CHARTS 651 APPENDIX B. BIBLIOGRAPHY 677 APPENDIX C. ANSWERS TO SELECTED EXERCISES 679

APPENDICES APPENDIX A. STATISTICAL TABLES AND CHARTS 651 APPENDIX B. BIBLIOGRAPHY 677 APPENDIX C. ANSWERS TO SELECTED EXERCISES 679 APPENDICES APPENDIX A. STATISTICAL TABLES AND CHARTS 1 Table I Summary of Common Probability Distributions 2 Table II Cumulative Standard Normal Distribution Table III Percentage Points, 2 of the Chi-Squared

Διαβάστε περισσότερα

DNB W o r k i n g P a p e r. Forecasting Financial Stress. No. 292 / April 2011. Jan Willem Slingenberg and Jakob de Haan

DNB W o r k i n g P a p e r. Forecasting Financial Stress. No. 292 / April 2011. Jan Willem Slingenberg and Jakob de Haan DNB Working Paper No. 292 / April 2011 Jan Willem Slingenberg and Jakob de Haan Forecasting Financial Stress DNB W o r k i n g P a p e r Forecasting financial stress Jan Willem Slingenberg and Jakob de

Διαβάστε περισσότερα