Package zic. September 4, 2015

Size: px
Start display at page:

Download "Package zic. September 4, 2015"

Transcription

1 Package zic September 4, 2015 Version 0.9 Date Title Bayesian Inference for Zero-Inflated Count Models Author Markus Jochmann Maintainer Markus Jochmann Description Provides MCMC algorithms for the analysis of zero-inflated count models. The case of stochastic search variable selection (SVS) is also considered. All MCMC samplers are coded in C++ for improved efficiency. A data set considering the demand for health care is provided. License GPL (>= 2) Depends R (>= 3.0.2) Imports Rcpp (>= ), coda (>= ) LinkingTo Rcpp, RcppArmadillo NeedsCompilation yes Repository CRAN Date/Publication :07:45 R topics documented: docvisits zic zic.svs Index 8 1

2 2 docvisits docvisits Demand for Health Care Data Description Usage Format This data set gives the number of doctor visits in the last three months for a sample of German male individuals in The data set is taken from Riphahn et al. (2003) and is a subsample of the German Socioeconomic Panel (SOEP). In contrast to Riphahn et al. (2003) only male individuals from the last wave are considered. See Jochmann (2013) for further details. data(docvisits) This data frame contains 1812 observations on the following 22 variables: docvisits number of doctor visits in last 3 months age age agesq age squared / 1000 age30 1 if age >= 30 age35 1 if age >= 35 age40 1 if age >= 40 age45 1 if age >= 45 age50 1 if age >= 50 age55 1 if age >= 55 age60 1 if age >= 60 health health satisfaction, 0 (low) - 10 (high) handicap 1 if handicapped, 0 otherwise hdegree degree of handicap in percentage points married 1 if married, 0 otherwise schooling years of schooling hhincome household monthly net income, in German marks / 1000 children 1 if children under 16 in the household, 0 otherwise self 1 if self employed, 0 otherwise civil 1 if civil servant, 0 otherwise bluec 1 if blue collar employee, 0 otherwise employed 1 if employed, 0 otherwise public 1 if public health insurance, 0 otherwise addon 1 if add-on insurance, 0 otherwise

3 zic 3 References Jochmann, M. (2013). What Belongs Where? Variable Selection for Zero-Inflated Count Models with an Application to the Demand for Health Care, Computational Statistics, 28, Riphahn, R. T., Wambach, A., Million, A. (2003). Incentive Effects in the Demand for Health Care: A Bivariate Panel Count Data Estimation, Journal of Applied Econometrics, 18, Wagner, G. G., Frick, J. R., Schupp, J. (2007). The German Socio-Economic Panel Study (SOEP) Scope, Evolution and Enhancements, Schmollers Jahrbuch, 127, zic Bayesian Inference for Zero-Inflated Count Models Description zic fits zero-inflated count models via Markov chain Monte Carlo methods. Usage zic(formula, data, a0, b0, c0, d0, e0, f0, n.burnin, n.mcmc, n.thin, tune = 1.0, scale = TRUE) Arguments formula data A symbolic description of the model to be fit specifying the response variable and covariates. A data frame in which to interpret the variables in formula. a0 The prior variance of α. b0 The prior variance of β j. c0 The prior variance of γ. d0 The prior variance of δ j. e0 The shape parameter for the inverse gamma prior on σ 2. f0 The inverse scale parameter the inverse gamma prior on σ 2. n.burnin n.mcmc n.thin tune scale Number of burn-in iterations of the sampler. Number of iterations of the sampler. Thinning interval. Tuning parameter of Metropolis-Hastings step. If true, all covariates (except binary variables) are rescaled by dividing by their respective standard errors.

4 4 zic Details The considered zero-inflated count model is given by yi Poisson[exp(ηi )], ηi = α + x iβ + ε i, ε i N(0, σ 2 ), d i = γ + x iδ + ν i, ν i N(0, 1), y i = 1(d i > 0)yi, where y i and x i are observed. The assumed prior distributions are α N(0, a 0 ), β k N(0, b 0 ), k = 1,..., K, γ N(0, c 0 ), δ k N(0, d 0 ), k = 1,..., K, σ 2 Inv-Gamma (e 0, f 0 ). The sampling algorithm described in Jochmann (2013) is used. Value A list containing the following elements: alpha Posterior draws of α (coda mcmc object). beta Posterior draws of β (coda mcmc object). gamma delta sigma2 acc References Posterior draws of γ (coda mcmc object). Posterior draws of δ (coda mcmc object). Posterior draws of σ 2 (coda mcmc object). Acceptance rate of the Metropolis-Hastings step. Jochmann, M. (2013). What Belongs Where? Variable Selection for Zero-Inflated Count Models with an Application to the Demand for Health Care, Computational Statistics, 28, Examples ## Not run: data( docvisits ) mdl <- docvisits ~ age + agesq + health + handicap + hdegree + married + schooling + hhincome + children + self + civil + bluec + employed + public + addon post <- zic( f, docvisits, 10.0, 10.0, 10.0, 10.0, 1.0, 1.0, 1000, 10000, 10, 1.0, TRUE ) ## End(Not run)

