Package MARX. June 16, 2017

Size: px
Start display at page:

Download "Package MARX. June 16, 2017"

Transcription

1 Package MARX June 16, 2017 Title Simulation, Estimation and Selection of MARX Models Version 0.1 Date Author [aut, cre, cph], Alain Hecq [ctb], Lenard Lieb [ctb] Maintainer Simulate, estimate (b t-mle) and select mied causal-noncausal autoregressive models with possibl eogenous regressors, using methods proposed in Lanne and Saikkonen (2011) <doi: / > and Hecq et al. (2016) <doi: /annaeconstat >. Imports matlab, fbasics, tseries, stabledist License GPL-2 Encoding UTF-8 LazData true RogenNote NeedsCompilation no Repositor CRAN Date/Publication :10:49 UTC R topics documented: aic ar.ls bic commodit hq inference ll.ma mar mar.t mied pseudo

2 2 aic regressor.matri selection.lag selection.lag.lead sim.mar Inde 16 aic The Akaike information criterion (AIC) function This function allows ou to calculate the Akaike information criteria (AIC) for ARX models. aic(,, p_ma) p_ma Matri of data (ever column represents one time series). Specif NULL or Maimum number of autoregressive terms to be included. p values Lag order chosen b AIC. Vector containing values AIC for p = 0 up to p_ma. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) aic(data$, data$,8)

3 ar.ls 3 ar.ls The ARX estimation b OLS function This function allows ou to estimate ARX models b ordinar least squares (OLS). ar.ls(,, p) p Matri of data (ever column represents one time series). Specif NULL or Number of autoregressive terms to be included. coefficients coef.auto coef.eo mse residuals loglikelihood fitted.values df vcov Vector of estimated coefficients. Vector of estimated autoregressive parameters. Vector of estimated eogenous parameters. Mean squared error. Residuals. of the loglikelihood. Fitted values. Degrees of freedom. Variance-covariance matri of residuals. data <- sim.mar(c('t',3,0),c('t',1,1),100,0.5,0.4,0.3) ar.ls(data$,data$,2)

4 4 commodit bic The Baesian/Schwarz information criterion (BIC) function This function allows ou to calculate the Baesian/Schwarz information criteria (BIC) for ARX models. bic(,, p_ma) p_ma Matri of data (ever column represents one time series). Specif NULL or Maimum number of autoregressive terms to be included. p values Lag order chosen b BIC. Vector containing values BIc for p = 0 up to p_ma. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) bic(data$, data$,8) commodit Data: Monthl growth rates of commodit prices, echange rate and industrial production inde. Monthl growth rates of commodit prices, echange rate and industrial production inde from Februar 1980 until October Levels of these series can be downloaded from IMF and Federal Reserve Bank of St. Louis. data("commodit")

5 hq 5 Format Source A data frame with 441 observations on the following 8 variables. X_date_ a vector with dates dlnbev a numeric vector dlnind a numeric vector dlnrawm a numeric vector dlnmeta a numeric vector dlnoil a numeric vector dlnipi a numeric vector dlne a numeric vector IMF Primar Commodit Prices ( and Federal Reserve Bank of St. Louis ( data(dataset) hq The Hannan-Quinn (HQ) information criterion function This function allows ou to calculate the Hannan-Quinn (HQ) information criteria for ARX models. hq(,, p_ma) p_ma Matri of data (ever column represents one time series). Specif NULL or Maimum number of autoregressive terms to be included. p values Lag order chosen b HQ. Vector containing values HQ for p = 0 up to p_ma.

6 6 inference data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) hq(data$, data$,8) inference Asmptotic inference for the MARX function This function allows ou to calculate standard errors and confidence intervals for parameters of the MARX model. inference(,, B_C, B_NC, B_, IC, sig, df, sig_level) B_C B_NC B_ IC sig df sig_level Matri of data (ever column represents one time series). Specif NULL or Estimated causal parameters of the MARX. Estimated noncausal parameters of the MARX. Estimated parameters of the eogenous variables in the MARX. Estimated intercept. Estimated scale parameter of the assumed underling Student-t distribution of the residuals. Estimated degrees of freedom of the assumed underling Student-t distribution of the residuals. Significance level for the construction of inference. CI.c CI.nc CI.eo CI.int se.c se.nc se.eo se.int Confidence intervals for causal parameters. Confidence intervals for noncausal parameters. Confidence intervals for eogenous parameters. Confidence interval for intercept. Standard errors of causal parameters. Standard errors of noncausal parameters. Standard errors of eogenous parameters. Standard error of intercept.

7 ll.ma 7 data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) <- data$ <- data$ res <- mar.t(,,1,1) inference(,,res$coef.c,res$coef.nc,res$coef.eo,res$coef.int,res$scale,res$df,0.05) ll.ma The value of the t-log-likelihood for MARX function This function allows ou to determine the value of the t-log-likelihood for the MARX model. ll.ma(params,,, p_c, p_nc) params p_c p_nc List of parameters. Matri of data (ever column represents one time series). Specif NULL or Number of lags. Number of leads. neg.loglikelihood Minus the loglikelihood. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) <- data$ <- data$ p_c <- 1 p_nc <- 1 params <- c(0.5,0.4,0.3,0,1,1) ll.ma(params,,,p_c,p_nc)

