STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI

Size: px
Start display at page:

Download "STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI"

Transcription

1 STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI LEZIONE 5: REGRESSIONE Procedura Reg REGR1.SAS proc reg data=mylib.taranto; model lungmg=altmg; plot r.*p.; /* grafico dei residui risp. a previsti */ run; /* disegno la retta di regressione */ goptions device=win; symbol1 i=rl v=star; title 'retta di regressione'; proc gplot; plot pesomg*altmg; run; The SAS System 14:44 Tuesday, November 30, Model: MODEL1 Dependent Variable: lungmg Model <.0001 Error Corrected Total Root MSE R-Square Dependent Mean Adj R-Sq Coeff Var Parameter Estimates Parameter Standard Variable DF Estimate Error Valore t Pr > t Intercept <.0001 altmg <

2 /* disegno la retta di regressione */ goptions device=win; symbol1 i=rl v=star; title 'retta di regressione'; proc gplot data=mylib.taranto; plot pesomg*altmg; run; 2

3 REGR2.SAS proc reg data=mylib.taranto; model pesomg=altmg lungmg; plot pesomg * p.; /*grafico val. osservati risp. a valori previsti */ plot r.*altmg; /* grafici dei residui rispetto ai regressori*/ plot r.*lungmg; plot npp.*r.; /*normal probability plot dei residui*/ run; quit; 3

4 MODALITA.SAS data a; filename dati1 'E:\didattica\aa04-05\statmat1\spaz3.dat'; infile dati1; input z temp salinity do ph x y; xy=x*y; x2=x*x; y2=y*y; cards; proc reg; model do=x y xy x2 y2 / selection=forward; 4

5 model do=x y xy x2 y2 / selection=backward; model do=x y xy x2 y2 / selection=stepwise; model do=x y xy x2 y2 / selection=maxr; run; quit; The SAS System 15:28 Tuesday, November 30, Model: MODEL1 Forward Selection: Step 1 Variable y2 Entered: R-Square = and C(p) = Model <.0001 Error Intercept <.0001 y <.0001 Bounds on condition number: 1, 1 Forward Selection: Step 2 Variable x2 Entered: R-Square = and C(p) = Model <.0001 Error The SAS System 15:28 Tuesday, November 30, Model: MODEL1 Forward Selection: Step 2 5

6 Intercept <.0001 x <.0001 y <.0001 Bounds on condition number: , Forward Selection: Step 3 Variable xy Entered: R-Square = and C(p) = Model <.0001 Error Intercept <.0001 xy x <.0001 y Bounds on condition number: , Forward Selection: Step 4 Variable y Entered: R-Square = and C(p) = The SAS System 15:28 Tuesday, November 30, Model: MODEL1 Forward Selection: Step 4 Model <.0001 Error

7 Intercept <.0001 y xy x <.0001 y Bounds on condition number: , No other variable met the significance level for entry into the model. Summary of Forward Selection Variable Number Partial Model Valore Step Entered Vars In R-Square R-Square C(p) F Pr > F 1 y < x < xy y The SAS System 15:28 Tuesday, November 30, Model: MODEL2 Backward Elimination: Step 0 All Variables Entered: R-Square = and C(p) = Model <.0001 Error Intercept <.0001 x y xy x y Bounds on condition number: , Backward Elimination: Step 1 7

8 Variable x Removed: R-Square = and C(p) = Model <.0001 Error The SAS System 15:28 Tuesday, November 30, Model: MODEL2 Backward Elimination: Step 1 Intercept <.0001 y xy x <.0001 y Bounds on condition number: , Backward Elimination: Step 2 Variable y Removed: R-Square = and C(p) = Model <.0001 Error Intercept <.0001 xy x <.0001 y Bounds on condition number: , Backward Elimination: Step 3 8

9 Variable xy Removed: R-Square = and C(p) = The SAS System 15:28 Tuesday, November 30, Model: MODEL2 Backward Elimination: Step 3 Model <.0001 Error Intercept <.0001 x <.0001 y <.0001 Bounds on condition number: , All variables left in the model are significant at the level. Summary of Backward Elimination Variable Number Partial Model Valore Step Removed Vars In R-Square R-Square C(p) F Pr > F 1 x y xy The SAS System 15:28 Tuesday, November 30, Model: MODEL3 Stepwise Selection: Step 1 Variable y2 Entered: R-Square = and C(p) =

10 Model <.0001 Error Intercept <.0001 y <.0001 Bounds on condition number: 1, 1 Stepwise Selection: Step 2 Variable x2 Entered: R-Square = and C(p) = Model <.0001 Error The SAS System 15:28 Tuesday, November 30, Model: MODEL3 Stepwise Selection: Step 2 Intercept <.0001 x <.0001 y <.0001 Bounds on condition number: , Stepwise Selection: Step 3 Variable xy Entered: R-Square = and C(p) =

11 Model <.0001 Error Intercept <.0001 xy x <.0001 y Bounds on condition number: , All variables left in the model are significant at the level. No other variable met the significance level for entry into the model. The SAS System 15:28 Tuesday, November 30, Model: MODEL3 Summary of Stepwise Selection Variable Variable Number Partial Model Valore Step Entered Removed Vars In R-Square R-Square C(p) F Pr > F 1 y < x < xy The SAS System 15:28 Tuesday, November 30, Model: MODEL4 Maximum R-Square Improvement: Step 1 Variable y2 Entered: R-Square = and C(p) = Model <.0001 Error

