Package spregime. March 12, 2012

Size: px
Start display at page:

Download "Package spregime. March 12, 2012"

Transcription

1 Title Tools for Spatial Regime Analysis Version Date Author Maintainer Package spregime March 12, 2012 A set of tools designed test to test for spatial heterogeneity characterized by groupwise differences associated with a set of underlying spatial regimes. Includes routines for testing the stability of global models, individual coefficients, and error variances. License GPL(>= 2) Depends R(>= ), spdep URL R topics documented: print.spchow print.spcoef print.spgwhet print.summary.spchow print.summary.spcoef spchow spcoef spgwhet spregime summary.spchow summary.spcoef vote Index 13 1

2 2 print.spcoef print.spchow Print Function for spchow Objects Prints the test results associated with a given spchow object. ## S3 method for class spchow print(x,...) x a spchow class object. None print.spcoef Print Function for spcoef Objects Prints the test results associated with a given spcoef object. ## S3 method for class spcoef print(x,...) x a spcoef class object. None

3 print.spgwhet 3 print.spgwhet Print Function for spgwhet Objects Prints the test results associated with a given spgwhet object. ## S3 method for class spgwhet print(x,...) x a spgwhet class object. None print.summary.spchow Print Function for summary.spchow Objects Prints the test results associated with a given summary.spchow object. ## S3 method for class summary.spchow print(x,...) x a summary.spchow class object. None

4 4 spchow print.summary.spcoef Print Function for summary.spcoef Objects Prints the test results associated with a given summary.spcoef object. ## S3 method for class summary.spcoef print(x,...) x a summary.spcoef class object. None spchow Chow Test for Spatial Heterogeneity Estimates the stability of a given model across a set of user-specified regimes. spchow(restrict, group, data = list(), partial = FALSE, = "lm", listw = NULL,...) restrict group data partial listw lm-style formula for the restricted regression. lm-style formula depicting only the variable used to identify regimes (i.e. no dependent variable needed). model data frame. a logical value indicating whether or not to include group-specific intercepts in the restricted model. Default is FALSE. string indicating the type of model to use. lm indicates a non-spatial Chow test while lagsarlm and errorsarlm indicate alternative versions of a spatial Chow test. The default is lm. a listw object. The default value is NULL.... additional arguments to be passed to the model-fitting routine.

5 spchow 5 Details spchow compares the fit of a restricted or global model in which a given set of coefficients are treated as fixed to the fit of an unrestricted or local model in which the coefficients in question are allowed to vary across a set of user-specified regimes. Regime models are specified using two formulas, the first of which depicts the global model, the second of which depicts the variable used to specify regimes. Spatial regime models are estimated using the errorsarlm and lagsarlm routines available as part of the spdep package. The resulting test is ultimately carried out using the anova command which, in the case of non-spatial regime models, results in the standard F- test. In contrast, the use of the anova command in the context of likelihood-based models such as errorsarlm and lagsarlm results in a likelihood ratio test. The null model can be adjusted to allow for regime-specific intercepts. A spchow object containing the following elements: call the call used to create this object. either "lm", "errorsarlm", or "lagsarlm". base.terms the coefficients associated with the restricted model. regime.variable the variable used to define regimes. regime.labels res.formula unres.formula res.mod unres.mod res.resdf unres.resdf chow the vector of regime names associated with regime.variable. a symbolic description of the restricted model. a symbolic description of the unrestricted model. the results of the restricted model. the results of the unrestricted model. the residual degrees of freedom for the restricted model. the residual degrees of freedom for the unrestricted model. the results of the ANOVA-based test comparing the restricted and unrestricted models. References Anselin, L Spatial Econometrics: Methods and Models. Durdrecht: Kluwer Academic Publishers, pp Chow, G "Tests of Equality Between Sets of Coefficients in Two Linear Regressions." Econometrica 28: Examples data(vote1890, package = "spregime") #Spatial Chow chow<-spchow(restrict = VOTE~WHEAT+DAIRY+TENANT+GERMAN+SCAND, group = ~STATE, data = vote1890, = "lagsarlm", listw = vote.wgts) chow

6 6 spcoef spcoef Regime-Based Tests for Coefficient Stability Tests the stability of individual coefficients across a set of user-defined regimes. spcoef(restrict, group, data = list(), partial = FALSE, = "lm", listw = NULL,...) restrict group data Details partial listw lm-style formula for the restricted regression. lm-style formula depicting only the variable used to identify regimes (i.e. no dependent variable needed). model data frame. a logical value indicating whether or not to include group-specific intercepts in the restricted model. Default is FALSE. string indicating the type of model to use. lm indicates a non-spatial Chow test while lagsarlm and errorsarlm indicate alternative versions of a spatial Chow test. The default is lm. a listw object. The default value is NULL.... additional arguments to be passed to the model-fitting routine. spcoef compares the fit of a restricted or global model in which a given set of coefficients are treated as fixed to the fit of a series of unrestricted or local models in which a single coefficient is allowed to vary across a set of user-specified regimes. Regime models are specified using two formulas, the first of which depicts the global model, the second of which depicts the variable used to specify regimes. Spatial regime models are estimated using the errorsarlm and lagsarlm routines available as part of the spdep package. The resulting test is ultimately carried out using the anova command which, in the case of non-spatial regime models, results in the standard F- test. In contrast, the use of the anova command in the context of likelihood-based models such as errorsarlm and lagsarlm results in a likelihood ratio test. The null model can be adjusted to allow for regime-specific intercepts. Results for intercept-related models are suppressed when partial = TRUE. A spcoef object containing the following elements: call the call used to create this object. "lm", "errorsarlm", or "lagsarlm". base.terms the coefficients associated with the restricted model. regime.variable the variable used to define regimes.