8 8 mar mar The MARX function This interface-based function allows ou to perform model selection for MARX models based on information criteria. mar(,, p_ma, sig_level, p_c, p_nc) p_ma sig_level p_c p_nc Matri of data (ever column represents one time series). Specif NULL or Maimum number of autoregressive parameters (leads + lags) to be included. Significance level for the construction of inference. Number of lags (if not specified b the user a model selection procedure is used to determine the number of lags). Number of leads (if not specified b the user a model selection procedure is used to determine the number of leads). The function returns the values of the information criteria for the pseudo-causal models. The user is asked to choose a value for "p". Etensive output for the MARX(r,s,q) model (with p = r + s) which maimizes the log-likelihood is reported. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) p_ma <- 8 sig_level < mar(data$, data$, p_ma, sig_level,1,1) ## p_c and p_nc chosen to be 1: MARX(1,1,1) output. mar(data$, NULL, p_ma,sig_level,1,1) ## MAR(1,1), no eogenous variable specified.

9 mar.t 9 mar.t The estimation of the MARX model b t-mle function This function allows ou to estimate the MARX model b t-mle. mar.t(,, p_c, p_nc, params0) p_c p_nc params0 Matri of data (ever column represents one time series). Specif NULL or Number of lags. Number of leads. Starting values for the parameters to be estimated (both model and distributional parameters). coef.c coef.nc coef.eo coef.int scale df residuals Estimated causal coefficients. Estimated noncausal coefficients. Estimated eogenous coefficients. Estimated intercept. Estimated scale parameter. Estimated degrees of freedom. Residuals. data <- sim.mar(c('t',3,0),c('t',3,1),100,0.5,0.4,0.3) mar.t(data$,data$,1,1)

10 10 mied mied The MARX estimation function This function allows ou to estimate mied causal-noncausal MARX models b t-mle (compatible with most functions in lm() class). mied(,, p_c, p_nc) ## Default S3 method: mied(,, p_c, p_nc) ## S3 method for class 'mied' print(,...) ## S3 method for class 'mied' summar(object,...) ## S3 method for class 'combine' mied(,, p_c, p_nc) p_c p_nc Matri of data (ever column represents one time series). Specif NULL or Number of lags to be included. Number of leads to be included.... Other parameters. object An object of the class "mied". An object of class "mied" is a list containing the following components: coefficients se df.residual residuals fitted.values Vector of estimated coefficients. Standard errors of estimated coefficients. Degrees of freedom residuals. Residuals. Fitted values.

11 pseudo 11 data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) object <- mied(data$, data$, 1, 1) class(object) <- "mied" summar(object) pseudo The pseudo-causal model function This function allows ou to estimate pseudo-causal ARX models b OLS (compatible with most functions in lm() class). pseudo(,, p) ## Default S3 method: pseudo(,, p) ## S3 method for class 'pseudo' print(,...) ## S3 method for class 'pseudo' summar(object,...) p Matri of data (ever column represents one time series). Specif NULL or Number of lags to be included.... Other arguments object An object of the class "pseudo" An object of class "pseudo" is a list containing the following components: coefficients coef.auto coef.eo mse residuals Vector of estimated coefficients. Vector of estimated autoregressive parameters. Vector of estimated eogenous parameters. Mean squared error. Residuals.