12 Intercept <.0001 y <.0001 Bounds on condition number: 1, 1 The above model is the best 1-variable model found. Maximum R-Square Improvement: Step 2 Variable x2 Entered: R-Square = and C(p) = Model <.0001 Error The SAS System 15:28 Tuesday, November 30, Model: MODEL4 Maximum R-Square Improvement: Step 2 Intercept <.0001 x <.0001 y <.0001 Bounds on condition number: , The above model is the best 2-variable model found. Maximum R-Square Improvement: Step 3 Variable xy Entered: R-Square = and C(p) = Model <.0001 Error

13 Intercept <.0001 xy x <.0001 y Bounds on condition number: , The above model is the best 3-variable model found. Maximum R-Square Improvement: Step 4 The SAS System 15:28 Tuesday, November 30, Model: MODEL4 Maximum R-Square Improvement: Step 4 Variable y Entered: R-Square = and C(p) = Model <.0001 Error Intercept <.0001 y xy x <.0001 y Bounds on condition number: , The above model is the best 4-variable model found. Maximum R-Square Improvement: Step 5 Variable x Entered: R-Square = and C(p) =

14 Model <.0001 Error The SAS System 15:28 Tuesday, November 30, Model: MODEL4 Maximum R-Square Improvement: Step 5 Intercept <.0001 x y xy x y Bounds on condition number: , The above model is the best 5-variable model found. No further improvement in R-Square is possible. ESERCIZIO Si utilizzino i dati, contenuti in Africa.xls, che rappresentano l estensione, il reddito pro capite, la popolazione presente nella capitale, la popolazione attiva (adulti lavoratori) e la popolazione urbana di alcuni stati dell Africa. Superficie(Kmq) PNL pro capite Popolazione capitale Popolazione attiva Popolazione urbana C e una relazione significativa fra il reddito pro capite (PNL pro capite) e le altre variabili? 14

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING Multiple (Linear) Regression Introductory example Page 1 1 options ps=256 ls=132 nocenter nodate nonumber; 3 DATA ONE; 4 TITLE1 ''; 5 INPUT X1 X2 X3 Y; 6 **** LABEL Y ='Plant available phosphorus' 7 X1='Inorganic

More information

The SAS System 11:03 Monday, November 11,

The SAS System 11:03 Monday, November 11, The SAS System 11:3 Monday, November 11, 213 1 The CONTENTS Procedure Data Set Name BIO.AUTO_PREMIUMS Observations 5 Member Type DATA Variables 3 Engine V9 Indexes Created Monday, November 11, 213 11:4:19

More information

Homework 0 Key (not to be handed in) due? Jan. 10

Homework 0 Key (not to be handed in) due? Jan. 10 Homework 0 Key (not to be handed in) due? Jan. 10 The results of running diamond.sas is listed below: Note: I did slightly reduce the size of some of the graphs so that they would fit on the page. The

More information

ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key

ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key ECG 752: Econometrics II Spring 2005 Assessed Computer Assignment 3: Answer Key Question 1 The time series plots of x(d), x(bw) and x(m) are presented below. 1 A common characteristic of all series is

More information

SAS Simple Linear Regression Example

SAS Simple Linear Regression Example SAS Simple Linear Regression Example This handout gives examples of how to use SAS to generate a simple linear regression plot, check the correlation between two variables, fit a simple linear regression

More information

Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats

Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats EXST3201 Chapter 11b Geaghan Fall 2005: Page 1 Chapter 11 : Model checking and refinement An example: Blood-brain barrier study on rats This study investigates the permeability of the blood-brain barrier

More information

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly.

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. The MEANS Procedure Variable Mean Std Dev Minimum Maximum Skewness ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ

More information

Topic 8: Model Diagnostics

Topic 8: Model Diagnostics Topic 8: Model Diagnostics Outline Diagnostics to check model assumptions Diagnostics concerning X Diagnostics using the residuals Diagnostics and remedial measures Diagnostics: look at the data to diagnose

More information

DETERMINANTS OF THE RELATIVE IMPORTANCE OF EDUCATION IN LOW-INCOME AND LOWER-MIDDLE INCOME COUNTRIES *

DETERMINANTS OF THE RELATIVE IMPORTANCE OF EDUCATION IN LOW-INCOME AND LOWER-MIDDLE INCOME COUNTRIES * Author: MINH QUANG DAO Eastern Illinois University, Charleston, Illinois, USA DETERMINANTS OF THE RELATIVE IMPORTANCE OF EDUCATION IN LOW-INCOME AND LOWER-MIDDLE INCOME COUNTRIES * ABSTRACT This paper

More information

Intro. Econometrics Fall 2015

Intro. Econometrics Fall 2015 ECO 5350 Prof. Tom Fomby Intro. Econometrics Fall 2015 MIDTERM EXAM TAKE-HOME PART KEY Assignment of Points: Q5.5 (2, 2, 3, 3) = 10 Q5.9 (2, 3, 2, 3) = 10 Q5.15 (2, 3, 3) = 8 Q5.18 (3, 3) = 6 Total = 34

More information

Topic 30: Random Effects Modeling