7 spgwhet 7 regime.labels res.formula unres.formula res.mod unres.mod res.resdf unres.resdf test.vals the vector of regime names associated with regime.variable. a symbolic description of the restricted model. a list of symbolic descriptions associated with each of the unrestricted models. the results of the restricted model. a list of results associated with each of the unrestricted models. the residual degrees of freedom for the restricted model. a list of the residual degrees of freedom associated with each of the unrestricted models. a table summarizing the results of the ANOVA-based tests comparing the restricted and unrestricted models. Examples data(vote1890, package = "spregime") #Spatially-adjusted test for coefficient stability coefstab<-spcoef(restrict = VOTE~WHEAT+DAIRY+TENANT+GERMAN+SCAND, group = ~STATE, data = vote1890, partial = TRUE, = "lagsarlm", listw = vote.wgts) coefstab spgwhet Breusch-Pagan Test for Groupwise Heteroscedasticity Breusch-Pagan test for the equality of error variance across a set of user-defined regimes. spgwhet(restrict, group, data = list(), partial = FALSE, = "lm", listw = NULL, studentize = FALSE,...) restrict group data partial listw studentize lm-style formula for the restricted regression. lm-style formula depicting only the variable used to identify regimes (i.e. no dependent variable needed). model data frame. a logical value indicating whether or not to include group-specific intercepts in the restricted model. Default is FALSE. string indicating the type of model to use. lm indicates a non-spatial Chow test while lagsarlm and errorsarlm indicate alternative versions of a spatial Chow test. The default is lm. a listw object. The default value is NULL. a logical value indicating whether the residuals are studentized prior to inclusion in the auxiliary regression. Default is FALSE.... additional arguments to be passed to the model-fitting routine.

8 8 spregime Details spgwhet uses an auxiliary regression to test the null hypothesis that the variance in residuals associated with a restricted or global model is constant across a set of user-specified regimes. The test in question is specified using two formulas, the first of which depicts the restricted model, the second of which depicts the variable used to specify regimes and, hence, predict residual variance in the auxiliary regression. Spatially-adjusted residuals are introduced using the errorsarlm and lagsarlm routines available as part of the spdep package. The restricted model can be adjusted to allow for regime-specific intercepts. Residuals can be studentized to correct for non-normality, as per the work of Koenker (1981). A spgwhet object containing the following elements: call statistic parameter p.value method the call used to create this object. the value of the test statistic. degrees of freedom. the p-value associated with the test above. a character string indicating the type of test performed. References Anselin, L Spatial Econometrics: Methods and Models. Durdrecht: Kluwer Academic Publishers, pp Breusch, T. and A. Pagan "A Simple Test for Heteroscedasticity and Random Coefficient Variation." Econometrica 47: Koenker, R "A Note on Studentizing a Test for Heteroscedasticity." Econometrica 28: Examples data(vote1890, package = "spregime") #Spatially-adjusted BP test hettest<-spgwhet(restrict = VOTE~WHEAT+DAIRY+TENANT+GERMAN+SCAND, group = ~STATE, data = vote1890, = "lagsarlm", listw = vote.wgts) hettest spregime Tools for Spatial Regime Analysis A set of tools designed test to test for spatial heterogeneity characterized by groupwise differences associated with a set of underlying spatial regimes. Includes routines for testing the stability of global models, individual coefficients, and error variances.

9 summary.spchow 9 Details The spregime package contains a set of tools designed to replicate the types of regime analysis seen in works such as Baller et al. (2001) and Curtis et al. (2012). More specifically, the spchow routine estimates spatial and non-spatial Chow tests for the stability of coefficients across a set of userdefined regimes; the spcoef routine tests the stability of individual coefficients using both spatial and non-spatial models; and the spgwhet routine tests for groupwise heteroskedasticity. These routines have been designed to allow for partial tests in which expected outcomes in the null model are allowed to vary across regimes. References Anselin, L Spatial Econometrics: Methods and Models. Durdrecht: Kluwer Academic Publishers, pp Baller, R., L. Anselin, S. Messner, G. Deane, and D. Hawkins "Structural Covariates of U.S. County Homicide Rates: Incorporating Spatial Effects." Criminology 39: Curtis, K., P. Voss, and D. Long "Spatial Variation in Poverty-Generating Processes: Childhood Poverty in the United States." Social Science Research 41: summary.spchow Summary Statistics for spchow Objects Summarizes the results associated with a given spchow object. ## S3 method for class spchow summary(object,...) object a spchow class object.. A summary.spchow object containing the following elements: call res.formula unres.formula res.coef the call used to create the original spchow object. either "lm", "errorsarlm", or "lagsarlm". a symbolic description of the restricted model. a symbolic description of the unrestricted model. a matrix with columns representing the coefficients, standard errors, test statistics, and p-values associated with the restricted model.

10 10 summary.spcoef unres.coef res.sp unres.sp chow a set of regime-specific matrices with columns representing the coefficients, standard errors, test statistics, and p-values associated with the unrestricted model. the spatial coefficient associated with the restricted model. NULL in the case of lm objects. the spatial coefficient associated with the unrestricted model. NULL in the case of lm objects. the results of the ANOVA-based test comparing the restricted and unrestricted models. Examples data(vote1890, package = "spregime") #Spatial Chow chow<-spchow(restrict = VOTE~WHEAT+DAIRY+TENANT+GERMAN+SCAND, group = ~STATE, data = vote1890, = "lagsarlm", listw = vote.wgts) summary(chow) summary.spcoef Summary Statistics for spcoef Objects Summarizes the results associated with a given spcoef object. ## S3 method for class spcoef summary(object,...) object a spcoef class object.. A summary.spcoef object containing the following elements: call res.formula unres.formula res.coef unres.coef the call used to create the original spcoef object. either "lm", "errorsarlm", or "lagsarlm". a symbolic description of the restricted model. a list of symbolic descriptions associated with each of the unrestricted models. a matrix with columns representing the coefficients, standard errors, test statistics, and p-values associated with the restricted model. a set of variable-specific matrices with columns representing the coefficients, standard errors, test statistics, and p-values associated with the unrestricted model.