5 zic.svs 5 zic.svs SVS for Zero-Inflated Count Models Description zic.svs applies SVS to zero-inflated count models Usage zic.svs(formula, data, a0, g0.beta, h0.beta, nu0.beta, r0.beta, s0.beta, e0, f0, c0, g0.delta, h0.delta, nu0.delta, r0.delta, s0.delta, n.burnin, n.mcmc, n.thin, tune = 1.0, scale = TRUE) Arguments formula data A symbolic description of the model to be fit specifying the response variable and covariates. A data frame in which to interpret the variables in formula. a0 The prior variance of α. g0.beta The shape parameter for the inverse gamma prior on κ β k. h0.beta The inverse scale parameter for the inverse gamma prior on κ β k. nu0.beta Prior parameter for the spike of the hypervariances for the β k. r0.beta Prior parameter of ω β. s0.beta Prior parameter of ω β. e0 The shape parameter for the inverse gamma prior on σ 2. f0 The inverse scale parameter the inverse gamma prior on σ 2. c0 The prior variance of γ. g0.delta The shape parameter for the inverse gamma prior on κ δ k. h0.delta The inverse scale parameter for the inverse gamma prior on κ δ k. nu0.delta Prior parameter for the spike of the hypervariances for the δ k. r0.delta Prior parameter of ω δ. s0.delta Prior parameter of ω δ. n.burnin n.mcmc n.thin tune scale Number of burn-in iterations of the sampler. Number of iterations of the sampler. Thinning interval. Tuning parameter of Metropolis-Hastings step. If true, all covariates (except binary variables) are rescaled by dividing by their respective standard errors.

6 6 zic.svs Details Value The considered zero-inflated count model is given by y i Poisson[exp(η i )], η i = α + x iβ + ε i, ε i N(0, σ 2 ), d i = γ + x iδ + ν i, ν i N(0, 1), y i = 1(d i > 0)y i, where y i and x i are observed. The assumed prior distributions are α N(0, a 0 ), β k N(0, τ β k κβ k ),, k = 1,..., K, κ β j Inv-Gamma(gβ 0, hβ 0 ), τ β k (1 ωβ )δ ν β + ω β δ 1, 0 ω β Beta(r β 0, sβ 0 ), γ N(0, c 0 ), δ k N(0, τ δ k κ δ k), k = 1,..., K, κ δ k Inv-Gamma(g δ 0, h δ 0), τ δ k (1 ω δ )δ ν δ 0 + ω δ δ 1, ω δ Beta(r δ 0, s δ 0), σ 2 Inv-Gamma (e 0, f 0 ). The sampling algorithm described in Jochmann (2013) is used. A list containing the following elements: alpha beta gamma delta sigma2 Posterior draws of α (coda mcmc object). Posterior draws of β (coda mcmc object). Posterior draws of γ (coda mcmc object). Posterior draws of δ (coda mcmc object). Posterior draws of σ 2 (coda mcmc object). I.beta Posterior draws of indicator whether τ β j I.delta omega.beta omega.delta acc Posterior draws of indicator whether τ δ j Posterior draws of ω β (coda mcmc object). Posterior draws of ω δ (coda mcmc object). Acceptance rate of the Metropolis-Hastings step. is one (coda mcmc object). is one (coda mcmc object).

7 zic.svs 7 References Jochmann, M. (2013). What Belongs Where? Variable Selection for Zero-Inflated Count Models with an Application to the Demand for Health Care, Computational Statistics, 28, Examples ## Not run: data( docvisits ) mdl <- docvisits ~ age + agesq + health + handicap + hdegree + married + schooling + hhincome + children + self + civil + bluec + employed + public + addon post <- zic.ssvs( mdl, docvisits, 10.0, 5.0, 5.0, 1.0e-04, 2.0, 2.0, 1.0, 1.0, 10.0, 5.0, 5.0, 1.0e-04, 2.0, 2.0, 1000, 10000, 10, 1.0, TRUE ) ## End(Not run)

8 Index Topic datasets docvisits, 2 docvisits, 2 zic, 3 zic.svs, 5 8

Variable Selection for Health Care Demand in Germany

Variable Selection for Health Care Demand in Germany Variable Selection for Health Care Demand in Germany Zhu Wang Connecticut Children s Medical Center University of Connecticut School of Medicine zwang@connecticutchildrens.org July 23, 2015 This document

More information

Package ChannelAttribution

Package ChannelAttribution Type Package Package ChannelAttribution October 10, 2015 Title Markov Model for the Online Multi-Channel Attribution Problem Version 1.2 Date 2015-10-09 Author Davide Altomare and David Loris Maintainer

More information

Bayesian Machine Learning (ML): Modeling And Inference in Big Data. Zhuhua Cai Google, Rice University caizhua@gmail.com

Bayesian Machine Learning (ML): Modeling And Inference in Big Data. Zhuhua Cai Google, Rice University caizhua@gmail.com Bayesian Machine Learning (ML): Modeling And Inference in Big Data Zhuhua Cai Google Rice University caizhua@gmail.com 1 Syllabus Bayesian ML Concepts (Today) Bayesian ML on MapReduce (Next morning) Bayesian

More information

Package PACVB. R topics documented: July 10, 2016. Type Package

Package PACVB. R topics documented: July 10, 2016. Type Package Type Package Package PACVB July 10, 2016 Title Variational Bayes (VB) Approximation of Gibbs Posteriors with Hinge Losses Version 1.1.1 Date 2016-01-29 Author James Ridgway Maintainer James Ridgway

More information

Gaussian Processes to Speed up Hamiltonian Monte Carlo