Topic 30: Random Effects Modeling Topic 30: Random Effects Modeling Outline One-way random effects model Data Model Inference Data for one-way random effects model Y, the response variable Factor with levels i = 1 to r Y ij is the j th

More information

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total Jenn Selensky gathered data from students in an introduction to psychology course. The data are weights, sex/gender, and whether or not the student worked-out in the gym. Here is the output from a 2 x

More information

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron Easerling 1 Are the movements of stocks, bonds, and housing linked? Zachary D Easterling 1140324 Department of Economics The University of Akron One of the key ideas in monetary economics is that the prices

More information

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and Paper PH100 Relationship between Total charges and Reimbursements in Outpatient Visits Using SAS GLIMMIX Chakib Battioui, University of Louisville, Louisville, KY ABSTRACT The purpose of this paper is

More information

Modelli Grafici Probabilistici (2): concetti generali

Modelli Grafici Probabilistici (2): concetti generali Modelli Grafici Probabilistici (2): concetti generali Corso di Modelli di Computazione Affettiva Prof. Giuseppe Boccignone Dipartimento di Informatica Università di Milano boccignone@di.unimi.it Giuseppe.Boccignone@unimi.it

More information

1.1 ANNUAL PRICE MODEL

1.1 ANNUAL PRICE MODEL 1.1 ANNUAL PRICE MODEL Annual ex-vessel price model is updated each year to take into account the recent changes in sea scallop markets both domestically and internationally. This model estimates the degree

More information

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19 Thomas R. Teehan Senior Counsel April 29, 2011 VIA HAND DELIVERY & ELECTRONIC MAIL Luly E. Massaro, Commission Clerk Rhode Island Public Utilities Commission 89 Jefferson Boulevard Warwick, RI 02888 RE:

More information

Pirelli & C. ApA: consolidated financial statements for the first half of 2001

Pirelli & C. ApA: consolidated financial statements for the first half of 2001 Pirelli & C. ApA: consolidated financial statements for the first half of 2001 th Milan, September 11, 2001 - The Board of Managing Directors of Pirelli & C. met today and approved the financial statements

More information

Financial Time Series Analysis (FTSA)

Financial Time Series Analysis (FTSA) Financial Time Series Analysis (FTSA) Lecture 6: Conditional Heteroscedastic Models Few models are capable of generating the type of ARCH one sees in the data.... Most of these studies are best summarized

More information

MODEL SELECTION CRITERIA IN R:

MODEL SELECTION CRITERIA IN R: 1. R 2 statistics We may use MODEL SELECTION CRITERIA IN R R 2 = SS R SS T = 1 SS Res SS T or R 2 Adj = 1 SS Res/(n p) SS T /(n 1) = 1 ( ) n 1 (1 R 2 ). n p where p is the total number of parameters. R

More information

The fundamentals of the derivation of the CAPM can be outlined as follows:

The fundamentals of the derivation of the CAPM can be outlined as follows: Summary & Review o the Capital Asset Pricing Model The undamentals o the derivation o the CAPM can be outlined as ollows: (1) Risky investment opportunities create a Bullet o portolio alternatives. That

More information

Appropriate exploratory analysis including profile plots and transformation of variables (i.e. log(nihss)) as appropriate will occur.

Appropriate exploratory analysis including profile plots and transformation of variables (i.e. log(nihss)) as appropriate will occur. Final Examination Project Biostatistics 581 Winter 2009 William Meurer, M.D. Introduction: The NINDS tpa stroke study was published in 1995. This medication remains the only FDA approved medication for

More information

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns.

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns. ARCH/GARCH Models 1 Risk Management Risk: the quantifiable likelihood of loss or less-than-expected returns. In recent decades the field of financial risk management has undergone explosive development.

More information

Time series data: Part 2

Time series data: Part 2 Plot of Epsilon over Time -- Case 1 1 Time series data: Part Epsilon - 1 - - - -1 1 51 7 11 1 151 17 Time period Plot of Epsilon over Time -- Case Plot of Epsilon over Time -- Case 3 1 3 1 Epsilon - Epsilon

More information

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez Modeling Panel Data: Choosing the Correct Strategy Roberto G. Gutierrez 2 / 25 #analyticsx Overview Panel data are ubiquitous in not only economics, but in all fields Panel data have intrinsic modeling

More information

> attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount")

> attach(grocery) > boxplot(sales~discount, ylab=sales,xlab=discount) Example of More than 2 Categories, and Analysis of Covariance Example > attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount") Sales 160 200 240 > tapply(sales,discount,mean) 10.00% 15.00%

More information

Handout seminar 6, ECON4150

Handout seminar 6, ECON4150 Handout seminar 6, ECON4150 Herman Kruse March 17, 2013 Introduction - list of commands This week, we need a couple of new commands in order to solve all the problems. hist var1 if var2, options - creates

More information

Epidemiology Principle of Biostatistics Chapter 5 Probability Distributions (continued) John Koval

Epidemiology Principle of Biostatistics Chapter 5 Probability Distributions (continued) John Koval Epidemiology 9509 Principle of Biostatistics Chapter 5 Probability Distributions (continued) John Koval Department of Epidemiology and Biostatistics University of Western Ontario What was covered previously

More information

L analisi delle revisioni dei Conti Economici Trimestrali