12 12 regressor.matri loglikelihood fitted.values df vcov of the loglikelihood. Fitted values. Degrees of freedom. Variance-covariance matri of residuals. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) object <- pseudo(data$, data$, 2) class(object) <- "pseudo" summar(object) regressor.matri The regressor matri function This function allows ou to create a regressor matri. regressor.matri(,, p) p Matri of data (ever column represents one time series). Specif NULL or Number of autoregressive terms to be included. Z Regressor matri data <- sim.mar(c('t',3,0),c('t',1,1),100,0.5,0.4,0.3) regressor.matri(data$, data$, 2)

13 selection.lag 13 selection.lag The model selection for pseudo-arx function This function allows ou to calculate AIC, BIC, HQ for pseudo-arx models. selection.lag(,, p_ma) p_ma Matri of data (ever column represents one time series). Specif NULL or Maimum number of autoregressive terms to be included. bic aic hq Vector containing values BIC for p=0 up to p_ma. Vector containing values AIC for p=0 up to p_ma. vector containing values HQ for p=0 up to p_ma. data <- sim.mar(c('t',1,1), c('t',1,1),100,0.5,0.4,0.3) selection.lag(data$,data$,8) selection.lag.lead The lag-lead model selection for MARX function This function allows ou to determine the MARX model (for p = r + s) that maimizes the t-loglikelihood. selection.lag.lead(,, p_pseudo)

14 14 sim.mar p_pseudo Matri of data (ever column represents one time series). Specif NULL or Number of autoregressive terms to be included in the pseudo-causal model. p.c The number of lags selected. p.nc The number of leads selected. loglikelihood The value of the loglikelihood for all models with p = r + s. data <- sim.mar(c('t',3,0), c('t',3,0),100,0.5,0.4,0.3) selection.lag.lead(data$,data$,2) sim.mar The simulation of MARX processes This function allows ou to simulate MARX processes based on different underling distribution. sim.mar(dist.eps, dist., obs, c_par, nc_par, eo_par) dist.eps dist. obs c_par nc_par eo_par vector containing the error distribution and its parameters (options: t, normal, stable). vector containing the distribution of and its parameters (options: t, normal, stable). Specif NULL or Number of observations for simulated process. vector of causal parameters. vector of noncausal parameters. Parameter of the eogenous variable.

15 sim.mar 15 Simulated data. Simulated data (eogenous variable). dist.eps <- c('t',1,1) ## t-distributed errors with 1 degree of freedom and scale parameter 1 dist. <- c('normal',0,1) ## standard normall distributed variable obs <- 100 c_par <- c(0.2,0.4) nc_par <- 0.8 eo_par <- 0.5 sim.mar(dist.eps,dist.,obs,c_par,nc_par,eo_par) ## Simulates a MARX(2,1,1) process

16 Inde Topic causal-noncausal inference, 6 mar.t, 9 mied, 10 selection.lag.lead, 13 Topic datasets commodit, 4 Topic estimation ar.ls, 3 mar, 8 mar.t, 9 mied, 10 pseudo, 11 regressor.matri, 12 Topic inference inference, 6 Topic optimization ll.ma, 7 Topic pseudo-causal ar.ls, 3 pseudo, 11 selection.lag, 13 Topic selection aic, 2 bic, 4 hq, 5 mar, 8 selection.lag, 13 selection.lag.lead, 13 Topic simulation sim.mar, 14 hq, 5 inference, 6 ll.ma, 7 mar, 8 mar.t, 9 mied, 10 print.mied (mied), 10 print.pseudo (pseudo), 11 pseudo, 11 regressor.matri, 12 selection.lag, 13 selection.lag.lead, 13 sim.mar, 14 summar.mied (mied), 10 summar.pseudo (pseudo), 11 aic, 2 ar.ls, 3 bic, 4 commodit, 4 dataset (commodit), 4 16

Package MARX. April 24, 2018

Package MARX. April 24, 2018 Package MARX April 24, 2018 Title Simulation, Estimation, Model Selection and Forecasting for MARX Models Version 0.2 Date 2018-04-24 Author [aut, cre, cph], Alain Hecq [ctb], Lenard Lieb [ctb] Maintainer

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

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0

Package pwrab. R topics documented: June 6, Type Package Title Power Analysis for AB Testing Version 0.1.0 Type Package Title Power Analysis for AB Testing Version 0.1.0 Package pwrab June 6, 2017 Maintainer William Cha Power analysis for AB testing. The calculations are based

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 gppm. July 5, 2018