11 vote res.sp unres.sp test.vals the spatial coefficient associated with the restricted model. NULL in the case of lm objects. the set of spatial coefficients associated with each of the unrestricted models. NULL in the case of lm objects. a table summarizing the results of the ANOVA-based tests comparing the restricted and unrestricted models. Examples data(vote1890, package = "spregime") #Spatially-adjusted test for coefficient stability coefstab<-spcoef(restrict = VOTE~WHEAT+DAIRY+TENANT+GERMAN+SCAND, group = ~STATE, data = vote1890, = "lagsarlm", listw = vote.wgts) summary(coefstab) vote1890 Populist Voting on the Northern Great Plains, 1890 The dataset includes information on county-level election returns for gubernatorial contests in Minnesota, North Dakota, and South Dakota in 1890, along with information on select covariates drawn from the decennial census. data(vote1890) Format Data frame consisting of county-level voting and census data, along with geographic coordinates. NAME County name. STATE State name. FIPS1890 County FIPS code. X Horizontal position of county centroid in Cartesian coordinates. Y Vertical position of county centroid in Cartesian coordinates. VOTE The percentage of voters voting for a Populist gubernatorial candidate. WHEAT The percentage of improved acreage devoted to wheat production. DAIRY Thousands of gallons of milk per farm. TENANT Percentage of farms rented for money or crops. GERMAN Percentage of the population born in Germany. SCAND The percentage of the population born in Sweden, Norway, or Denmark.

12 12 vote1890 Details Source This columbus dataframe contains county-level voting and census data for 168 counties. Populist candidates are defined as candidates nominated by either the Alliance, Populist, or People s party. Independent candidates were also coded as Populist where appropriate (i.e. North Dakota in 1890 and South Dakota between 1890 and 1894). Data on Billings County, North Dakota were dropped due to having been excluded from the 1890 Census of Agriculture. vote.wgts is a listw object representing a first-order queen contiguity matrix. Haines, Michael R. and the Inter-University Consortium for Political and Social Research Historical, Demographic, Economic, and Social Data: The United States, [Computer file]. ICPSR02896-v2. Hamilton: Colgate University/Ann Arbor: Inter-University Consortium for Political and Social Research [producers]. Ann Arbor: Inter-University Consortium for Political and Social Research [distributor]. Inter-University Consortium for Political and Social Research United States Historical Election Returns, [Computer file]. ICPSR00001-v3. Ann Arbor: Inter-University Consortium for Political and Social Research [distributor], ,. doi: /ICPSR Examples data(vote1890, package = "spregime") plot(vote~wheat, data = vote1890) plot(vote.wgts, coords = cbind(vote1890$x, vote1890$y), col = red, lwd = 2)

13 Index Topic datasets vote1890, 11 print.spchow, 2 print.spcoef, 2 print.spgwhet, 3 print.summary.spchow, 3 print.summary.spcoef, 4 spchow, 4 spcoef, 6 spgwhet, 7 spregime, 8 summary.spchow, 9 summary.spcoef, 10 vote.wgts (vote1890), 11 vote1890, 11 13

Correctly Compute Complex Samples Statistics

Correctly Compute Complex Samples Statistics SPSS Complex Samples 15.0 Specifications Correctly Compute Complex Samples Statistics When you conduct sample surveys, use a statistics package dedicated to producing correct estimates for complex sample

More information

Package ConvergenceClubs

Package ConvergenceClubs Title Finding Convergence Clubs Package ConvergenceClubs June 25, 2018 Functions for clustering regions that form convergence clubs, according to the definition of Phillips and Sul (2009) .

More information

Package gwrr. February 20, 2015

Package gwrr. February 20, 2015 Type Package Package gwrr February 20, 2015 Title Fits geographically weighted regression models with diagnostic tools Version 0.2-1 Date 2013-06-11 Author David Wheeler Maintainer David Wheeler

More information

Package dglm. August 24, 2016

Package dglm. August 24, 2016 Version 1.8.3 Date 2015-10-27 Title Double Generalized Linear Models Package dglm August 24, 2016 Author Peter K Dunn and Gordon K Smyth Maintainer Robert Corty

More information

Package sphet. March 16, 2018

Package sphet. March 16, 2018 Version 1.7 Date 2018-03-16 Package sphet March 16, 2018 Title Estimation of Spatial Autoregressive Models with and without Heteroscedasticity Author Maintainer Depends R (>= 3.0.1) Imports nlme, spdep

More information

Regression Models Course Project Vincent MARIN 28 juillet 2016

Regression Models Course Project Vincent MARIN 28 juillet 2016 Regression Models Course Project Vincent MARIN 28 juillet 2016 Executive Summary "Is an automatic or manual transmission better for MPG" "Quantify the MPG difference between automatic and manual transmissions"

More information

Example 1 of panel data : Data for 6 airlines (groups) over 15 years (time periods) Example 1

Example 1 of panel data : Data for 6 airlines (groups) over 15 years (time periods) Example 1 Panel data set Consists of n entities or subjects (e.g., firms and states), each of which includes T observations measured at 1 through t time period. total number of observations : nt Panel data have

More information

Econometrics I: OLS. Dean Fantazzini. Dipartimento di Economia Politica e Metodi Quantitativi. University of Pavia

Econometrics I: OLS. Dean Fantazzini. Dipartimento di Economia Politica e Metodi Quantitativi. University of Pavia Dipartimento di Economia Politica e Metodi Quantitativi University of Pavia Overview of the Lecture 1 st EViews Session I: Convergence in the Solow Model 2 Overview of the Lecture 1 st EViews Session I:

More information

Gov Troubleshooting the Linear Model II: Heteroskedasticity

Gov Troubleshooting the Linear Model II: Heteroskedasticity Gov 2000-10. Troubleshooting the Linear Model II: Heteroskedasticity Matthew Blackwell December 4, 2015 1 / 64 1. Heteroskedasticity 2. Clustering 3. Serial Correlation 4. What s next for you? 2 / 64 Where

More information

Package sfadv. June 19, 2017

Package sfadv. June 19, 2017 Version 1.0.1 Date 2017-06-19 Package sfadv June 19, 2017 Title Advanced Methods for Stochastic Frontier Analysis Maintainer Yann Desjeux Description Stochastic frontier analysis

More information

Package ClustGeo. R topics documented: July 14, Type Package

Package ClustGeo. R topics documented: July 14, Type Package Type Package Package ClustGeo July 14, 2017 Title Hierarchical Clustering with Spatial Constraints Version 2.0 Author Marie Chavent [aut, cre], Vanessa Kuentz [aut], Amaury Labenne [aut], Jerome Saracco

More information

Package mnlogit. November 8, 2016

Package mnlogit. November 8, 2016 Package mnlogit November 8, 2016 Type Package Title Multinomial Logit Model Version 1.2.5 Date 2016-11-6 Suggests VGAM, nnet Imports mlogit, lmtest, Formula, stats Author Asad Hasan, Wang Zhiyu, Alireza

More information

Package StVAR. February 11, 2017

Package StVAR. February 11, 2017 Type Package Title Student's t Vector Autoregression (StVAR) Version 1.1 Date 2017-02-10 Author Niraj Poudyal Maintainer Niraj Poudyal Package StVAR February 11, 2017 Description Estimation

More information

Package GWRM. R topics documented: July 31, Type Package

Package GWRM. R topics documented: July 31, Type Package Type Package Package GWRM July 31, 2017 Title Generalized Waring Regression Model for Count Data Version 2.1.0.3 Date 2017-07-18 Maintainer Antonio Jose Saez-Castillo Depends R (>= 3.0.0)

More information

Package BiDimRegression

Package BiDimRegression Version 2.0.0 Date 2018-05-09 Package BiDimRegression May 16, 2018 Title Calculates the Bidimensional Regression Between Two 2D Configurations Imports Formula, methods Depends R (>= 1.8.0) Calculates the

More information

Package factorplot. R topics documented: June 23, Type Package Title Graphical Presentation of Simple Contrasts Version Date

Package factorplot. R topics documented: June 23, Type Package Title Graphical Presentation of Simple Contrasts Version Date Type Package Title Graphical Presentation of Simple Contrasts Version 1.1-2 Date 2016-06-22 Package factorplot June 23, 2016 Author Dave Armstrong (Department of Political Science, UW-Milwaukee) Maintainer

More information

Package oglmx. R topics documented: May 5, Type Package

Package oglmx. R topics documented: May 5, Type Package Type Package Package oglmx May 5, 2018 Title Estimation of Ordered Generalized Linear Models Version 3.0.0.0 Date 2018-05-05 Author Nathan Carroll Maintainer Nathan Carroll Ordered

More information

THE L.L. THURSTONE PSYCHOMETRIC LABORATORY UNIVERSITY OF NORTH CAROLINA. Forrest W. Young & Carla M. Bann

THE L.L. THURSTONE PSYCHOMETRIC LABORATORY UNIVERSITY OF NORTH CAROLINA. Forrest W. Young & Carla M. Bann Forrest W. Young & Carla M. Bann THE L.L. THURSTONE PSYCHOMETRIC LABORATORY UNIVERSITY OF NORTH CAROLINA CB 3270 DAVIE HALL, CHAPEL HILL N.C., USA 27599-3270 VISUAL STATISTICS PROJECT WWW.VISUALSTATS.ORG

More information

Package pampe. R topics documented: November 7, 2015

Package pampe. R topics documented: November 7, 2015 Package pampe November 7, 2015 Type Package Title Implementation of the Panel Data Approach Method for Program Evaluation Version 1.1.2 Date 2015-11-06 Author Ainhoa Vega-Bayo Maintainer Ainhoa Vega-Bayo

More information

Spatial Statistics With R: Getting Started

Spatial Statistics With R: Getting Started Spatial Statistics With R: Getting Started Introduction In the last practical, you saw how to handle geographical data in R, and how to carry out some basic, and more advanced statistical analysis on the

More information

Package rpst. June 6, 2017

Package rpst. June 6, 2017 Type Package Title Recursive Partitioning Survival Trees Version 1.0.0 Date 2017-6-6 Author Maintainer Package rpst June 6, 2017 An implementation of Recursive Partitioning Survival Trees

More information

Package PrivateLR. March 20, 2018

Package PrivateLR. March 20, 2018 Type Package Package PrivateLR March 20, 2018 Title Differentially Private Regularized Logistic Regression Version 1.2-22 Date 2018-03-19 Author Staal A. Vinterbo Maintainer Staal

More information

BIOL 458 BIOMETRY Lab 10 - Multiple Regression

BIOL 458 BIOMETRY Lab 10 - Multiple Regression BIOL 458 BIOMETRY Lab 0 - Multiple Regression Many problems in biology science involve the analysis of multivariate data sets. For data sets in which there is a single continuous dependent variable, but

More information

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski

Data Analysis and Solver Plugins for KSpread USER S MANUAL. Tomasz Maliszewski Data Analysis and Solver Plugins for KSpread USER S MANUAL Tomasz Maliszewski tmaliszewski@wp.pl Table of Content CHAPTER 1: INTRODUCTION... 3 1.1. ABOUT DATA ANALYSIS PLUGIN... 3 1.3. ABOUT SOLVER PLUGIN...