L analisi delle revisioni dei Conti Economici Trimestrali GIORNATE DELLA RICERCA IN ISTAT 10-11 NOVEMBRE 2014 SESSIONE V ANALISI DELLE SERIE STORICHE L analisi delle revisioni dei Conti Economici Trimestrali Maria Giovanna Piras Revisions Analysis of Italian

More information

Five Things You Should Know About Quantile Regression

Five Things You Should Know About Quantile Regression Five Things You Should Know About Quantile Regression Robert N. Rodriguez and Yonggang Yao SAS Institute #analyticsx Copyright 2016, SAS Institute Inc. All rights reserved. Quantile regression brings the

More information

8.1 Example: Hormone treatment of steers Example with different slopes Example: Concentration of a hormone in cattle...

8.1 Example: Hormone treatment of steers Example with different slopes Example: Concentration of a hormone in cattle... St@tmaster 02429/MIXED LINEAR MODELS PREPARED BY THE STATISTICS GROUPS AT IMM, DTU AND KU-LIFE Module 8: SAS 8.1 Example: Hormone treatment of steers................. 1 8.2 Example with different slopes.....................

More information

1. Distinguish three missing data mechanisms:

1. Distinguish three missing data mechanisms: 1 DATA SCREENING I. Preliminary inspection of the raw data make sure that there are no obvious coding errors (e.g., all values for the observed variables are in the admissible range) and that all variables

More information

Repubblica. Camen" L evoluzione del contesto normativo ATURA - DISEGI\ UMENTI - DOC.

Repubblica. Camen L evoluzione del contesto normativo ATURA - DISEGI\ UMENTI - DOC. 161 L evoluzione del contesto normativo group specific parameters, 162 Relazione sull attività svolta unbundling Sono state chiuse le pubbliche consultazioni sui seguenti schemi di regolamento: - Ring-fenced

More information

ENEL PUBBLICA IL REPORT SUI DATI OPERATIVI DI GRUPPO DEL TERZO TRIMESTRE E DEI PRIMI NOVE MESI 2018

ENEL PUBBLICA IL REPORT SUI DATI OPERATIVI DI GRUPPO DEL TERZO TRIMESTRE E DEI PRIMI NOVE MESI 2018 Relazioni con i Media Investor Relations T +39 06 8305 5699 T +39 06 8305 7975 F +39 06 8305 3771 F +39 06 8305 7940 ufficiostampa@enel.com investor.relations@enel.com enel.com enel.com ENEL PUBBLICA IL

More information

Il lavoro del Fondo Monetario Internazionale (FMI) su Disuguaglianza e Genere. Marzo 2018 Stefania Fabrizio e Marina Mendes Tevares

Il lavoro del Fondo Monetario Internazionale (FMI) su Disuguaglianza e Genere. Marzo 2018 Stefania Fabrizio e Marina Mendes Tevares Il lavoro del Fondo Monetario Internazionale (FMI) su Disuguaglianza e Genere Marzo 2018 Stefania Fabrizio e Marina Mendes Tevares Perché il FMI si occupa di disuguaglianza? Macro-criticitá Produttivitá

More information

COMPARING FINANCIAL PORTFOLIOS STYLE THROUGH QUANTILE REGRESSION 1

COMPARING FINANCIAL PORTFOLIOS STYLE THROUGH QUANTILE REGRESSION 1 Statistica Applicata Vol. 18, n. 2, 2006 375 COMPARING FINANCIAL PORTFOLIOS STYLE THROUGH QUANTILE REGRESSION 1 Laura Attardi Dipartimento di Progettazione Aeronautica, Università di Napoli Federico II

More information

Estimation Procedure for Parametric Survival Distribution Without Covariates

Estimation Procedure for Parametric Survival Distribution Without Covariates Estimation Procedure for Parametric Survival Distribution Without Covariates The maximum likelihood estimates of the parameters of commonly used survival distribution can be found by SAS. The following

More information

Business cycle. Giovanni Di Bartolomeo Sapienza University of Rome Department of economics and law

Business cycle. Giovanni Di Bartolomeo Sapienza University of Rome Department of economics and law Sapienza University of Rome Department of economics and law Advanced Monetary Theory and Policy EPOS 2013/14 Business cycle Giovanni Di Bartolomeo giovanni.dibartolomeo@uniroma1.it US Real GDP Real GDP

More information

1.0 APPENDIX I ECONOMIC MODEL

1.0 APPENDIX I ECONOMIC MODEL 1.0 APPENDIX I ECONOMIC MODEL 1.1 ESTIMATION OF PRICES, COSTS, PROFITS AND NATIONAL BENEFITS The economic model includes an ex-vessel price equation, a cost function and a set of equations describing the

More information

Chapter 8. Sampling and Estimation. 8.1 Random samples

Chapter 8. Sampling and Estimation. 8.1 Random samples Chapter 8 Sampling and Estimation We discuss in this chapter two topics that are critical to most statistical analyses. The first is random sampling, which is a method for obtaining observations from a

More information

Analysis of Variance in Matrix form

Analysis of Variance in Matrix form Analysis of Variance in Matrix form The ANOVA table sums of squares, SSTO, SSR and SSE can all be expressed in matrix form as follows. week 9 Multiple Regression A multiple regression model is a model

More information

1 Estimating risk factors for IBM - using data 95-06