Gaussian Processes to Speed up Hamiltonian Monte Carlo Gaussian Processes to Speed up Hamiltonian Monte Carlo Matthieu Lê Murray, Iain http://videolectures.net/mlss09uk_murray_mcmc/ Rasmussen, Carl Edward. "Gaussian processes to speed up hybrid Monte Carlo

More information

Bayesian Statistics: Indian Buffet Process

Bayesian Statistics: Indian Buffet Process Bayesian Statistics: Indian Buffet Process Ilker Yildirim Department of Brain and Cognitive Sciences University of Rochester Rochester, NY 14627 August 2012 Reference: Most of the material in this note

More information

Package mcmcse. March 25, 2016

Package mcmcse. March 25, 2016 Version 1.2-1 Date 2016-03-24 Title Monte Carlo Standard Errors for MCMC Package mcmcse March 25, 2016 Author James M. Flegal , John Hughes and Dootika Vats

More information

Package EstCRM. July 13, 2015

Package EstCRM. July 13, 2015 Version 1.4 Date 2015-7-11 Package EstCRM July 13, 2015 Title Calibrating Parameters for the Samejima's Continuous IRT Model Author Cengiz Zopluoglu Maintainer Cengiz Zopluoglu

More information

Imperfect Debugging in Software Reliability

Imperfect Debugging in Software Reliability Imperfect Debugging in Software Reliability Tevfik Aktekin and Toros Caglar University of New Hampshire Peter T. Paul College of Business and Economics Department of Decision Sciences and United Health

More information

Parameter estimation for nonlinear models: Numerical approaches to solving the inverse problem. Lecture 12 04/08/2008. Sven Zenker

Parameter estimation for nonlinear models: Numerical approaches to solving the inverse problem. Lecture 12 04/08/2008. Sven Zenker Parameter estimation for nonlinear models: Numerical approaches to solving the inverse problem Lecture 12 04/08/2008 Sven Zenker Assignment no. 8 Correct setup of likelihood function One fixed set of observation

More information

STA 4273H: Statistical Machine Learning

STA 4273H: Statistical Machine Learning STA 4273H: Statistical Machine Learning Russ Salakhutdinov Department of Statistics! rsalakhu@utstat.toronto.edu! http://www.cs.toronto.edu/~rsalakhu/ Lecture 6 Three Approaches to Classification Construct

More information

A Bootstrap Metropolis-Hastings Algorithm for Bayesian Analysis of Big Data

A Bootstrap Metropolis-Hastings Algorithm for Bayesian Analysis of Big Data A Bootstrap Metropolis-Hastings Algorithm for Bayesian Analysis of Big Data Faming Liang University of Florida August 9, 2015 Abstract MCMC methods have proven to be a very powerful tool for analyzing

More information

11. Time series and dynamic linear models