Package gppm. July 5, 2018 Version 0.2.0 Title Gaussian Process Panel Modeling Package gppm July 5, 2018 Provides an implementation of Gaussian process panel modeling (GPPM). GPPM is described in Karch (2016; )

More information

Package BayesCR. September 11, 2017

Package BayesCR. September 11, 2017 Type Package Package BayesCR September 11, 2017 Title Bayesian Analysis of Censored Regression Models Under Scale Mixture of Skew Normal Distributions Version 2.1 Author Aldo M. Garay ,

More information

Package nonnest2. January 23, 2018

Package nonnest2. January 23, 2018 Title Tests of Non-Nested Models Version 0.5-1 Date 2018-01-22 Package nonnest2 January 23, 2018 Testing non-nested models via theory supplied by Vuong (1989) . Includes tests of model

More information

Package datasets.load

Package datasets.load Title Interface for Loading Datasets Version 0.1.0 Package datasets.load December 14, 2016 Visual interface for loading datasets in RStudio from insted (unloaded) s. Depends R (>= 3.0.0) Imports shiny,

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 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 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 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 VarReg. April 24, 2018

Package VarReg. April 24, 2018 Type Package Title Semi-Parametric Variance Regression Version 1.0.2 Package VarReg April 24, 2018 Maintainer Kristy Robledo Methods for fitting semi-parametric mean and variance

More information

Package REndo. November 8, 2017

Package REndo. November 8, 2017 Type Package Package REndo November 8, 2017 Title Fitting Linear Models with Endogenous Regressors using Latent Instrumental Variables Version 1.3 Date 2017-11-08 Author Raluca Gui, Markus Meierer, Rene

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

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 freeknotsplines

Package freeknotsplines Version 1.0.1 Date 2018-05-17 Package freeknotsplines June 10, 2018 Title Algorithms for Implementing Free-Knot Splines Author , Philip Smith , Pierre Lecuyer

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 catenary. May 4, 2018

Package catenary. May 4, 2018 Type Package Title Fits a Catenary to Given Points Version 1.1.2 Date 2018-05-04 Package catenary May 4, 2018 Gives methods to create a catenary object and then plot it and get properties of it. Can construct

More information

Package tidylpa. March 28, 2018

Package tidylpa. March 28, 2018 Type Package Title Easily Carry Out Latent Profile Analysis Version 0.1.3 Package tidylpa March 28, 2018 An interface to the 'mclust' package to easily carry out latent profile analysis (``LPA''). Provides

More information

Package modmarg. R topics documented:

Package modmarg. R topics documented: Package modmarg February 1, 2018 Title Calculating Marginal Effects and Levels with Errors Version 0.9.2 Calculate predicted levels and marginal effects, using the delta method to calculate standard errors.

More information

Package ICsurv. February 19, 2015

Package ICsurv. February 19, 2015 Package ICsurv February 19, 2015 Type Package Title A package for semiparametric regression analysis of interval-censored data Version 1.0 Date 2014-6-9 Author Christopher S. McMahan and Lianming Wang

More information

Package robets. March 6, Type Package

Package robets. March 6, Type Package Type Package Package robets March 6, 2018 Title Forecasting Time Series with Robust Exponential Smoothing Version 1.4 Date 2018-03-06 We provide an outlier robust alternative of the function ets() in the

More information

Package mfbvar. December 28, Type Package Title Mixed-Frequency Bayesian VAR Models Version Date

Package mfbvar. December 28, Type Package Title Mixed-Frequency Bayesian VAR Models Version Date Type Package Title Mied-Frequency Bayesian VAR Models Version 0.4.0 Date 2018-12-17 Package mfbvar December 28, 2018 Estimation of mied-frequency Bayesian vector autoregressive (VAR) models with Minnesota

More information

Repeated Measures Part 4: Blood Flow data

Repeated Measures Part 4: Blood Flow data Repeated Measures Part 4: Blood Flow data /* bloodflow.sas */ options linesize=79 pagesize=100 noovp formdlim='_'; title 'Two within-subjecs factors: Blood flow data (NWK p. 1181)'; proc format; value

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Stat 500 lab notes c Philip M. Dixon, Week 10: Autocorrelated errors