1 Estimating risk factors for IBM - using data 95-06 1 Estimating risk factors for IBM - using data 95-06 Basic estimation of asset pricing models, using IBM returns data Market model r IBM = a + br m + ɛ CAPM Fama French 1.1 Using octave/matlab er IBM =

More information

A customization of modefinance s Credit Limit, according to customer needs.

A customization of modefinance s Credit Limit, according to customer needs. A customization of modefinance s Credit Limit, according to customer needs. Andrea Sorrentino andrea.sorrentino@modefinance.com www.modefinance.com @modefinance facebook.com/modefinance linkedin.com/company/modefinance

More information

Lecture 21: Logit Models for Multinomial Responses Continued

Lecture 21: Logit Models for Multinomial Responses Continued Lecture 21: Logit Models for Multinomial Responses Continued Dipankar Bandyopadhyay, Ph.D. BMTRY 711: Analysis of Categorical Data Spring 2011 Division of Biostatistics and Epidemiology Medical University

More information

Stat 328, Summer 2005

Stat 328, Summer 2005 Stat 328, Summer 2005 Exam #2, 6/18/05 Name (print) UnivID I have neither given nor received any unauthorized aid in completing this exam. Signed Answer each question completely showing your work where

More information

COMUNICATO STAMPA INTESA SANPAOLO: L'ANALISI DELL'EBA SUI DATI DI SETTEMBRE 2011 CONFERMA L'ADEGUATEZZA PATRIMONIALE DEL GRUPPO

COMUNICATO STAMPA INTESA SANPAOLO: L'ANALISI DELL'EBA SUI DATI DI SETTEMBRE 2011 CONFERMA L'ADEGUATEZZA PATRIMONIALE DEL GRUPPO COMUNICATO STAMPA INTESA SANPAOLO: L'ANALISI DELL'EBA SUI DATI DI SETTEMBRE 2011 CONFERMA L'ADEGUATEZZA PATRIMONIALE DEL GRUPPO Torino, Milano, 8 dicembre 2011 Intesa Sanpaolo prende atto delle comunicazioni

More information

G-SIBs Indicatori quantitativi dati al 31 Dicembre 2016

G-SIBs Indicatori quantitativi dati al 31 Dicembre 2016 G-SIBs Indicatori quantitativi dati al 31 Dicembre 2016 2 >> G-SIBs Indicatori di rilevanza sistemica Disclosure di tutte le variabili che concorrono a determinare i 12 Indicatori di rilevanza sistemica

More information

EUROPEAN AND GLOBAL INVESTMENTS LIMITED. (Società di Gestione) RBC INVESTOR SERVICES BANK S.A., DUBLIN BRANCH. (Banca Depositaria)

EUROPEAN AND GLOBAL INVESTMENTS LIMITED. (Società di Gestione) RBC INVESTOR SERVICES BANK S.A., DUBLIN BRANCH. (Banca Depositaria) EUROPEAN AND GLOBAL INVESTMENTS LIMITED (Società di Gestione) RBC INVESTOR SERVICES BANK S.A., DUBLIN BRANCH (Banca Depositaria) TERZO SUPPLEMENTO AL REGOLAMENTO REVISIONATO E CONSOLIDATO che istituisce

More information

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link';

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link'; BIOS 6244 Analysis of Categorical Data Assignment 5 s 1. Consider Exercise 4.4, p. 98. (i) Write the SAS code, including the DATA step, to fit the linear probability model and the logit model to the data

More information

CONFERENCE CALL: RESULTS 1Q Milano, May 15, 2012

CONFERENCE CALL: RESULTS 1Q Milano, May 15, 2012 CONFERENCE CALL: RESULTS 1Q 2012 A social Core Business A core business targeted at environmental protection Every day, BIANCAMANO, leading private sector operator in the industry, carries out crucial

More information

THE ASSOCIATION BETWEEN INCOME INEQUALITY AND HEALTH IN ADVANCED COUNTRIES

THE ASSOCIATION BETWEEN INCOME INEQUALITY AND HEALTH IN ADVANCED COUNTRIES Authors: STEPHEN FOREMAN, Robert Morris University, Department of Nursing and Department of Economics, Pittsburgh, Pennsylvania THE ASSOCIATION BETWEEN INCOME INEQUALITY AND HEALTH IN ADVANCED COUNTRIES

More information

F^3: F tests, Functional Forms and Favorite Coefficient Models

F^3: F tests, Functional Forms and Favorite Coefficient Models F^3: F tests, Functional Forms and Favorite Coefficient Models Favorite coefficient model: otherteams use "nflpricedata Bdta", clear *Favorite coefficient model: otherteams reg rprice pop pop2 rpci wprcnt1

More information

Lloyds TSB. Derek Hull, John Adam & Alastair Jones

Lloyds TSB. Derek Hull, John Adam & Alastair Jones Forecasting Bad Debt by ARIMA Models with Multiple Transfer Functions using a Selection Process for many Candidate Variables Lloyds TSB Derek Hull, John Adam & Alastair Jones INTRODUCTION: No statistical

More information

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing C. Olivia Rud, President, OptiMine Consulting, West Chester, PA ABSTRACT Data Mining is a new term for the