11. Time series and dynamic linear models 11. Time series and dynamic linear models Objective To introduce the Bayesian approach to the modeling and forecasting of time series. Recommended reading West, M. and Harrison, J. (1997). models, (2 nd

More information

Package fastghquad. R topics documented: February 19, 2015

Package fastghquad. R topics documented: February 19, 2015 Package fastghquad February 19, 2015 Type Package Title Fast Rcpp implementation of Gauss-Hermite quadrature Version 0.2 Date 2014-08-13 Author Alexander W Blocker Maintainer Fast, numerically-stable Gauss-Hermite

More information

Standard errors of marginal effects in the heteroskedastic probit model

Standard errors of marginal effects in the heteroskedastic probit model Standard errors of marginal effects in the heteroskedastic probit model Thomas Cornelißen Discussion Paper No. 320 August 2005 ISSN: 0949 9962 Abstract In non-linear regression models, such as the heteroskedastic

More information

Markov Chain Monte Carlo Simulation Made Simple

Markov Chain Monte Carlo Simulation Made Simple Markov Chain Monte Carlo Simulation Made Simple Alastair Smith Department of Politics New York University April2,2003 1 Markov Chain Monte Carlo (MCMC) simualtion is a powerful technique to perform numerical

More information

BayesX - Software for Bayesian Inference in Structured Additive Regression

BayesX - Software for Bayesian Inference in Structured Additive Regression BayesX - Software for Bayesian Inference in Structured Additive Regression Thomas Kneib Faculty of Mathematics and Economics, University of Ulm Department of Statistics, Ludwig-Maximilians-University Munich

More information

Package SurvCorr. February 26, 2015

Package SurvCorr. February 26, 2015 Type Package Title Correlation of Bivariate Survival Times Version 1.0 Date 2015-02-25 Package SurvCorr February 26, 2015 Author Meinhard Ploner, Alexandra Kaider and Georg Heinze Maintainer Georg Heinze

More information

Inference on Phase-type Models via MCMC

Inference on Phase-type Models via MCMC Inference on Phase-type Models via MCMC with application to networks of repairable redundant systems Louis JM Aslett and Simon P Wilson Trinity College Dublin 28 th June 202 Toy Example : Redundant Repairable

More information

MCMC-Based Assessment of the Error Characteristics of a Surface-Based Combined Radar - Passive Microwave Cloud Property Retrieval

MCMC-Based Assessment of the Error Characteristics of a Surface-Based Combined Radar - Passive Microwave Cloud Property Retrieval MCMC-Based Assessment of the Error Characteristics of a Surface-Based Combined Radar - Passive Microwave Cloud Property Retrieval Derek J. Posselt University of Michigan Jay G. Mace University of Utah

More information

Bayesian Statistics in One Hour. Patrick Lam

Bayesian Statistics in One Hour. Patrick Lam Bayesian Statistics in One Hour Patrick Lam Outline Introduction Bayesian Models Applications Missing Data Hierarchical Models Outline Introduction Bayesian Models Applications Missing Data Hierarchical

More information

Package ATE. R topics documented: February 19, 2015. Type Package Title Inference for Average Treatment Effects using Covariate. balancing.

Package ATE. R topics documented: February 19, 2015. Type Package Title Inference for Average Treatment Effects using Covariate. balancing. Package ATE February 19, 2015 Type Package Title Inference for Average Treatment Effects using Covariate Balancing Version 0.2.0 Date 2015-02-16 Author Asad Haris and Gary Chan

More information

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew

More information

Chenfeng Xiong (corresponding), University of Maryland, College Park (cxiong@umd.edu)

Chenfeng Xiong (corresponding), University of Maryland, College Park (cxiong@umd.edu) Paper Author (s) Chenfeng Xiong (corresponding), University of Maryland, College Park (cxiong@umd.edu) Lei Zhang, University of Maryland, College Park (lei@umd.edu) Paper Title & Number Dynamic Travel

More information

CHAPTER 3 EXAMPLES: REGRESSION AND PATH ANALYSIS

CHAPTER 3 EXAMPLES: REGRESSION AND PATH ANALYSIS Examples: Regression And Path Analysis CHAPTER 3 EXAMPLES: REGRESSION AND PATH ANALYSIS Regression analysis with univariate or multivariate dependent variables is a standard procedure for modeling relationships

More information

Web-based Supplementary Materials for Bayesian Effect Estimation. Accounting for Adjustment Uncertainty by Chi Wang, Giovanni

Web-based Supplementary Materials for Bayesian Effect Estimation. Accounting for Adjustment Uncertainty by Chi Wang, Giovanni 1 Web-based Supplementary Materials for Bayesian Effect Estimation Accounting for Adjustment Uncertainty by Chi Wang, Giovanni Parmigiani, and Francesca Dominici In Web Appendix A, we provide detailed

More information

R2MLwiN Using the multilevel modelling software package MLwiN from R

R2MLwiN Using the multilevel modelling software package MLwiN from R Using the multilevel modelling software package MLwiN from R Richard Parker Zhengzheng Zhang Chris Charlton George Leckie Bill Browne Centre for Multilevel Modelling (CMM) University of Bristol Using the

More information

Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, and Discrete Changes

Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, and Discrete Changes Using the Delta Method to Construct Confidence Intervals for Predicted Probabilities, Rates, Discrete Changes JunXuJ.ScottLong Indiana University August 22, 2005 The paper provides technical details on

More information

Selection Sampling from Large Data sets for Targeted Inference in Mixture Modeling

Selection Sampling from Large Data sets for Targeted Inference in Mixture Modeling Selection Sampling from Large Data sets for Targeted Inference in Mixture Modeling Ioanna Manolopoulou, Cliburn Chan and Mike West December 29, 2009 Abstract One of the challenges of Markov chain Monte

More information

An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics

An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics Slide 1 An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics Dr. Christian Asseburg Centre for Health Economics Part 1 Slide 2 Talk overview Foundations of Bayesian statistics

More information

Spatial Statistics Chapter 3 Basics of areal data and areal data modeling

Spatial Statistics Chapter 3 Basics of areal data and areal data modeling Spatial Statistics Chapter 3 Basics of areal data and areal data modeling Recall areal data also known as lattice data are data Y (s), s D where D is a discrete index set. This usually corresponds to data

More information

MAN-BITES-DOG BUSINESS CYCLES ONLINE APPENDIX

MAN-BITES-DOG BUSINESS CYCLES ONLINE APPENDIX MAN-BITES-DOG BUSINESS CYCLES ONLINE APPENDIX KRISTOFFER P. NIMARK The next section derives the equilibrium expressions for the beauty contest model from Section 3 of the main paper. This is followed by

More information

Handling attrition and non-response in longitudinal data

Handling attrition and non-response in longitudinal data Longitudinal and Life Course Studies 2009 Volume 1 Issue 1 Pp 63-72 Handling attrition and non-response in longitudinal data Harvey Goldstein University of Bristol Correspondence. Professor H. Goldstein

More information

Tutorial on Markov Chain Monte Carlo

Tutorial on Markov Chain Monte Carlo Tutorial on Markov Chain Monte Carlo Kenneth M. Hanson Los Alamos National Laboratory Presented at the 29 th International Workshop on Bayesian Inference and Maximum Entropy Methods in Science and Technology,

More information

Applying MCMC Methods to Multi-level Models submitted by William J Browne for the degree of PhD of the University of Bath 1998 COPYRIGHT Attention is drawn tothefactthatcopyright of this thesis rests with

More information

Package VideoComparison

Package VideoComparison Version 0.15 Date 2015-07-24 Title Video Comparison Tool Package VideoComparison July 25, 2015 Author Silvia Espinosa, Joaquin Ordieres, Antonio Bello, Jose Maria Perez Maintainer Joaquin Ordieres

More information

Reliability estimators for the components of series and parallel systems: The Weibull model

Reliability estimators for the components of series and parallel systems: The Weibull model Reliability estimators for the components of series and parallel systems: The Weibull model Felipe L. Bhering 1, Carlos Alberto de Bragança Pereira 1, Adriano Polpo 2 1 Department of Statistics, University

More information

Simple Linear Regression Inference

Simple Linear Regression Inference Simple Linear Regression Inference 1 Inference requirements The Normality assumption of the stochastic term e is needed for inference even if it is not a OLS requirement. Therefore we have: Interpretation

More information

Package depend.truncation

Package depend.truncation Type Package Package depend.truncation May 28, 2015 Title Statistical Inference for Parametric and Semiparametric Models Based on Dependently Truncated Data Version 2.4 Date 2015-05-28 Author Takeshi Emura

More information

Package CoImp. February 19, 2015

Package CoImp. February 19, 2015 Title Copula based imputation method Date 2014-03-01 Version 0.2-3 Package CoImp February 19, 2015 Author Francesca Marta Lilja Di Lascio, Simone Giannerini Depends R (>= 2.15.2), methods, copula Imports

More information

Package changepoint. R topics documented: November 9, 2015. Type Package Title Methods for Changepoint Detection Version 2.

Package changepoint. R topics documented: November 9, 2015. Type Package Title Methods for Changepoint Detection Version 2. Type Package Title Methods for Changepoint Detection Version 2.2 Date 2015-10-23 Package changepoint November 9, 2015 Maintainer Rebecca Killick Implements various mainstream and

More information

Journal of Statistical Software

Journal of Statistical Software JSS Journal of Statistical Software MMMMMM YYYY, Volume VV, Issue II. http://www.jstatsoft.org/ sptimer: Spatio-Temporal Bayesian Modeling Using R K.S. Bakar Yale University, USA S.K. Sahu University of

More information

Examining credit card consumption pattern

Examining credit card consumption pattern Examining credit card consumption pattern Yuhao Fan (Economics Department, Washington University in St. Louis) Abstract: In this paper, I analyze the consumer s credit card consumption data from a commercial

More information

The frequency of visiting a doctor: is the decision to go independent of the frequency?

The frequency of visiting a doctor: is the decision to go independent of the frequency? Discussion Paper: 2009/04 The frequency of visiting a doctor: is the decision to go independent of the frequency? Hans van Ophem www.feb.uva.nl/ke/uva-econometrics Amsterdam School of Economics Department

More information

Considering covariates in the covariance structure of spatial processes

Considering covariates in the covariance structure of spatial processes Considering covariates in the covariance structure of spatial processes Alexandra M. Schmidt Universidade Federal do Rio de Janeiro, Brazil Peter Guttorp University of Washington, USA and Norwegian Computing

More information

Package tagcloud. R topics documented: July 3, 2015

Package tagcloud. R topics documented: July 3, 2015 Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.

More information

LOGISTIC REGRESSION. Nitin R Patel. where the dependent variable, y, is binary (for convenience we often code these values as

LOGISTIC REGRESSION. Nitin R Patel. where the dependent variable, y, is binary (for convenience we often code these values as LOGISTIC REGRESSION Nitin R Patel Logistic regression extends the ideas of multiple linear regression to the situation where the dependent variable, y, is binary (for convenience we often code these values

More information

BAYESIAN ANALYSIS OF AN AGGREGATE CLAIM MODEL USING VARIOUS LOSS DISTRIBUTIONS. by Claire Dudley

BAYESIAN ANALYSIS OF AN AGGREGATE CLAIM MODEL USING VARIOUS LOSS DISTRIBUTIONS. by Claire Dudley BAYESIAN ANALYSIS OF AN AGGREGATE CLAIM MODEL USING VARIOUS LOSS DISTRIBUTIONS by Claire Dudley A dissertation submitted for the award of the degree of Master of Science in Actuarial Management School

More information

Calculating VaR. Capital Market Risk Advisors CMRA

Calculating VaR. Capital Market Risk Advisors CMRA Calculating VaR Capital Market Risk Advisors How is VAR Calculated? Sensitivity Estimate Models - use sensitivity factors such as duration to estimate the change in value of the portfolio to changes in

More information

More details on the inputs, functionality, and output can be found below.

More details on the inputs, functionality, and output can be found below. Overview: The SMEEACT (Software for More Efficient, Ethical, and Affordable Clinical Trials) web interface (http://research.mdacc.tmc.edu/smeeactweb) implements a single analysis of a two-armed trial comparing

More information

Model Selection and Claim Frequency for Workers Compensation Insurance

Model Selection and Claim Frequency for Workers Compensation Insurance Model Selection and Claim Frequency for Workers Compensation Insurance Jisheng Cui, David Pitt and Guoqi Qian Abstract We consider a set of workers compensation insurance claim data where the aggregate

More information

The German Data Forum (RatSWD) and its Mission for the Social, Behavioral, and Economic Sciences

The German Data Forum (RatSWD) and its Mission for the Social, Behavioral, and Economic Sciences The German Data Forum (RatSWD) and its Mission for the Social, Behavioral, and Economic Sciences Claudia Oellers (RatSWD) Dr. Ingrid Tucci (DIW Berlin) Le German Data Forum (RatSWD) et sa mission pour

More information

Validation of Software for Bayesian Models using Posterior Quantiles. Samantha R. Cook Andrew Gelman Donald B. Rubin DRAFT

Validation of Software for Bayesian Models using Posterior Quantiles. Samantha R. Cook Andrew Gelman Donald B. Rubin DRAFT Validation of Software for Bayesian Models using Posterior Quantiles Samantha R. Cook Andrew Gelman Donald B. Rubin DRAFT Abstract We present a simulation-based method designed to establish that software

More information

A Latent Variable Approach to Validate Credit Rating Systems using R

A Latent Variable Approach to Validate Credit Rating Systems using R A Latent Variable Approach to Validate Credit Rating Systems using R Chicago, April 24, 2009 Bettina Grün a, Paul Hofmarcher a, Kurt Hornik a, Christoph Leitner a, Stefan Pichler a a WU Wien Grün/Hofmarcher/Hornik/Leitner/Pichler

More information

Package bigdata. R topics documented: February 19, 2015

Package bigdata. R topics documented: February 19, 2015 Type Package Title Big Data Analytics Version 0.1 Date 2011-02-12 Author Han Liu, Tuo Zhao Maintainer Han Liu Depends glmnet, Matrix, lattice, Package bigdata February 19, 2015 The

More information

Model Calibration with Open Source Software: R and Friends. Dr. Heiko Frings Mathematical Risk Consulting

Model Calibration with Open Source Software: R and Friends. Dr. Heiko Frings Mathematical Risk Consulting Model with Open Source Software: and Friends Dr. Heiko Frings Mathematical isk Consulting Bern, 01.09.2011 Agenda in a Friends Model with & Friends o o o Overview First instance: An Extreme Value Example

More information

Sampling for Bayesian computation with large datasets

Sampling for Bayesian computation with large datasets Sampling for Bayesian computation with large datasets Zaiying Huang Andrew Gelman April 27, 2005 Abstract Multilevel models are extremely useful in handling large hierarchical datasets. However, computation

More information

Package MFDA. R topics documented: July 2, 2014. Version 1.1-4 Date 2007-10-30 Title Model Based Functional Data Analysis

Package MFDA. R topics documented: July 2, 2014. Version 1.1-4 Date 2007-10-30 Title Model Based Functional Data Analysis Version 1.1-4 Date 2007-10-30 Title Model Based Functional Data Analysis Package MFDA July 2, 2014 Author Wenxuan Zhong , Ping Ma Maintainer Wenxuan Zhong

More information

Multilevel Modelling of medical data

Multilevel Modelling of medical data Statistics in Medicine(00). To appear. Multilevel Modelling of medical data By Harvey Goldstein William Browne And Jon Rasbash Institute of Education, University of London 1 Summary This tutorial presents

More information

INDIRECT INFERENCE (prepared for: The New Palgrave Dictionary of Economics, Second Edition)

INDIRECT INFERENCE (prepared for: The New Palgrave Dictionary of Economics, Second Edition) INDIRECT INFERENCE (prepared for: The New Palgrave Dictionary of Economics, Second Edition) Abstract Indirect inference is a simulation-based method for estimating the parameters of economic models. Its

More information

Modeling and Analysis of Call Center Arrival Data: A Bayesian Approach

Modeling and Analysis of Call Center Arrival Data: A Bayesian Approach Modeling and Analysis of Call Center Arrival Data: A Bayesian Approach Refik Soyer * Department of Management Science The George Washington University M. Murat Tarimcilar Department of Management Science

More information

Imputing Missing Data using SAS

Imputing Missing Data using SAS ABSTRACT Paper 3295-2015 Imputing Missing Data using SAS Christopher Yim, California Polytechnic State University, San Luis Obispo Missing data is an unfortunate reality of statistics. However, there are

More information

Modeling the Distribution of Environmental Radon Levels in Iowa: Combining Multiple Sources of Spatially Misaligned Data

Modeling the Distribution of Environmental Radon Levels in Iowa: Combining Multiple Sources of Spatially Misaligned Data Modeling the Distribution of Environmental Radon Levels in Iowa: Combining Multiple Sources of Spatially Misaligned Data Brian J. Smith, Ph.D. The University of Iowa Joint Statistical Meetings August 10,

More information

APPLIED MISSING DATA ANALYSIS

APPLIED MISSING DATA ANALYSIS APPLIED MISSING DATA ANALYSIS Craig K. Enders Series Editor's Note by Todd D. little THE GUILFORD PRESS New York London Contents 1 An Introduction to Missing Data 1 1.1 Introduction 1 1.2 Chapter Overview

More information

DURATION ANALYSIS OF FLEET DYNAMICS

DURATION ANALYSIS OF FLEET DYNAMICS DURATION ANALYSIS OF FLEET DYNAMICS Garth Holloway, University of Reading, garth.holloway@reading.ac.uk David Tomberlin, NOAA Fisheries, david.tomberlin@noaa.gov ABSTRACT Though long a standard technique

More information

The Impact of e-government Promotion in Europe: Internet Dependence and Critical Mass

The Impact of e-government Promotion in Europe: Internet Dependence and Critical Mass Volume 3, Issue 4 2011 Article 2 The Impact of e-government Promotion in Europe: Internet Dependence and Critical Mass Xavier Fernández-i-Marín, Institut Barcelona d'estudis Internacionals (IBEI) Fernández-i-Marín,

More information

Package acrm. R topics documented: February 19, 2015

Package acrm. R topics documented: February 19, 2015 Package acrm February 19, 2015 Type Package Title Convenience functions for analytical Customer Relationship Management Version 0.1.1 Date 2014-03-28 Imports dummies, randomforest, kernelfactory, ada Author

More information

Some Examples of (Markov Chain) Monte Carlo Methods

Some Examples of (Markov Chain) Monte Carlo Methods Some Examples of (Markov Chain) Monte Carlo Methods Ryan R. Rosario What is a Monte Carlo method? Monte Carlo methods rely on repeated sampling to get some computational result. Monte Carlo methods originated

More information

A Two-Stage Bayesian Model for Predicting Winners in Major League Baseball

A Two-Stage Bayesian Model for Predicting Winners in Major League Baseball Journal of Data Science 2(2004), 61-73 A Two-Stage Bayesian Model for Predicting Winners in Major League Baseball Tae Young Yang 1 and Tim Swartz 2 1 Myongji University and 2 Simon Fraser University Abstract:

More information

Package metafuse. November 7, 2015

Package metafuse. November 7, 2015 Type Package Package metafuse November 7, 2015 Title Fused Lasso Approach in Regression Coefficient Clustering Version 1.0-1 Date 2015-11-06 Author Lu Tang, Peter X.K. Song Maintainer Lu Tang

More information

Package missforest. February 20, 2015

Package missforest. February 20, 2015 Type Package Package missforest February 20, 2015 Title Nonparametric Missing Value Imputation using Random Forest Version 1.4 Date 2013-12-31 Author Daniel J. Stekhoven Maintainer

More information

Dealing with large datasets

Dealing with large datasets Dealing with large datasets (by throwing away most of the data) Alan Heavens Institute for Astronomy, University of Edinburgh with Ben Panter, Rob Tweedie, Mark Bastin, Will Hossack, Keith McKellar, Trevor

More information

Monte Carlo and Empirical Methods for Stochastic Inference (MASM11/FMS091)

Monte Carlo and Empirical Methods for Stochastic Inference (MASM11/FMS091) Monte Carlo and Empirical Methods for Stochastic Inference (MASM11/FMS091) Magnus Wiktorsson Centre for Mathematical Sciences Lund University, Sweden Lecture 5 Sequential Monte Carlo methods I February

More information

Probability Calculator

Probability Calculator Chapter 95 Introduction Most statisticians have a set of probability tables that they refer to in doing their statistical wor. This procedure provides you with a set of electronic statistical tables that

More information

α α λ α = = λ λ α ψ = = α α α λ λ ψ α = + β = > θ θ β > β β θ θ θ β θ β γ θ β = γ θ > β > γ θ β γ = θ β = θ β = θ β = β θ = β β θ = = = β β θ = + α α α α α = = λ λ λ λ λ λ λ = λ λ α α α α λ ψ + α =

More information

Centre for Central Banking Studies

Centre for Central Banking Studies Centre for Central Banking Studies Technical Handbook No. 4 Applied Bayesian econometrics for central bankers Andrew Blake and Haroon Mumtaz CCBS Technical Handbook No. 4 Applied Bayesian econometrics

More information

Statistical Machine Learning

Statistical Machine Learning Statistical Machine Learning UoC Stats 37700, Winter quarter Lecture 4: classical linear and quadratic discriminants. 1 / 25 Linear separation For two classes in R d : simple idea: separate the classes

More information

Bayesian Estimation Supersedes the t-test

Bayesian Estimation Supersedes the t-test Bayesian Estimation Supersedes the t-test Mike Meredith and John Kruschke December 25, 2015 1 Introduction The BEST package provides a Bayesian alternative to a t test, providing much richer information

More information

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not.

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not. Statistical Learning: Chapter 4 Classification 4.1 Introduction Supervised learning with a categorical (Qualitative) response Notation: - Feature vector X, - qualitative response Y, taking values in C

More information

Package bcrm. September 24, 2015

Package bcrm. September 24, 2015 Type Package Package bcrm September 24, 2015 Title Bayesian Continual Reassessment Method for Phase I Dose-Escalation Trials Version 0.4.5 Date 2015-09-23 Author Michael Sweeting Maintainer Michael Sweeting

More information

Incentive Eects in the Demand for Health Care: A Bivariate Panel Count Data Estimation Regina T. Riphahn 1 2 3 Achim Wambach 1 2 Andreas Million 1 3 1 University of Munich, 2 CEPR, London, 3 IZA, Bonn

More information

Markov Chain Monte Carlo and Applied Bayesian Statistics: a short course Chris Holmes Professor of Biostatistics Oxford Centre for Gene Function

Markov Chain Monte Carlo and Applied Bayesian Statistics: a short course Chris Holmes Professor of Biostatistics Oxford Centre for Gene Function MCMC Appl. Bayes 1 Markov Chain Monte Carlo and Applied Bayesian Statistics: a short course Chris Holmes Professor of Biostatistics Oxford Centre for Gene Function MCMC Appl. Bayes 2 Objectives of Course

More information

Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates

Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates Online Appendix The Earnings Returns to Graduating with Honors - Evidence from Law Graduates Ronny Freier Mathias Schumann Thomas Siedler February 13, 2015 DIW Berlin and Free University Berlin. Universität

More information

Statistical Machine Learning from Data

Statistical Machine Learning from Data Samy Bengio Statistical Machine Learning from Data 1 Statistical Machine Learning from Data Gaussian Mixture Models Samy Bengio IDIAP Research Institute, Martigny, Switzerland, and Ecole Polytechnique

More information

A Bayesian Approach to Extreme Value Estimation in Operational Risk Modeling

A Bayesian Approach to Extreme Value Estimation in Operational Risk Modeling Bakhodir Ergashev, Stefan Mittnik and Evan Sekeris A Bayesian Approach to Extreme Value Estimation in Operational Risk Modeling Working Paper Number 10, 2013 Center for Quantitative Risk Analysis (CEQURA)

More information

M1 in Economics and Economics and Statistics Applied multivariate Analysis - Big data analytics Worksheet 1 - Bootstrap

M1 in Economics and Economics and Statistics Applied multivariate Analysis - Big data analytics Worksheet 1 - Bootstrap Nathalie Villa-Vialanei Année 2015/2016 M1 in Economics and Economics and Statistics Applied multivariate Analsis - Big data analtics Worksheet 1 - Bootstrap This worksheet illustrates the use of nonparametric

More information

Package survpresmooth

Package survpresmooth Package survpresmooth February 20, 2015 Type Package Title Presmoothed Estimation in Survival Analysis Version 1.1-8 Date 2013-08-30 Author Ignacio Lopez de Ullibarri and Maria Amalia Jacome Maintainer

More information

BayeScan v2.1 User Manual

BayeScan v2.1 User Manual BayeScan v2.1 User Manual Matthieu Foll January, 2012 1. Introduction This program, BayeScan aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies

More information

Structural Model Updating and Health Monitoring with Incomplete Modal Data Using Gibbs Sampler

Structural Model Updating and Health Monitoring with Incomplete Modal Data Using Gibbs Sampler Computer-Aided Civil and Infrastructure Engineering 21 (2006) 242 257 Structural Model Updating and Health Monitoring with Incomplete Modal Data Using Gibbs Sampler Jianye Ching Department of Construction

More information

Package gazepath. April 1, 2015

Package gazepath. April 1, 2015 Type Package Package gazepath April 1, 2015 Title Gazepath Transforms Eye-Tracking Data into Fixations and Saccades Version 1.0 Date 2015-03-03 Author Daan van Renswoude Maintainer Daan van Renswoude

More information

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes

Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simulation Exercises to Reinforce the Foundations of Statistical Thinking in Online Classes Simcha Pollack, Ph.D. St. John s University Tobin College of Business Queens, NY, 11439 pollacks@stjohns.edu

More information

Bayesian Stomping Models and Multivariate Loss Res reserving Models

Bayesian Stomping Models and Multivariate Loss Res reserving Models PREDICTING MULTIVARIATE INSURANCE LOSS PAYMENTS UNDER THE BAYESIAN COPULA FRAMEWORK YANWEI ZHANG CNA INSURANCE COMPANY VANJA DUKIC APPLIED MATH UNIVERSITY OF COLORADO-BOULDER Abstract. The literature of

More information

Probabilistic Fitting

Probabilistic Fitting Probabilistic Fitting Shape Modeling April 2016 Sandro Schönborn University of Basel 1 Probabilistic Inference for Face Model Fitting Approximate Inference with Markov Chain Monte Carlo 2 Face Image Manipulation

More information

The Workers Compensation Tail Revisited

The Workers Compensation Tail Revisited The Workers Compensation Tail Revisited First version: January 8, 2009 Latest revision: September 25, 2009 Frank A. Schmid Director and Senior Economist National Council on Compensation Insurance, Inc.

More information

Bayesian Image Super-Resolution

Bayesian Image Super-Resolution Bayesian Image Super-Resolution Michael E. Tipping and Christopher M. Bishop Microsoft Research, Cambridge, U.K..................................................................... Published as: Bayesian

More information

Big Data need Big Model 1/44

Big Data need Big Model 1/44 Big Data need Big Model 1/44 Andrew Gelman, Bob Carpenter, Matt Hoffman, Daniel Lee, Ben Goodrich, Michael Betancourt, Marcus Brubaker, Jiqiang Guo, Peter Li, Allen Riddell,... Department of Statistics,

More information

Basic Bayesian Methods

Basic Bayesian Methods 6 Basic Bayesian Methods Mark E. Glickman and David A. van Dyk Summary In this chapter, we introduce the basics of Bayesian data analysis. The key ingredients to a Bayesian analysis are the likelihood

More information

Non Linear Dependence Structures: a Copula Opinion Approach in Portfolio Optimization

Non Linear Dependence Structures: a Copula Opinion Approach in Portfolio Optimization Non Linear Dependence Structures: a Copula Opinion Approach in Portfolio Optimization Jean- Damien Villiers ESSEC Business School Master of Sciences in Management Grande Ecole September 2013 1 Non Linear

More information

Hierarchical Bayesian Modeling of the HIV Response to Therapy

Hierarchical Bayesian Modeling of the HIV Response to Therapy Hierarchical Bayesian Modeling of the HIV Response to Therapy Shane T. Jensen Department of Statistics, The Wharton School, University of Pennsylvania March 23, 2010 Joint Work with Alex Braunstein and

More information

An Application of Inverse Reinforcement Learning to Medical Records of Diabetes Treatment

An Application of Inverse Reinforcement Learning to Medical Records of Diabetes Treatment An Application of Inverse Reinforcement Learning to Medical Records of Diabetes Treatment Hideki Asoh 1, Masanori Shiro 1 Shotaro Akaho 1, Toshihiro Kamishima 1, Koiti Hasida 1, Eiji Aramaki 2, and Takahide

More information