Stat 500 lab notes c Philip M. Dixon, Week 10: Autocorrelated errors Week 10: Autocorrelated errors This week, I have done one possible analysis and provided lots of output for you to consider. Case study: predicting body fat Body fat is an important health measure, but

More information

Package basictrendline

Package basictrendline Version 2.0.3 Date 2018-07-26 Package basictrendline July 26, 2018 Title Add Trendline and Confidence Interval of Basic Regression Models to Plot Maintainer Weiping Mei Plot, draw

More information

Package TVsMiss. April 5, 2018

Package TVsMiss. April 5, 2018 Type Package Title Variable Selection for Missing Data Version 0.1.1 Date 2018-04-05 Author Jiwei Zhao, Yang Yang, and Ning Yang Maintainer Yang Yang Package TVsMiss April 5, 2018

More information

INTRODUCTION TO PANEL DATA ANALYSIS

INTRODUCTION TO PANEL DATA ANALYSIS INTRODUCTION TO PANEL DATA ANALYSIS USING EVIEWS FARIDAH NAJUNA MISMAN, PhD FINANCE DEPARTMENT FACULTY OF BUSINESS & MANAGEMENT UiTM JOHOR PANEL DATA WORKSHOP-23&24 MAY 2017 1 OUTLINE 1. Introduction 2.

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

Package bayeslongitudinal

Package bayeslongitudinal Type Package Package bayeslongitudinal July 25, 2017 Title Adjust Longitudinal Regression Models Using Bayesian Methodology Version 0.1.0 Date 2017-07-18 Author Edwin Javier Castillo Carreño, Edilberto

More information

Package Rglpk. May 18, 2017

Package Rglpk. May 18, 2017 Version 0.6-3 Title R/GNU Linear Programming Kit Interface Package Rglpk May 18, 2017 Description R interface to the GNU Linear Programming Kit. 'GLPK' is open source software for solving large-scale linear

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 FWDselect. December 19, 2015

Package FWDselect. December 19, 2015 Title Selecting Variables in Regression Models Version 2.1.0 Date 2015-12-18 Author Marta Sestelo [aut, cre], Nora M. Villanueva [aut], Javier Roca-Pardinas [aut] Maintainer Marta Sestelo

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

Package stapler. November 27, 2017

Package stapler. November 27, 2017 Version 0.6.3 Package stapler November 27, 2017 Title Simultaneous Truth and Performance Level Estimation An implementation of Simultaneous Truth and Performance Level Estimation (STAPLE) .

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

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

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

Package libstabler. June 1, 2017

Package libstabler. June 1, 2017 Version 1.0 Date 2017-05-25 Package libstabler June 1, 2017 Title Fast and Accurate Evaluation, Random Number Generation and Parameter Estimation of Skew Stable Distributions Tools for fast and accurate

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 fastdummies. January 8, 2018

Package fastdummies. January 8, 2018 Type Package Package fastdummies January 8, 2018 Title Fast Creation of Dummy (Binary) Columns and Rows from Categorical Variables Version 1.0.0 Description Creates dummy columns from columns that have

More information

Package ellipse. January 6, 2018