More information

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213.

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213. Econ 371 Problem Set #4 Answer Sheet 6.2 This question asks you to use the results from column (1) in the table on page 213. a. The first part of this question asks whether workers with college degrees

More information

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment

Dummy variables 9/22/2015. Are wages different across union/nonunion jobs. Treatment Control Y X X i identifies treatment Dummy variables Treatment 22 1 1 Control 3 2 Y Y1 0 1 2 Y X X i identifies treatment 1 1 1 1 1 1 0 0 0 X i =1 if in treatment group X i =0 if in control H o : u n =u u Are wages different across union/nonunion

More information

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft

Labor Market Returns to Two- and Four- Year Colleges. Paper by Kane and Rouse Replicated by Andreas Kraft Labor Market Returns to Two- and Four- Year Colleges Paper by Kane and Rouse Replicated by Andreas Kraft Theory Estimating the return to two-year colleges Economic Return to credit hours or sheepskin effects

More information

Financial Statements Composition and Layouts

Financial Statements Composition and Layouts Risk and Accounting Financial Statements Composition and Layouts Marco Venuti 2019 Agenda Financial Statements (FS) Objective of Financial Statements Required components of Financial Statements Banks'

More information

Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics

Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics Ivana JURINA (jurinai@dzs.hr) Croatian Bureau of Statistics Lidija GLIGOROVA (gligoroval@dzs.hr)

More information

Non-linearities in Simple Regression

Non-linearities in Simple Regression Non-linearities in Simple Regression 1. Eample: Monthly Earnings and Years of Education In this tutorial, we will focus on an eample that eplores the relationship between total monthly earnings and years

More information

Il Finanziamento dei SSN in Italia ed in Europa. Gavino Maciocco, Universita di Firenze

Il Finanziamento dei SSN in Italia ed in Europa. Gavino Maciocco, Universita di Firenze Il Finanziamento dei SSN in Italia ed in Europa Gavino Maciocco, Universita di Firenze Health spending per capita and as share of GDP, 2017 Figure 2. Health spending per capita and as share of GDP, 2017

More information

Estimation of the main variables of the economic on onadministrative sources

Estimation of the main variables of the economic on onadministrative sources Estimation of the main variables of the economic account account of of small small and and medium-sized enterprises enterprises based based on onministrative sources Marco Di Zio 1 Ugo Guarnera 1 Roberta

More information

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley.

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley. Appendix: Statistics in Action Part I Financial Time Series 1. These data show the effects of stock splits. If you investigate further, you ll find that most of these splits (such as in May 1970) are 3-for-1

More information

Appendix. A.1 Independent Random Effects (Baseline)

Appendix. A.1 Independent Random Effects (Baseline) A Appendix A.1 Independent Random Effects (Baseline) 36 Table 2: Detailed Monte Carlo Results Logit Fixed Effects Clustered Random Effects Random Coefficients c Coeff. SE SD Coeff. SE SD Coeff. SE SD Coeff.

More information

Math Final Examination STUDY GUIDE Fall Name Score TOTAL Final Grade

Math Final Examination STUDY GUIDE Fall Name Score TOTAL Final Grade Math 10006 Final Examination STUDY GUIDE Fall 010 Name Score TOTAL Final Grade The Use of a calculator is permitted on this exam. Duration of the test is 13 minutes and will have less number of questions

More information

2.07 Factoring by Grouping/ Difference and Sum of Cubes

2.07 Factoring by Grouping/ Difference and Sum of Cubes 2.07 Factoring by Grouping/ Difference and Sum of Cubes Dr. Robert J. Rapalje, Retired Central Florida, USA This lesson introduces the technique of factoring by grouping, as well as factoring the sum and

More information

Random Effects ANOVA

Random Effects ANOVA Random Effects ANOVA Grant B. Morgan Baylor University This post contains code for conducting a random effects ANOVA. Make sure the following packages are installed: foreign, lme4, lsr, lattice. library(foreign)

More information

u panel_lecture . sum

u panel_lecture . sum u panel_lecture sum Variable Obs Mean Std Dev Min Max datastre 639 9039644 6369418 900228 926665 year 639 1980 2584012 1976 1984 total_sa 639 9377839 3212313 682 441e+07 tot_fixe 639 5214385 1988422 642

More information

The relationship between GDP, labor force and health expenditure in European countries

The relationship between GDP, labor force and health expenditure in European countries Econometrics-Term paper The relationship between GDP, labor force and health expenditure in European countries Student: Nguyen Thu Ha Contents 1. Background:... 2 2. Discussion:... 2 3. Regression equation

More information

Americo Todisco. The estimate of default probability in Internal Rating Systems. SAS Forum International Copenhagen June

Americo Todisco. The estimate of default probability in Internal Rating Systems. SAS Forum International Copenhagen June SAS Forum International Copenhagen 2004 15-17 June The estimate of default probability in Internal Rating Systems Americo Todisco University of Siena, Faculty of Economics Doctorate Program in Law & Economics

More information

APPROACHES TO VALIDATING METHODOLOGIES AND MODELS WITH INSURANCE APPLICATIONS

APPROACHES TO VALIDATING METHODOLOGIES AND MODELS WITH INSURANCE APPLICATIONS APPROACHES TO VALIDATING METHODOLOGIES AND MODELS WITH INSURANCE APPLICATIONS LIN A XU, VICTOR DE LA PAN A, SHAUN WANG 2017 Advances in Predictive Analytics December 1 2, 2017 AGENDA QCRM to Certify VaR