More information

Package ridge. R topics documented: February 15, Title Ridge Regression with automatic selection of the penalty parameter. Version 2.

Package ridge. R topics documented: February 15, Title Ridge Regression with automatic selection of the penalty parameter. Version 2. Package ridge February 15, 2013 Title Ridge Regression with automatic selection of the penalty parameter Version 2.1-2 Date 2012-25-09 Author Erika Cule Linear and logistic ridge regression for small data

More information

Package cosinor. February 19, 2015

Package cosinor. February 19, 2015 Type Package Package cosinor February 19, 2015 Title Tools for estimating and predicting the cosinor model Version 1.1 Author Michael Sachs Maintainer Michael Sachs

More information

The simpleboot Package

The simpleboot Package The simpleboot Package April 1, 2005 Version 1.1-1 Date 2005-03-31 LazyLoad yes Depends R (>= 2.0.0), boot Title Simple Bootstrap Routines Author Maintainer Simple bootstrap

More information

Package palmtree. January 16, 2018

Package palmtree. January 16, 2018 Package palmtree January 16, 2018 Title Partially Additive (Generalized) Linear Model Trees Date 2018-01-15 Version 0.9-0 Description This is an implementation of model-based trees with global model parameters

More information

Package simr. April 30, 2018

Package simr. April 30, 2018 Type Package Package simr April 30, 2018 Title Power Analysis for Generalised Linear Mixed Models by Simulation Calculate power for generalised linear mixed models, using simulation. Designed to work with

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

More information

Package snm. July 20, 2018

Package snm. July 20, 2018 Type Package Title Supervised Normalization of Microarrays Version 1.28.0 Package snm July 20, 2018 Author Brig Mecham and John D. Storey SNM is a modeling strategy especially designed

More information

Missing Data: What Are You Missing?

Missing Data: What Are You Missing? Missing Data: What Are You Missing? Craig D. Newgard, MD, MPH Jason S. Haukoos, MD, MS Roger J. Lewis, MD, PhD Society for Academic Emergency Medicine Annual Meeting San Francisco, CA May 006 INTRODUCTION

More information

Package lcc. November 16, 2018

Package lcc. November 16, 2018 Type Package Title Longitudinal Concordance Correlation Version 1.0 Author Thiago de Paula Oliveira [aut, cre], Rafael de Andrade Moral [aut], John Hinde [aut], Silvio Sandoval Zocchi [aut, ctb], Clarice

More information

Package endogenous. October 29, 2016

Package endogenous. October 29, 2016 Package endogenous October 29, 2016 Type Package Title Classical Simultaneous Equation Models Version 1.0 Date 2016-10-25 Maintainer Andrew J. Spieker Description Likelihood-based

More information

Package complmrob. October 18, 2015

Package complmrob. October 18, 2015 Type Package Package complmrob October 18, 2015 Title Robust Linear Regression with Compositional Data as Covariates Version 0.6.1 Date 2015-10-17 Author David Kepplinger Maintainer

More information

Correctly Compute Complex Samples Statistics

Correctly Compute Complex Samples Statistics PASW Complex Samples 17.0 Specifications Correctly Compute Complex Samples Statistics When you conduct sample surveys, use a statistics package dedicated to producing correct estimates for complex sample

More information

Package sparsereg. R topics documented: March 10, Type Package

Package sparsereg. R topics documented: March 10, Type Package Type Package Package sparsereg March 10, 2016 Title Sparse Bayesian Models for Regression, Subgroup Analysis, and Panel Data Version 1.2 Date 2016-03-01 Author Marc Ratkovic and Dustin Tingley Maintainer

More information

Package CausalImpact

Package CausalImpact Package CausalImpact September 15, 2017 Title Inferring Causal Effects using Bayesian Structural Time-Series Models Date 2017-08-16 Author Kay H. Brodersen , Alain Hauser

More information

Package DTRreg. August 30, 2017

Package DTRreg. August 30, 2017 Package DTRreg August 30, 2017 Type Package Title DTR Estimation and Inference via G-Estimation, Dynamic WOLS, and Q-Learning Version 1.3 Date 2017-08-30 Author Michael Wallace, Erica E M Moodie, David

More information

Package uclaboot. June 18, 2003

Package uclaboot. June 18, 2003 Package uclaboot June 18, 2003 Version 0.1-3 Date 2003/6/18 Depends R (>= 1.7.0), boot, modreg Title Simple Bootstrap Routines for UCLA Statistics Author Maintainer

More information

Package intccr. September 12, 2017

Package intccr. September 12, 2017 Type Package Package intccr September 12, 2017 Title Semiparametric Competing Risks Regression under Interval Censoring Version 0.2.0 Author Giorgos Bakoyannis , Jun Park

More information

ASSIGNMENT 5. The analysis of this data will be carried out in MATLAB and then exported to ARCMAP.

ASSIGNMENT 5. The analysis of this data will be carried out in MATLAB and then exported to ARCMAP. ESE 502 Tony E. Smith ASSIGNMENT 5 (1) In this study you will apply local G*-statistics analysis to the Irish Blood Group data, which is displayed in the ARCMAP file F:\sys502\arcview\projects\eire\eire.mxd.

More information

Sage: Symmetry and Asymmetry in Geometric Data Version 1.21 (compiled 03/1114)

Sage: Symmetry and Asymmetry in Geometric Data Version 1.21 (compiled 03/1114) Sage: Symmetry and Asymmetry in Geometric Data Version 1.21 (compiled 03/1114) Eladio Marquez 2012-2014 Mammals Division University of Michigan Museum of Zoology http://www-personal.umich.edu/~emarquez/morph/

More information

Technical Appendix B