Package ellipse. January 6, 2018 Version 0.4.1 Package ellipse January 6, 2018 Title Functions for Drawing Ellipses and Ellipse-Like Confidence Regions Author Duncan Murdoch and E. D. Chow (porting to R by Jesus

More information

Package capushe. R topics documented: April 19, Type Package

Package capushe. R topics documented: April 19, Type Package Type Package Package capushe April 19, 2016 Title CAlibrating Penalities Using Slope HEuristics Version 1.1.1 Date 2011-07-13 Author Sylvain Arlot, Vincent Brault, Jean-Patrick Baudry, Cathy Maugis and

More information

Package vinereg. August 10, 2018

Package vinereg. August 10, 2018 Type Package Title D-Vine Quantile Regression Version 0.5.0 Package vinereg August 10, 2018 Maintainer Thomas Nagler Description Implements D-vine quantile regression models with parametric

More information

Package fcr. March 13, 2018

Package fcr. March 13, 2018 Package fcr March 13, 2018 Title Functional Concurrent Regression for Sparse Data Version 1.0 Author Andrew Leroux [aut, cre], Luo Xiao [aut, cre], Ciprian Crainiceanu [aut], William Checkly [aut] Maintainer

More information

Package SiZer. February 19, 2015

Package SiZer. February 19, 2015 Version 0.1-4 Date 2011-3-21 Title SiZer: Significant Zero Crossings Package SiZer February 19, 2015 Author Derek Sonderegger Maintainer Derek Sonderegger

More information

Package autovarcore. June 4, 2018

Package autovarcore. June 4, 2018 Package autovarcore June 4, 2018 Type Package Title Automated Vector Autoregression Models and Networks Version 1.0-4 Date 2018-06-04 BugReports https://github.com/roqua/autovarcore/issues Maintainer Ando

More information

Package enpls. May 14, 2018

Package enpls. May 14, 2018 Package enpls May 14, 2018 Type Package Title Ensemble Partial Least Squares Regression Version 6.0 Maintainer Nan Xiao An algorithmic framework for measuring feature importance, outlier detection,

More information

Package IATScore. January 10, 2018

Package IATScore. January 10, 2018 Package IATScore January 10, 2018 Type Package Title Scoring Algorithm for the Implicit Association Test (IAT) Version 0.1.1 Author Daniel Storage [aut, cre] Maintainer Daniel Storage

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 nsprcomp. August 29, 2016

Package nsprcomp. August 29, 2016 Version 0.5 Date 2014-02-03 Title Non-Negative and Sparse PCA Package nsprcomp August 29, 2016 Description This package implements two methods for performing a constrained principal component analysis

More information

Package scarabee. August 22, 2014

Package scarabee. August 22, 2014 Package scarabee August 22, 2014 Type Package Title Optimization Toolkit for Pharmacokinetic-Pharmacodynamic Models Version 1.1-3 Date 2014-02-09 Author Sebastien Bihorel Maintainer Sebastien Bihorel

More information

Package funitroots. November 16, 2017

Package funitroots. November 16, 2017 Title Rmetrics - Modelling Trends and Unit Roots Date 2017-11-12 Version 3042.79 Author Diethelm Wuertz [aut], Tobias Setz [cre], Yohan Chalabi [ctb] Package funitroots November 16, 2017 Maintainer Tobias

More information

Time-Varying Volatility and ARCH Models

Time-Varying Volatility and ARCH Models Time-Varying Volatility and ARCH Models ARCH MODEL AND TIME-VARYING VOLATILITY In this lesson we'll use Gretl to estimate several models in which the variance of the dependent variable changes over time.

More information

Lab Session 1. Introduction to Eviews

Lab Session 1. Introduction to Eviews Albert-Ludwigs University Freiburg Department of Empirical Economics Time Series Analysis, Summer 2009 Dr. Sevtap Kestel To see the data of m1: 1 Lab Session 1 Introduction to Eviews We introduce the basic

More information

Intro to E-Views. E-views is a statistical package useful for cross sectional, time series and panel data statistical analysis.

Intro to E-Views. E-views is a statistical package useful for cross sectional, time series and panel data statistical analysis. Center for Teaching, Research & Learning Research Support Group at the CTRL Lab American University, Washington, D.C. http://www.american.edu/provost/ctrl/ 202-885-3862 Intro to E-Views E-views is a statistical

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

Package hyphenatr. August 29, 2016

Package hyphenatr. August 29, 2016 Encoding UTF-8 Package hyphenatr August 29, 2016 Title Tools to Hyphenate Strings Using the 'Hunspell' Hyphenation Library Version 0.3.0 Identifying hyphenation points in strings can be useful for both

More information

A faster model selection criterion for OP-ELM and OP-KNN: Hannan-Quinn criterion

A faster model selection criterion for OP-ELM and OP-KNN: Hannan-Quinn criterion A faster model selection criterion for OP-ELM and OP-KNN: Hannan-Quinn criterion Yoan Miche 1,2 and Amaury Lendasse 1 1- Helsinki University of Technology - ICS Lab. Konemiehentie 2, 02015 TKK - Finland

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 longclust. March 18, 2018

Package longclust. March 18, 2018 Package longclust March 18, 2018 Type Package Title Model-Based Clustering and Classification for Longitudinal Data Version 1.2.2 Date 2018-03-18 Author Paul D. McNicholas [aut, cre], K. Raju Jampani [aut]

More information

Package SEMrushR. November 3, 2018

Package SEMrushR. November 3, 2018 Type Package Title R Interface to Access the 'SEMrush' API Version 0.1.0 Package SEMrushR November 3, 2018 Implements methods for querying SEO (Search Engine Optimization) and SEM (Search Engine Marketing)

More information

Package ssmn. R topics documented: August 9, Type Package. Title Skew Scale Mixtures of Normal Distributions. Version 1.1.

Package ssmn. R topics documented: August 9, Type Package. Title Skew Scale Mixtures of Normal Distributions. Version 1.1. Package ssmn August 9, 2016 Type Package Title Skew Scale Mixtures of Normal Distributions Version 1.1 Date 2016-08-08 Author Luis Benites Sanchez and Clecio da Silva Ferreira Maintainer Luis Benites Sanchez

More information

Package FMsmsnReg. March 30, 2016

Package FMsmsnReg. March 30, 2016 Package FMsmsnReg March 30, 2016 Type Package Title Regression Models with Finite Mixtures of Skew Heavy-Tailed Errors Version 1.0 Date 2016-03-29 Author Luis Benites Sanchez and Rocio Paola Maehara and

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Discussion Notes 3 Stepwise Regression and Model Selection

Discussion Notes 3 Stepwise Regression and Model Selection Discussion Notes 3 Stepwise Regression and Model Selection Stepwise Regression There are many different commands for doing stepwise regression. Here we introduce the command step. There are many arguments

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 BigVAR. R topics documented: April 3, Type Package

Package BigVAR. R topics documented: April 3, Type Package Type Package Package BigVAR April 3, 2017 Title Dimension Reduction Methods for Multivariate Time Series Version 1.0.2 Date 2017-03-24 Estimates VAR and VARX models with structured Lasso Penalties. Depends

More information

Package estprod. May 2, 2018

Package estprod. May 2, 2018 Title Estimation of Production Functions Version 1.1 Date 2018-05-01 Package estprod May 2, 2018 Estimation of production functions by the Olley-Pakes, Levinsohn- Petrin and Wooldrge methodologies. The

More information

Package ecoseries. R topics documented: September 27, 2017

Package ecoseries. R topics documented: September 27, 2017 Package ecoseries September 27, 2017 Title An R Interface to Brazilian Central Bank and Sidra APIs and the IPEA Data Version 0.1.5 Date 2017-09-27 Maintainer Fernando Teixeira

More information

Package ordinalcont. January 10, 2018

Package ordinalcont. January 10, 2018 Package ordinalcont January 10, 2018 Title Ordinal Regression Analysis for Continuous Scales Version 1.3.0 Author Maurizio Manuguerra [aut, cre], Gillian Heller [aut] Maintainer Maurizio Manuguerra

More information

Package TSrepr. January 26, Type Package Title Time Series Representations Version Date

Package TSrepr. January 26, Type Package Title Time Series Representations Version Date Type Package Title Time Series Representations Version 1.0.0 Date 2018-01-26 Package TSrepr January 26, 2018 Methods for representations (i.e. dimensionality reduction, preprocessing, feature etraction)

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

NCSS Statistical Software

NCSS Statistical Software Chapter 327 Geometric Regression Introduction Geometric regression is a special case of negative binomial regression in which the dispersion parameter is set to one. It is similar to regular multiple regression

More information

STA121: Applied Regression Analysis

STA121: Applied Regression Analysis STA121: Applied Regression Analysis Variable Selection - Chapters 8 in Dielman Artin Department of Statistical Science October 23, 2009 Outline Introduction 1 Introduction 2 3 4 Variable Selection Model

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

Package samplesizecmh

Package samplesizecmh Package samplesizecmh Title Power and Sample Size Calculation for the Cochran-Mantel-Haenszel Test Date 2017-12-13 Version 0.0.0 Copyright Spectrum Health, Grand Rapids, MI December 21, 2017 Calculates

More information

Package pcr. November 20, 2017

Package pcr. November 20, 2017 Version 1.1.0 Title Analyzing Real-Time Quantitative PCR Data Package pcr November 20, 2017 Calculates the amplification efficiency and curves from real-time quantitative PCR (Polymerase Chain Reaction)

More information

Package pdfetch. October 15, 2017

Package pdfetch. October 15, 2017 Package pdfetch October 15, 2017 Imports httr, zoo, xts, XML, lubridate, jsonlite, reshape2, readr, curl, xml2 Type Package Title Fetch Economic and Financial Time Series Data from Public Sources Version

More information

Package bife. May 7, 2017

Package bife. May 7, 2017 Type Package Title Binary Choice Models with Fixed Effects Version 0.4 Date 2017-05-06 Package May 7, 2017 Estimates fixed effects binary choice models (logit and probit) with potentially many individual

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

Package msgps. February 20, 2015

Package msgps. February 20, 2015 Type Package Package msgps February 20, 2015 Title Degrees of freedom of elastic net, adaptive lasso and generalized elastic net Version 1.3 Date 2012-5-17 Author Kei Hirose Maintainer Kei Hirose

More information

An Econometric Study: The Cost of Mobile Broadband

An Econometric Study: The Cost of Mobile Broadband An Econometric Study: The Cost of Mobile Broadband Zhiwei Peng, Yongdon Shin, Adrian Raducanu IATOM13 ENAC January 16, 2014 Zhiwei Peng, Yongdon Shin, Adrian Raducanu (UCLA) The Cost of Mobile Broadband

More information

Package ecotox. June 28, 2018

Package ecotox. June 28, 2018 Type Package Title Analysis of Ecotoxicology Version 1.3.2 Package ecotox June 28, 2018 Description A simple approach to using a probit or logit analysis to calculate lethal concentration (LC) or time

More information

Package validara. October 19, 2017

Package validara. October 19, 2017 Type Package Title Validate Brazilian Administrative Registers Version 0.1.1 Package validara October 19, 2017 Maintainer Gustavo Coelho Contains functions to validate administrative

More information

Package GUTS. R topics documented: October 10, Type Package

Package GUTS. R topics documented: October 10, Type Package Type Package Package GUTS October 10, 2017 Title Fast Calculation of the Likelihood of a Stochastic Survival Model Version 1.0.4 Date 2017-10-09 Author Carlo Albert and Sören Vogel

More information

Package clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

More information

Package mixphm. July 23, 2015

Package mixphm. July 23, 2015 Type Package Title Mixtures of Proportional Hazard Models Version 0.7-2 Date 2015-07-23 Package mixphm July 23, 2015 Fits multiple variable mixtures of various parametric proportional hazard models using

More information

Package colf. October 9, 2017

Package colf. October 9, 2017 Type Package Package colf October 9, 2017 Title Constrained Optimization on Linear Function Version 0.1.3 URL https://github.com/lyzander/colf BugReports https://github.com/lyzander/colf/issues Depends

More information

Bivariate (Simple) Regression Analysis

Bivariate (Simple) Regression Analysis Revised July 2018 Bivariate (Simple) Regression Analysis This set of notes shows how to use Stata to estimate a simple (two-variable) regression equation. It assumes that you have set Stata up on your

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Lecture 13: Model selection and regularization

Lecture 13: Model selection and regularization Lecture 13: Model selection and regularization Reading: Sections 6.1-6.2.1 STATS 202: Data mining and analysis October 23, 2017 1 / 17 What do we know so far In linear regression, adding predictors always

More information

Package iccbeta. January 28, 2019

Package iccbeta. January 28, 2019 Type Package Package iccbeta January 28, 2019 Title Multilevel Model Intraclass Correlation for Slope Heterogeneity Version 1.2.0 Description A function and vignettes for computing an intraclass correlation

More information

Package OrthoPanels. November 11, 2016

Package OrthoPanels. November 11, 2016 Package OrthoPanels November 11, 2016 Title Dynamic Panel Models with Orthogonal Reparameterization of Fixed Effects Version 1.1-0 Implements the orthogonal reparameterization approach recommended by Lancaster

More information

Package sparsenetgls

Package sparsenetgls Type Package Package sparsenetgls March 18, 2019 Title Using Gaussian graphical structue learning estimation in generalized least squared regression for multivariate normal regression Version 1.0.1 Maintainer

More information

Package psda. September 5, 2017

Package psda. September 5, 2017 Title Polygonal Symbolic Data Analysis Version 1.0.0 Date 2017-09-05 Package psda September 5, 2017 An implementation of symbolic al data analysis. The package presents the estimation of main descriptive

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

Package TBSSurvival. January 5, 2017

Package TBSSurvival. January 5, 2017 Version 1.3 Date 2017-01-05 Package TBSSurvival January 5, 2017 Title Survival Analysis using a Transform-Both-Sides Model Author Adriano Polpo , Cassio de Campos , D.

More information