More information

Multiple regression - a brief introduction

Multiple regression - a brief introduction Multiple regression - a brief introduction Multiple regression is an extension to regular (simple) regression. Instead of one X, we now have several. Suppose, for example, that you are trying to predict

More information

Risk Analysis. å To change Benchmark tickers:

Risk Analysis. å To change Benchmark tickers: Property Sheet will appear. The Return/Statistics page will be displayed. 2. Use the five boxes in the Benchmark section of this page to enter or change the tickers that will appear on the Performance

More information

A perfect storm: an impossible climate for NHS providers finances?

A perfect storm: an impossible climate for NHS providers finances? Research March 2016 A perfect storm: an impossible climate for NHS providers finances? Technical appendix This appendix was produced as part of the work by the Health Foundation on the report A perfect

More information

Yoel Hecht & Helena Pompushko

Yoel Hecht & Helena Pompushko Yoel Hecht & Helena Pompushko SAS conference May 2007 Contents Tool Features Implementation Results Monetary policy miss the inflation target Need better estimation of local FX risk Option prices are based

More information

Statistical Decision Theory in Evaluating Classification Rules

Statistical Decision Theory in Evaluating Classification Rules Statistical Decision Theory in Evaluating Classification Rules Section Aspects of Evaluation Page 2 Inaccuracy Page 2 Imprecision Page 3 Inseparability Page 3 Resemblance Page 3 Confusion Matrix Page 4

More information

Gustavo Università di Roma Tor Vergata. Discussione. Rapporto annuale 2018 European Fiscal Board Roma, 4 dicembre 2018

Gustavo Università di Roma Tor Vergata. Discussione. Rapporto annuale 2018 European Fiscal Board Roma, 4 dicembre 2018 Gustavo Piga, @gustavopiga Università di Roma Tor Vergata Discussione Rapporto annuale 2018 European Fiscal Board Roma, 4 dicembre 2018 Innumerevoli stimoli. Grazie (non troppi quelli fiscali) ma spirito

More information

Section 7.1 Common Factors in Polynomials