Technical Appendix B Technical Appendix B School Effectiveness Models and Analyses Overview Pierre Foy and Laura M. O Dwyer Many factors lead to variation in student achievement. Through data analysis we seek out those factors

More information

Package influence.sem

Package influence.sem Type Package Package influence.sem April 14, 2018 Title Case Influence in Structural Equation Models Version 2.2 Date 2018-04-14 Author Massimiliano Pastore & Gianmarco Altoe' Depends lavaan Suggests tcltk

More information

Introduction. Product List. Design and Functionality 1/10/2013. GIS Seminar Series 2012 Division of Spatial Information Science

Introduction. Product List. Design and Functionality 1/10/2013. GIS Seminar Series 2012 Division of Spatial Information Science Introduction Open GEODA GIS Seminar Series 2012 Division of Spatial Information Science University of Tsukuba H.Malinda Siriwardana The GeoDa Center for Geospatial Analysis and Computation develops state

More information

Generalized least squares (GLS) estimates of the level-2 coefficients,

Generalized least squares (GLS) estimates of the level-2 coefficients, Contents 1 Conceptual and Statistical Background for Two-Level Models...7 1.1 The general two-level model... 7 1.1.1 Level-1 model... 8 1.1.2 Level-2 model... 8 1.2 Parameter estimation... 9 1.3 Empirical

More information

The brlr Package. March 22, brlr... 1 lizards Index 5. Bias-reduced Logistic Regression

The brlr Package. March 22, brlr... 1 lizards Index 5. Bias-reduced Logistic Regression The brlr Package March 22, 2006 Version 0.8-8 Date 2006-03-22 Title Bias-reduced logistic regression Author David Firth URL http://www.warwick.ac.uk/go/dfirth Maintainer David Firth

More information

Statistical Analysis of Metabolomics Data. Xiuxia Du Department of Bioinformatics & Genomics University of North Carolina at Charlotte

Statistical Analysis of Metabolomics Data. Xiuxia Du Department of Bioinformatics & Genomics University of North Carolina at Charlotte Statistical Analysis of Metabolomics Data Xiuxia Du Department of Bioinformatics & Genomics University of North Carolina at Charlotte Outline Introduction Data pre-treatment 1. Normalization 2. Centering,

More information

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings Statistical Good Practice Guidelines SSC home Using Excel for Statistics - Tips and Warnings On-line version 2 - March 2001 This is one in a series of guides for research and support staff involved in

More information

Package GLMMRR. August 9, 2016

Package GLMMRR. August 9, 2016 Type Package Package GLMMRR August 9, 2016 Title Generalized Linear Mixed Model (GLMM) for Binary Randomized Response Data Version 0.2.0 Date 2016-08-08 Author Jean-Paul Fox [aut], Konrad Klotzke [aut],

More information

Product Catalog. AcaStat. Software

Product Catalog. AcaStat. Software Product Catalog AcaStat Software AcaStat AcaStat is an inexpensive and easy-to-use data analysis tool. Easily create data files or import data from spreadsheets or delimited text files. Run crosstabulations,

More information

Package svapls. February 20, 2015

Package svapls. February 20, 2015 Package svapls February 20, 2015 Type Package Title Surrogate variable analysis using partial least squares in a gene expression study. Version 1.4 Date 2013-09-19 Author Sutirtha Chakraborty, Somnath

More information

PSY 9556B (Feb 5) Latent Growth Modeling

PSY 9556B (Feb 5) Latent Growth Modeling PSY 9556B (Feb 5) Latent Growth Modeling Fixed and random word confusion Simplest LGM knowing how to calculate dfs How many time points needed? Power, sample size Nonlinear growth quadratic Nonlinear growth

More information

Package MSwM. R topics documented: February 19, Type Package Title Fitting Markov Switching Models Version 1.

Package MSwM. R topics documented: February 19, Type Package Title Fitting Markov Switching Models Version 1. Type Package Title Fitting Markov Switching Models Version 1.2 Date 2014-02-05 Package MSwM February 19, 2015 Author Josep A. Sanchez-Espigares, Alberto Lopez-Moreno Maintainer Josep A. Sanchez-Espigares

More information

Package svalues. July 15, 2018

Package svalues. July 15, 2018 Type Package Package svalues July 15, 2018 Title Measures of the Sturdiness of Regression Coefficients Version 0.1.6 Author Carlos Cinelli Maintainer Carlos Cinelli Implements

More information

Package oaxaca. January 3, Index 11

Package oaxaca. January 3, Index 11 Type Package Title Blinder-Oaxaca Decomposition Version 0.1.4 Date 2018-01-01 Package oaxaca January 3, 2018 Author Marek Hlavac Maintainer Marek Hlavac

More information

The biglm Package. August 25, bigglm... 1 biglm Index 5. Bounded memory linear regression

The biglm Package. August 25, bigglm... 1 biglm Index 5. Bounded memory linear regression The biglm Package August 25, 2006 Type Package Title bounded memory linear and generalized linear models Version 0.4 Date 2005-09-24 Author Thomas Lumley Maintainer Thomas Lumley

More information

Yelp Star Rating System Reviewed: Are Star Ratings inline with textual reviews?

Yelp Star Rating System Reviewed: Are Star Ratings inline with textual reviews? Yelp Star Rating System Reviewed: Are Star Ratings inline with textual reviews? Eduardo Magalhaes Barbosa 17 de novembro de 2015 1 Introduction Star classification features are ubiquitous in apps world,

More information

Predict Outcomes and Reveal Relationships in Categorical Data

Predict Outcomes and Reveal Relationships in Categorical Data PASW Categories 18 Specifications Predict Outcomes and Reveal Relationships in Categorical Data Unleash the full potential of your data through predictive analysis, statistical learning, perceptual mapping,

More information

Package fso. February 19, 2015

Package fso. February 19, 2015 Version 2.0-1 Date 2013-02-26 Title Fuzzy Set Ordination Package fso February 19, 2015 Author David W. Roberts Maintainer David W. Roberts Description Fuzzy

More information

Living with Collinearity in Local Regression Models

Living with Collinearity in Local Regression Models Living with Collinearity in Local Regression Models Chris Brunsdon 1, Martin Charlton 2, Paul Harris 2 1 People Space and Place, Roxby Building, University of Liverpool,L69 7ZT, UK Tel. +44 151 794 2837

More information

[spa-temp.inf] Spatial-temporal information

[spa-temp.inf] Spatial-temporal information [spa-temp.inf] Spatial-temporal information VI Table of Contents for Spatial-temporal information I. Spatial-temporal information........................................... VI - 1 A. Cohort-survival method.........................................

More information

Resources for statistical assistance. Quantitative covariates and regression analysis. Methods for predicting continuous outcomes.

Resources for statistical assistance. Quantitative covariates and regression analysis. Methods for predicting continuous outcomes. Resources for statistical assistance Quantitative covariates and regression analysis Carolyn Taylor Applied Statistics and Data Science Group (ASDa) Department of Statistics, UBC January 24, 2017 Department

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SPSS SPSS (originally Statistical Package for the Social Sciences ) is a commercial statistical software package with an easy-to-use

More information

Package glmmml. R topics documented: March 25, Encoding UTF-8 Version Date Title Generalized Linear Models with Clustering

Package glmmml. R topics documented: March 25, Encoding UTF-8 Version Date Title Generalized Linear Models with Clustering Encoding UTF-8 Version 1.0.3 Date 2018-03-25 Title Generalized Linear Models with Clustering Package glmmml March 25, 2018 Binomial and Poisson regression for clustered data, fixed and random effects with

More information

Package truncreg. R topics documented: August 3, 2016

Package truncreg. R topics documented: August 3, 2016 Package truncreg August 3, 2016 Version 0.2-4 Date 2016-08-03 Title Truncated Gaussian Regression Models Depends R (>= 1.8.0), maxlik Suggests survival Description Estimation of models for truncated Gaussian

More information

SAS/STAT 13.1 User s Guide. The NESTED Procedure

SAS/STAT 13.1 User s Guide. The NESTED Procedure SAS/STAT 13.1 User s Guide The NESTED Procedure This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is as follows: SAS Institute

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics Library, Teaching & Learning 014 Summary of Basic data Analysis DATA Qualitative Quantitative Counted Measured Discrete Continuous 3 Main Measures of Interest Central Tendency Dispersion

More information

CHAPTER 5. BASIC STEPS FOR MODEL DEVELOPMENT

CHAPTER 5. BASIC STEPS FOR MODEL DEVELOPMENT CHAPTER 5. BASIC STEPS FOR MODEL DEVELOPMENT This chapter provides step by step instructions on how to define and estimate each of the three types of LC models (Cluster, DFactor or Regression) and also

More information

Chapter 15 Mixed Models. Chapter Table of Contents. Introduction Split Plot Experiment Clustered Data References...

Chapter 15 Mixed Models. Chapter Table of Contents. Introduction Split Plot Experiment Clustered Data References... Chapter 15 Mixed Models Chapter Table of Contents Introduction...309 Split Plot Experiment...311 Clustered Data...320 References...326 308 Chapter 15. Mixed Models Chapter 15 Mixed Models Introduction

More information

Package ArCo. November 5, 2017

Package ArCo. November 5, 2017 Title Artificial Counterfactual Package Version 0.3-1 Date 2017-11-05 Package ArCo November 5, 2017 Maintainer Gabriel F. R. Vasconcelos BugReports https://github.com/gabrielrvsc/arco/issues

More information

Problem set for Week 7 Linear models: Linear regression, multiple linear regression, ANOVA, ANCOVA

Problem set for Week 7 Linear models: Linear regression, multiple linear regression, ANOVA, ANCOVA ECL 290 Statistical Models in Ecology using R Problem set for Week 7 Linear models: Linear regression, multiple linear regression, ANOVA, ANCOVA Datasets in this problem set adapted from those provided

More information

Package mlegp. April 15, 2018

Package mlegp. April 15, 2018 Type Package Package mlegp April 15, 2018 Title Maximum Likelihood Estimates of Gaussian Processes Version 3.1.7 Date 2018-01-29 Author Garrett M. Dancik Maintainer Garrett M. Dancik

More information

Package addhaz. September 26, 2018

Package addhaz. September 26, 2018 Package addhaz September 26, 2018 Title Binomial and Multinomial Additive Hazard Models Version 0.5 Description Functions to fit the binomial and multinomial additive hazard models and to estimate the

More information

Package smicd. September 10, 2018

Package smicd. September 10, 2018 Type Package Package smicd September 10, 2018 Title Statistical Methods for Interval Censored Data Version 1.0.2 Author Paul Walter Maintainer Paul Walter Functions that provide

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SAS SAS (originally Statistical Analysis Software ) is a commercial statistical software package based on a powerful programming

More information

Package PSTR. September 25, 2017

Package PSTR. September 25, 2017 Type Package Package PSTR September 25, 2017 Title Panel Smooth Transition Regression Modelling Version 1.1.0 Provides the Panel Smooth Transition Regression (PSTR) modelling. The modelling procedure consists

More information

addesc Add a variable description to the key file CCDmanual0.docx

addesc Add a variable description to the key file CCDmanual0.docx addesc Add a variable description to the key file CCDmanual0.docx The function adds a variable description to the key file. This is useful in cases where a new variable is created, whose description is

More information

Model Diagnostic tests

Model Diagnostic tests Model Diagnostic tests 1. Multicollinearity a) Pairwise correlation test Quick/Group stats/ correlations b) VIF Step 1. Open the EViews workfile named Fish8.wk1. (FROM DATA FILES- TSIME) Step 2. Select