Section 7.1 Common Factors in Polynomials Chapter 7 Factoring How Does GPS Work? 7.1 Common Factors in Polynomials 7.2 Difference of Two Squares 7.3 Perfect Trinomial Squares 7.4 Factoring Trinomials: (x 2 + bx + c) 7.5 Factoring Trinomials: (ax

More information

Example 2.3: CEO Salary and Return on Equity. Salary for ROE = 0. Salary for ROE = 30. Example 2.4: Wage and Education

Example 2.3: CEO Salary and Return on Equity. Salary for ROE = 0. Salary for ROE = 30. Example 2.4: Wage and Education 1 Stata Textbook Examples Introductory Econometrics: A Modern Approach by Jeffrey M. Wooldridge (1st & 2d eds.) Chapter 2 - The Simple Regression Model Example 2.3: CEO Salary and Return on Equity summ

More information

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion Web Appendix Are the effects of monetary policy shocks big or small? Olivier Coibion Appendix 1: Description of the Model-Averaging Procedure This section describes the model-averaging procedure used in

More information

STRESS-STRENGTH RELIABILITY ESTIMATION

STRESS-STRENGTH RELIABILITY ESTIMATION CHAPTER 5 STRESS-STRENGTH RELIABILITY ESTIMATION 5. Introduction There are appliances (every physical component possess an inherent strength) which survive due to their strength. These appliances receive

More information

Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions

Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions Professor Brad Jones University of Arizona POL 681, SPRING 2004 INTERACTIONS and STATA: Companion To Lecture Notes on Statistical Interactions Preliminaries 1. Basic Regression. reg y x1 Source SS df MS

More information

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015 Monetary Economics Risk and Return, Part 2 Gerald P. Dwyer Fall 2015 Reading Malkiel, Part 2, Part 3 Malkiel, Part 3 Outline Returns and risk Overall market risk reduced over longer periods Individual

More information

Chapter 3. Populations and Statistics. 3.1 Statistical populations

Chapter 3. Populations and Statistics. 3.1 Statistical populations Chapter 3 Populations and Statistics This chapter covers two topics that are fundamental in statistics. The first is the concept of a statistical population, which is the basic unit on which statistics

More information

ECE 100: Introduction to Engineering Design. Modeling Assignment No. 3 Inventory Management Using PID Control (Continued); Stochastic Modeling

ECE 100: Introduction to Engineering Design. Modeling Assignment No. 3 Inventory Management Using PID Control (Continued); Stochastic Modeling ECE 1: Introduction to Engineering Design Modeling Assignment No. 3 Inventory Management Using PID Control (Continued); Stochastic Modeling Daniel E. Rivera Department of Chemical and Materials Engineering

More information

1. The number of dental claims for each insured in a calendar year is distributed as a Geometric distribution with variance of

1. The number of dental claims for each insured in a calendar year is distributed as a Geometric distribution with variance of 1. The number of dental claims for each insured in a calendar year is distributed as a Geometric distribution with variance of 7.315. The amount of each claim is distributed as a Pareto distribution with

More information

Study 2: data analysis. Example analysis using R

Study 2: data analysis. Example analysis using R Study 2: data analysis Example analysis using R Steps for data analysis Install software on your computer or locate computer with software (e.g., R, systat, SPSS) Prepare data for analysis Subjects (rows)

More information

Economics 424/Applied Mathematics 540. Final Exam Solutions

Economics 424/Applied Mathematics 540. Final Exam Solutions University of Washington Summer 01 Department of Economics Eric Zivot Economics 44/Applied Mathematics 540 Final Exam Solutions I. Matrix Algebra and Portfolio Math (30 points, 5 points each) Let R i denote

More information

The Board of Directors approves the Interim Report on Operations at 30 September 2015

The Board of Directors approves the Interim Report on Operations at 30 September 2015 PRESS RELEASE B&C Speakers S.p.A. The Board of Directors approves the Interim Report on Operations at 30 September Consolidated revenues of Euro 27.20 million (+13% compared with Euro 24.07 million for

More information

Test #1 (Solution Key)

Test #1 (Solution Key) STAT 47/67 Test #1 (Solution Key) 1. (To be done by hand) Exploring his own drink-and-drive habits, a student recalls the last 7 parties that he attended. He records the number of cans of beer he drank,

More information

tj= =n+6 U7D1 SEQUENCES AND SERIES Introduction A function can be used to generate a sequence of numbers Example: 1(x) = x2 generates

tj= =n+6 U7D1 SEQUENCES AND SERIES Introduction A function can be used to generate a sequence of numbers Example: 1(x) = x2 generates U7D1 SEQUENCES AND SERIES Introduction A function can be used to generate a sequence of numbers Example: 1(x) = x2 generates We have the sequence 1, 4, 9, 16 Thus a sequence is the set of numbers generated

More information

1. Summary of Consolidated Results 4th Quarter Summary of Consolidated Results accumulated as for December

1. Summary of Consolidated Results 4th Quarter Summary of Consolidated Results accumulated as for December 24 Index 1. Summary of Consolidated Results 4th Quarter 2015.. 2. Summary of Consolidated Results accumulated as for December 2015... 3. Highlights in the Period.... 4. Consolidated Income Statement......

More information

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times.

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times. Mixed-effects models An introduction by Christoph Scherber Up to now, we have been dealing with linear models of the form where ß0 and ß1 are parameters of fixed value. Example: Let us assume that we are

More information

Impact of Household Income on Poverty Levels

Impact of Household Income on Poverty Levels Impact of Household Income on Poverty Levels ECON 3161 Econometrics, Fall 2015 Prof. Shatakshee Dhongde Group 8 Annie Strothmann Anne Marsh Samuel Brown Abstract: The relationship between poverty and household

More information

1. EMITTENTE / ISSUER. Prysmian S.p.A. SIGLA SOCIALE / ABBREVIATED FORM. Via Chiese 6 CAP / POST CODE

1. EMITTENTE / ISSUER. Prysmian S.p.A. SIGLA SOCIALE / ABBREVIATED FORM. Via Chiese 6 CAP / POST CODE SCHEMA DI COMUNICAZIONE DELLE OPERAZIONI SUI TITOLI DELL'EMITTENTE (ai sensi del paragrafo 1.4 dell'allegato 3F) MODEL DISCLOSURE FOR TRANSACTIONS IN THE ISSUER S SECURITIES (pursuant to paragraph 1.4

More information

Liquidity risk in derivatives valuation: an improved credit proxy method Sourabh, S.; Hofer, M.; Kandhai, B.D.

Liquidity risk in derivatives valuation: an improved credit proxy method Sourabh, S.; Hofer, M.; Kandhai, B.D. UvA-DARE (Digital Academic Repository) Liquidity risk in derivatives valuation: an improved credit proxy method Sourabh, S.; Hofer, M.; Kandhai, B.D. Published in: Quantitative Finance DOI: 10.1080/14697688.2017.1315166

More information

Corso di Identificazione dei Modelli e Analisi dei Dati

Corso di Identificazione dei Modelli e Analisi dei Dati Università degli Studi di Pavia Dipartimento di Ingegneria Industriale e dell Informazione Corso di Identificazione dei Modelli e Analisi dei Dati Central Limit Theorem and Law of Large Numbers Prof. Giuseppe

More information

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998 Economics 312 Sample Project Report Jeffrey Parker Introduction This project is based on Exercise 2.12 on page 81 of the Hill, Griffiths, and Lim text. It examines how the sale price of houses in Stockton,

More information

EXTRAORDINARY AND ORDINARY SHAREHOLDERS MEETING 26 JUNE AM IN FIRST CALL 28 JUNE :00 AM IN SECOND CALL

EXTRAORDINARY AND ORDINARY SHAREHOLDERS MEETING 26 JUNE AM IN FIRST CALL 28 JUNE :00 AM IN SECOND CALL ASTALDI Società per Azioni Registered Office/Head Office in Rome - Via Giulio Vincenzo Bona no. 65 Share Capital: EUR 196,849,800.00 fully paid-in Entered in the Rome Companies Register under Tax Code

More information

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6}

tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} PS 4 Monday August 16 01:00:42 2010 Page 1 tm / / / / / / / / / / / / Statistics/Data Analysis User: Klick Project: Limited Dependent Variables{space -6} log: C:\web\PS4log.smcl log type: smcl opened on:

More information