More information

Package censusapi. August 19, 2018

Package censusapi. August 19, 2018 Version 0.4.1 Title Retrieve Data from the Census APIs Package censusapi August 19, 2018 A wrapper for the U.S. Census Bureau APIs that returns data frames of Census data and metadata. Available datasets

More information

Linear Methods for Regression and Shrinkage Methods

Linear Methods for Regression and Shrinkage Methods Linear Methods for Regression and Shrinkage Methods Reference: The Elements of Statistical Learning, by T. Hastie, R. Tibshirani, J. Friedman, Springer 1 Linear Regression Models Least Squares Input vectors

More information

Package mvprobit. November 2, 2015

Package mvprobit. November 2, 2015 Version 0.1-8 Date 2015-11-02 Title Multivariate Probit Models Package mvprobit November 2, 2015 Author Arne Henningsen Maintainer Arne Henningsen

More information

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

Package rfsa. R topics documented: January 10, Type Package

Package rfsa. R topics documented: January 10, Type Package Type Package Package rfsa January 10, 2018 Title Feasible Solution Algorithm for Finding Best Subsets and Interactions Version 0.9.1 Date 2017-12-21 Assists in statistical model building to find optimal

More information

Package abe. October 30, 2017

Package abe. October 30, 2017 Package abe October 30, 2017 Type Package Title Augmented Backward Elimination Version 3.0.1 Date 2017-10-25 Author Rok Blagus [aut, cre], Sladana Babic [ctb] Maintainer Rok Blagus

More information

The supclust Package

The supclust Package The supclust Package May 18, 2005 Title Supervised Clustering of Genes Version 1.0-5 Date 2005-05-18 Methodology for Supervised Grouping of Predictor Variables Author Marcel Dettling and Martin Maechler

More information

Serial Correlation and Heteroscedasticity in Time series Regressions. Econometric (EC3090) - Week 11 Agustín Bénétrix

Serial Correlation and Heteroscedasticity in Time series Regressions. Econometric (EC3090) - Week 11 Agustín Bénétrix Serial Correlation and Heteroscedasticity in Time series Regressions Econometric (EC3090) - Week 11 Agustín Bénétrix 1 Properties of OLS with serially correlated errors OLS still unbiased and consistent

More information

Topic:- DU_J18_MA_STATS_Topic01

Topic:- DU_J18_MA_STATS_Topic01 DU MA MSc Statistics Topic:- DU_J18_MA_STATS_Topic01 1) In analysis of variance problem involving 3 treatments with 10 observations each, SSE= 399.6. Then the MSE is equal to: [Question ID = 2313] 1. 14.8

More information

Package mreg. February 20, 2015

Package mreg. February 20, 2015 Package mreg February 20, 2015 Type Package Title Fits regression models when the outcome is partially missing. Version 1.1 Date 2007-06-24 Author Simon Bond Maintainer Simon Bond

More information

Package EBglmnet. January 30, 2016

Package EBglmnet. January 30, 2016 Type Package Package EBglmnet January 30, 2016 Title Empirical Bayesian Lasso and Elastic Net Methods for Generalized Linear Models Version 4.1 Date 2016-01-15 Author Anhui Huang, Dianting Liu Maintainer

More information

Subset Selection in Multiple Regression

Subset Selection in Multiple Regression Chapter 307 Subset Selection in Multiple Regression Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that

More information

Package epitab. July 4, 2018

Package epitab. July 4, 2018 Type Package Package epitab July 4, 2018 Title Flexible Contingency Tables for Epidemiology Version 0.2.2 Author Stuart Lacy Maintainer Stuart Lacy Builds contingency tables that

More information

Conditional Volatility Estimation by. Conditional Quantile Autoregression

Conditional Volatility Estimation by. Conditional Quantile Autoregression International Journal of Mathematical Analysis Vol. 8, 2014, no. 41, 2033-2046 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ijma.2014.47210 Conditional Volatility Estimation by Conditional Quantile

More information

Package DBfit. October 25, 2018

Package DBfit. October 25, 2018 Type Package Package DBfit October 25, 2018 Title A Double Bootstrap Method for Analyzing Linear Models with Autoregressive Errors Version 1.0 Date 2018-10-16 Author Joseph W. McKean and Shaofeng Zhang

More information

ST512. Fall Quarter, Exam 1. Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false.

ST512. Fall Quarter, Exam 1. Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false. ST512 Fall Quarter, 2005 Exam 1 Name: Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false. 1. (42 points) A random sample of n = 30 NBA basketball

More information

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY

CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 23 CHAPTER 3 AN OVERVIEW OF DESIGN OF EXPERIMENTS AND RESPONSE SURFACE METHODOLOGY 3.1 DESIGN OF EXPERIMENTS Design of experiments is a systematic approach for investigation of a system or process. A series

More information

Minitab 17 commands Prepared by Jeffrey S. Simonoff

Minitab 17 commands Prepared by Jeffrey S. Simonoff Minitab 17 commands Prepared by Jeffrey S. Simonoff Data entry and manipulation To enter data by hand, click on the Worksheet window, and enter the values in as you would in any spreadsheet. To then save

More information

Package rdd. March 14, 2016

Package rdd. March 14, 2016 Maintainer Drew Dimmery Author Drew Dimmery Version 0.57 License Apache License (== 2.0) Title Regression Discontinuity Estimation Package rdd March 14, 2016 Provides the tools to undertake

More information

Package sfa. R topics documented: February 20, 2015

Package sfa. R topics documented: February 20, 2015 Package sfa February 20, 2015 Version 1.0-1 Date 2014-01-05 Title Stochastic Frontier Analysis Author Ariane Straub, under the supervision of Torsten Hothorn Maintainer Ariane Straub

More information