Package CompModSA. February 14, 2012

Size: px
Start display at page:

Download "Package CompModSA. February 14, 2012"

Transcription

1 Package CompModSA February 14, 2012 Type Package Title Sensitivity Analysis for Complex Computer Models Version Date Author Curtis Storlie with contributions from Alexandre Janon Maintainer Curtis Storlie Alexandre Janon Depends R (>= 2.4.1), quadprog, tgp, gam, locfit, rpart, mda, corpcor,randomforest, gbm, MASS, mlegp, polspline, fields, methods,lars Description Uses regression surface approximations to calculate variance decomposition and total variance sensitivity indices. This package is useful for conducting sensitivity analysis of complex computer codes when model evaluations are somewhat expensive (e.g. take longer than a couple seconds to run) but a reasonable number (50 or more) of model evaluations can be obtained at sampled input values. License GPL (>= 2) Repository CRAN Date/Publication :08:34 R topics documented: CompModSA-package predict.sensitivity print.sensitivity sensitivity Index 9 1

2 2 predict.sensitivity CompModSA-package Sensitivity Analysis for Complex Computer Models Description Details Uses regression surface approximations to calculate sensitivity measures. This package is useful for conducting sensitivity analysis of complex computer codes when model evaluations are somewhat expensive but a reasonable number (~50 or more) of model evaluations can be obtained at sampled input values. The primary function in this package is sensitivity. Type?sensitivity for information on its usage. predict.sensitivity Prediction at New Input Values Description Usage This function is used to predict the computer model output at unobserved input locations using an surrogate model approximation; see sensitivity for more details. predict.sensitivity(object, X.new, control,...) Arguments Value object X.new control a sensitivity object a dataframe or matrix. Each row is a new input value. Each column represents an input variable. Columns should be the same variables as those in x.loc from the original call to sensitivity. list of control parameters as in sensitivity.... further arguments passed to or from other methods. a list with length(y.loc) elements corresponding to each y variable used in the original call to sensitivity. Each element of the list is a vector of length nrow(x.new) containing the predicted y values. Author(s) Curtis Storlie <storlie@stat.unm.edu>

3 print.sensitivity 3 See Also sensitivity Examples ## Not run: ## Read in some data for illustration ex.dat <- read.table(" header = TRUE) ans.rs <- sensitivity(ex.dat, x.pos=1:10, y.pos=11, surface= rs.reg ) ## Generate some new X values to predict at X.new <- matrix(runif(100), nrow=10) yhat <- predict(ans.rs, X.new) ## End(Not run) print.sensitivity Print a Sensitivity Object Description Generate and/or export a summary table for a sensitivity object to a file. Usage print.sensitivity(x, fname, control,...) Arguments x a sensitivity object fname the file name to export the summary to. The default will print to the screen. control control parameters as in sensitivity.... further arguments passed to or from other methods. Author(s) Curtis Storlie <storlie@stat.unm.edu> See Also sensitivity

4 4 sensitivity Examples ## Not run: ## Read in some data for illustration ex.dat <- read.table(" header = TRUE) ## run a sensitivity analysis using quadratic regression ## on the inputs in columns 1-10 and output in columns of ex.dat. ans.rs <- sensitivity(ex.dat, x.pos=1:10, y.pos=11:12, surface= rs.reg ) ## Print the results print(ans.rs) ## End(Not run) sensitivity Sensitivity Analysis for Complex Computer Models Description Usage Perform a sensitivity analysis by fitting regression surface(s) (of varying complexity) to output from a complex model. This package is useful for conducting sensitivity analysis of complex computer codes when model evaluations are somewhat expensive but a reasonable number (~50 or more) of model evaluations can be obtained at sampled input values. sensitivity(data, x.pos, y.pos, surface= auto, control) Arguments data x.pos y.pos surface control a matrix or data frame where the columns contain the input variables and the output variables of an analysis. Each row corresponds to a run of a computer code for example. a vector containing the column locations in sens.dat of the input variables used to generate model outputs. a vector containing the column locations in sens.dat of the output variables given by the model. which regression surface method to fit to the model output. Options are reg (linear regression), rank (rank regression), rs.reg (quadratic response surface regression), loc.reg (local regression), ppr (projection pursuit regression), mars (Multivariate Adaptive Regression Splines), tree (Recursive Partitioning Regression), acosso (Adaptive COSSO), gp (Bayesian Gaussian Process), and tgp (Treed Gaussian Process). The value can also be specified as a character vector of length(y.pos), giving the desired surface to be fit to each of the outputs. The default is auto which successively fits models in the order given by the try.surface control parameter until R^2 > min.rsq or the last model is fit. a list with values that control the surface fitting and sensitivity index calculation. Elements of control are descibed below:

5 sensitivity 5 maxterms- the maximum number of input variables allowed into the model; default = 20. crit- the criterion to use for which variables enter or leave the model during stepwise construction. Options are gcv (the default) or pval. Only applicable when surface equals reg, rs.reg, loc.reg, or ppr. alpha- the cut-off to use if crit== pval ; default =.02. gcvpen- the penalty to use for each degree of freedom when calculating GCV score. Only applicable when surface = mars or tree, default = 2. maxsize- the maximum number of basis functions allowed in mars model; default = 200. minsplit- Argument passed to rpart to build a regression tree model; the minimum number of observations that must exist in a node, in order for a split to be attempted; default = 10. int.order- The order of interactions to consider for acosso and mars models. Currently supports int.order = 1 (additive model) and int.order = 2 (two-way interaction model); default = 2. wt.pow- the power given to the intial estimate of L2 norm for acosso ; default = 2. acosso.cv- the criterion used for smoothing parameter selection in acosso. Options are bic (the default), gcv, and 5cv. BTE- 3-vector of MCMC parameters for gp and tgp. (B)urn in, (T)otal, and (E)very. Predictive samples are saved every E MCMC rounds starting at round B, stopping at T; default = c(1000, 4000, 2). n.deriv- a smoothness parameter for the prior distribution of the surface for gp and tgp. The resulting surface will be n.deriv times differentiable (within each node); default = 2. distn- The distribution to assume on the input variables for Monte Carlo (MC) calculation of S.index and T.index. Currently supports emp (use empirical distribution of the inputs) and unif (use uniform distribution). Either way, inputs are currently assumed independent for the purposes of calculation; default = emp. n.mc.s- number of MC sample points to calculate variance in the quantitiy Var[E(y x_1,...,x_j-1,x_- j+1,...x_p)] required to obtain S_j; default = n.mc.t- number of MC sample points to calculate variance in the quantitiy Var[E(y x_1,...,x_j-1,x_- j+1,...x_p)] required to obtain T_j; default = n.samples- MC integration to calculate of S_j and T_j is repeated n.samples times and the average is used. This allows for better accuracy while using less memory than simply using larger values of n.mc.t for example; default = 10. CI- TRUE or FALSE; should bootstrap confidence intervals (or credible sets for gp and tgp ) be calculated for the T_j s or the S_j s (see CI.S ) ; default = FALSE. Other options are control$ci = 1 which will use the nonparametric or "naive" bootstrap. control$ci = 2 or control$ci=true will use a parametric bootstrap with resampling on the x s as well. control$ci = "none" or control$ci=false will not do CI s.

6 6 sensitivity Details CI.S- TRUE or FALSE; is TRUE if bootstrap confidence intervals should be calculated for the main indices S_j s, or FALSE for confidence intervals to be for the total indices T_j s; CI.S=TRUE implies CI=TRUE; default = FALSE. n.ci- the number of bootstrap samples to use if creating confidence intervals (or number of realizations to use for gp and tgp ); default = 100. n.mc.ci- Same as n.mc.t, but applies to the calculation of T_j for each bootstrap sample (realization); default = n2.ci- Same as n2.t, but applies to the calculation of T_j for each bootstrap sample (realization); default = 20. alpha.ci- The confidence level used for the CI s is 100(1-alpha.CI)%; default =.05 max.disp.var- the maximum number of displayed variables in the output; default = 15. min.tul- the minimum value to display in the output for the upper confidence limit (UCL) on T. Variables with UCL < min.tul will not be displayed; default =.05 min.rsq- when using surface= auto, methods in try.surfaces will be fit until the model R^2 value is greater than min.rsq. If no method in try.surfaces has R^2 greater than min.rsq, the last surface to be fit is used; default =.90. try.surfaces- a list containing the surfaces to try (in order) when using surface= auto ; default = c( rank, rs.reg, tree, acosso ). categorical- a vector containing the column locations of data which correspond to categorical variables; default = auto which treats a variable as categorical if it has no more than min.distinct distinct values. min.distinct- see categorical above; default = 10. n.screen- If the number of input variables is greater than n.screen, then the methods listed in screen.surfaces are fit to the entire set of input variables. The collection of input variables to be used in the analysis is reduced to only those that show up in at least one of the models obtained. Using n.screen can be useful for gp or tgp for example since they perform much better when the set of input variables can be reduced; default = 15. screen.surfaces- a list containing the surfaces to use to screen variables before fitting the final regression surface; default = c( rs.reg, acosso ). Note: acosso and mars are applied with additive = TRUE. Performs a sensitivity analysis of a complex computer model by using a data set containing model evaluations at several sampled input values. If surface = reg, a stepwise regression is fit to the data and the corresponding standardized regression coefficients (src) s and partial correlation coefficients (pcc) s are obtained. If surface = rank stepwise regression is fit to the rank transformed output variables and the corresponding standardized rank regression coefficients (srrc) s and partial rank correlation coefficients (prcc) s are obtained. For all other surface options a surrogate model approximation is fit to the data set using the specified surface. For surface= rs.reg or loc.reg variable selection is achieved in a stepwise manner.

7 sensitivity 7 Variable selection is inherently part of the regression procedure when surface = tree mars, or acosso. Surfaces gp and tgp use all input variables when fitting the model. The following sensitivity indices are obtained using the surrogate model. The total variance index, T_j = Var(y)-Var[E(y x_1,...,x_j-1,x_j+1,...x_p)] / Var(y), is calulated. We also calculate a stepwise variance contribution, which we call S_j. This is calculated as follows. The first variable to "enter" the model is defined by x_j for the j that maximizes S_j,1 = Var[E(y x_j)] / Var(y). Call the x_j that maximized S_j,1, x_(1). maximizer of S_j,2 = Var[E(y x_(1),x_j)] / Var(y). The second variable to "enter" is then given by the Call the x_j that maximized S_j,2, x_(2). In general, the k^th variable to "enter" the model is then given by the maximizer of S_j,k = Var[E(y x_(1),x_(2),...,x_(k-1),x_j)] / Var(y). The corresponding S_j s provide a measure of the incremental increase in the percentage of variance explained at each step by including the uncertainty of the j^th variable in the model. The S_j s and T_j s defined above are evaluated by Monte Carlo (MC) sampling on the input (x) distribution while the output (y) at each sampled x value is evaluated via the surrogate model. These MC calculations can be done with a good deal of accuracy because the surrogate model is very fast to evaluate. Confidence intervals for the sensitivity indices (which include uncertainty from MC calculation of T_j and uncertainty in the surrogate model) can also be generated by bootstrapping (or from the posterior distribution of the gp or tgp methods) by setting the control parameter CI = TRUE. Value An object of type sensitivity with generic functions print and predict. Author(s) Curtis B. Storlie, <storlie@stat.unm.edu>. References CB Storlie, EA Baldwin, LP Swiler, JC Helton, and C Sallaberry (2007). Calculating Variance- Based Sensitivity Measures Using a Limited Number of Model Runs. CB Storlie and JC Helton (2007). Multiple Predictor Smoothing Methods for Sensitivity Analysis: Description of Techniques. Reliability Engineering and System Safety. A Saltelli, K Chan, and EM Scott (2000). Sensitivity analysis. Wiley. See Also predict.sensitivity, print.sensitivity

8 8 sensitivity Examples ## Not run: ## Read in some data for illustration ex.dat <- read.table(" header = TRUE) ## run a sensitivity analysis using quadratic regression ## on the inputs in columns 1-10 and output in columns of ex.dat. ans.rs <- sensitivity(ex.dat, x.pos=1:10, y.pos=11:12, surface= rs.reg ) print(ans.rs) ## run the same SA as above with bootstrap CI s for the T index. ans.boot <- sensitivity(ex.dat, x.pos=1:10, y.pos=11:12, surface= rs.reg, control=list(ci=true, n.ci=25, n.mc.ci=1000)) print(ans.boot) ## Automatically select surface(s) and specify control params for ## T.index calculation. ans.auto <- sensitivity(ex.dat, x.pos=1:10, y.pos=11:12, surface= auto, control=list(min.rsq=.95, CI=TRUE, n.ci=25)) print(ans.auto) ## End(Not run)

9 Index Topic smooth CompModSA-package, 2 predict.sensitivity, 2 print.sensitivity, 3 sensitivity, 4 CompModSA (CompModSA-package), 2 CompModSA-package, 2 predict.sensitivity, 2 print.sensitivity, 3 sensitivity, 3, 4 9

The sensitivity Package

The sensitivity Package The sensitivity Package January 5, 2007 Version 1.3-0 Date 2007-01-04 Title Sensitivity Analysis Author Gilles Pujol (this package was originally developped at Commissariat a l Energie Atomique CEA, Service

More information

Topics in Machine Learning-EE 5359 Model Assessment and Selection

Topics in Machine Learning-EE 5359 Model Assessment and Selection Topics in Machine Learning-EE 5359 Model Assessment and Selection Ioannis D. Schizas Electrical Engineering Department University of Texas at Arlington 1 Training and Generalization Training stage: Utilizing

More information

Package subsemble. February 20, 2015

Package subsemble. February 20, 2015 Type Package Package subsemble February 20, 2015 Title An Ensemble Method for Combining Subset-Specific Algorithm Fits Version 0.0.9 Date 2014-07-01 Author Erin LeDell, Stephanie Sapp, Mark van der Laan

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

Statistical Matching using Fractional Imputation

Statistical Matching using Fractional Imputation Statistical Matching using Fractional Imputation Jae-Kwang Kim 1 Iowa State University 1 Joint work with Emily Berg and Taesung Park 1 Introduction 2 Classical Approaches 3 Proposed method 4 Application:

More information

Generalized Additive Models

Generalized Additive Models :p Texts in Statistical Science Generalized Additive Models An Introduction with R Simon N. Wood Contents Preface XV 1 Linear Models 1 1.1 A simple linear model 2 Simple least squares estimation 3 1.1.1

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

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 plgp. February 20, 2015

Package plgp. February 20, 2015 Type Package Title Particle Learning of Gaussian Processes Version 1.1-7 Date 2014-11-27 Package plgp February 20, 2015 Author Robert B. Gramacy Maintainer Robert B. Gramacy

More information

Package FCGR. October 13, 2015

Package FCGR. October 13, 2015 Type Package Title Fatigue Crack Growth in Reliability Version 1.0-0 Date 2015-09-29 Package FCGR October 13, 2015 Author Antonio Meneses , Salvador Naya ,

More information

Package gbts. February 27, 2017

Package gbts. February 27, 2017 Type Package Package gbts February 27, 2017 Title Hyperparameter Search for Gradient Boosted Trees Version 1.2.0 Date 2017-02-26 Author Waley W. J. Liang Maintainer Waley W. J. Liang

More information

CARTWARE Documentation

CARTWARE Documentation CARTWARE Documentation CARTWARE is a collection of R functions written for Classification and Regression Tree (CART) Analysis of ecological data sets. All of these functions make use of existing R functions

More information

Package parcor. February 20, 2015

Package parcor. February 20, 2015 Type Package Package parcor February 20, 2015 Title Regularized estimation of partial correlation matrices Version 0.2-6 Date 2014-09-04 Depends MASS, glmnet, ppls, Epi, GeneNet Author, Juliane Schaefer

More information

Package CALIBERrfimpute

Package CALIBERrfimpute Type Package Package CALIBERrfimpute June 11, 2018 Title Multiple Imputation Using MICE and Random Forest Version 1.0-1 Date 2018-06-05 Functions to impute using Random Forest under Full Conditional Specifications

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 naivebayes. R topics documented: January 3, Type Package. Title High Performance Implementation of the Naive Bayes Algorithm

Package naivebayes. R topics documented: January 3, Type Package. Title High Performance Implementation of the Naive Bayes Algorithm Package naivebayes January 3, 2018 Type Package Title High Performance Implementation of the Naive Bayes Algorithm Version 0.9.2 Author Michal Majka Maintainer Michal Majka Description

More information

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots

Package rgcvpack. February 20, Index 6. Fitting Thin Plate Smoothing Spline. Fit thin plate splines of any order with user specified knots Version 0.1-4 Date 2013/10/25 Title R Interface for GCVPACK Fortran Package Author Xianhong Xie Package rgcvpack February 20, 2015 Maintainer Xianhong Xie

More information

Moving Beyond Linearity

Moving Beyond Linearity Moving Beyond Linearity Basic non-linear models one input feature: polynomial regression step functions splines smoothing splines local regression. more features: generalized additive models. Polynomial

More information

Package acebayes. R topics documented: November 21, Type Package

Package acebayes. R topics documented: November 21, Type Package Type Package Package acebayes November 21, 2018 Title Optimal Bayesian Experimental Design using the ACE Algorithm Version 1.5.2 Date 2018-11-21 Author Antony M. Overstall, David C. Woods & Maria Adamou

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

GAUSSIAN PROCESS RESPONSE SURFACE MODELING AND GLOBAL SENSITIVITY ANALYSIS USING NESSUS

GAUSSIAN PROCESS RESPONSE SURFACE MODELING AND GLOBAL SENSITIVITY ANALYSIS USING NESSUS UNCECOMP 2017 2 nd ECCOMAS Thematic Conference on International Conference on Uncertainty Quantification in Computational Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou (eds.) Rhodes

More information

Preface to the Second Edition. Preface to the First Edition. 1 Introduction 1

Preface to the Second Edition. Preface to the First Edition. 1 Introduction 1 Preface to the Second Edition Preface to the First Edition vii xi 1 Introduction 1 2 Overview of Supervised Learning 9 2.1 Introduction... 9 2.2 Variable Types and Terminology... 9 2.3 Two Simple Approaches

More information

Package GLDreg. February 28, 2017

Package GLDreg. February 28, 2017 Type Package Package GLDreg February 28, 2017 Title Fit GLD Regression Model and GLD Quantile Regression Model to Empirical Data Version 1.0.7 Date 2017-03-15 Author Steve Su, with contributions from:

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 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

Generalized Additive Model

Generalized Additive Model Generalized Additive Model by Huimin Liu Department of Mathematics and Statistics University of Minnesota Duluth, Duluth, MN 55812 December 2008 Table of Contents Abstract... 2 Chapter 1 Introduction 1.1

More information

Package CGP. June 12, 2018

Package CGP. June 12, 2018 Package CGP June 12, 2018 Type Package Title Composite Gaussian Process Models Version 2.1-1 Date 2018-06-11 Author Shan Ba and V. Roshan Joseph Maintainer Shan Ba Fit composite Gaussian

More information

Package pse. June 11, 2017

Package pse. June 11, 2017 Type Package Package pse June 11, 2017 Title Parameter Space Exploration with Latin Hypercubes Version 0.4.7 Date 2017-06-11 Author Andre Chalom, Paulo Inacio Knegt Lopez de Prado Maintainer Andre Chalom

More information

FMA901F: Machine Learning Lecture 3: Linear Models for Regression. Cristian Sminchisescu

FMA901F: Machine Learning Lecture 3: Linear Models for Regression. Cristian Sminchisescu FMA901F: Machine Learning Lecture 3: Linear Models for Regression Cristian Sminchisescu Machine Learning: Frequentist vs. Bayesian In the frequentist setting, we seek a fixed parameter (vector), with value(s)

More information

Package mlvar. August 26, 2018

Package mlvar. August 26, 2018 Type Package Title Multi-Level Vector Autoregression Version 0.4.1 Depends R (>= 3.3.0) Package mlvar August 26, 2018 Imports lme4, arm, qgraph, dplyr, clustergeneration, mvtnorm, corpcor, plyr, abind,

More information

Package OptimaRegion

Package OptimaRegion Type Package Title Confidence Regions for Optima Version 0.2 Package OptimaRegion May 23, 2016 Author Enrique del Castillo, John Hunt, and James Rapkin Maintainer Enrique del Castillo Depends

More information

Nonparametric Approaches to Regression

Nonparametric Approaches to Regression Nonparametric Approaches to Regression In traditional nonparametric regression, we assume very little about the functional form of the mean response function. In particular, we assume the model where m(xi)

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

GLMSELECT for Model Selection

GLMSELECT for Model Selection Winnipeg SAS User Group Meeting May 11, 2012 GLMSELECT for Model Selection Sylvain Tremblay SAS Canada Education Copyright 2010 SAS Institute Inc. All rights reserved. Proc GLM Proc REG Class Statement

More information

Package misclassglm. September 3, 2016

Package misclassglm. September 3, 2016 Type Package Package misclassglm September 3, 2016 Title Computation of Generalized Linear Models with Misclassified Covariates Using Side Information Version 0.2.0 Date 2016-09-02 Author Stephan Dlugosz

More information

Package rmi. R topics documented: August 2, Title Mutual Information Estimators Version Author Isaac Michaud [cre, aut]

Package rmi. R topics documented: August 2, Title Mutual Information Estimators Version Author Isaac Michaud [cre, aut] Title Mutual Information Estimators Version 0.1.1 Author Isaac Michaud [cre, aut] Pacage rmi August 2, 2018 Maintainer Isaac Michaud Provides mutual information estimators based on

More information

Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011

Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011 Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011 1. Introduction Reddit is one of the most popular online social news websites with millions

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 PCADSC. April 19, 2017

Package PCADSC. April 19, 2017 Type Package Package PCADSC April 19, 2017 Title Tools for Principal Component Analysis-Based Data Structure Comparisons Version 0.8.0 A suite of non-parametric, visual tools for assessing differences

More information

GAMs semi-parametric GLMs. Simon Wood Mathematical Sciences, University of Bath, U.K.

GAMs semi-parametric GLMs. Simon Wood Mathematical Sciences, University of Bath, U.K. GAMs semi-parametric GLMs Simon Wood Mathematical Sciences, University of Bath, U.K. Generalized linear models, GLM 1. A GLM models a univariate response, y i as g{e(y i )} = X i β where y i Exponential

More information

Package Combine. R topics documented: September 4, Type Package Title Game-Theoretic Probability Combination Version 1.

Package Combine. R topics documented: September 4, Type Package Title Game-Theoretic Probability Combination Version 1. Type Package Title Game-Theoretic Probability Combination Version 1.0 Date 2015-08-30 Package Combine September 4, 2015 Author Alaa Ali, Marta Padilla and David R. Bickel Maintainer M. Padilla

More information

Package texteffect. November 27, 2017

Package texteffect. November 27, 2017 Version 0.1 Date 2017-11-27 Package texteffect November 27, 2017 Title Discovering Latent Treatments in Text Corpora and Estimating Their Causal Effects Author Christian Fong

More information

Package rvinecopulib

Package rvinecopulib Type Package Package rvinecopulib March 2, 2018 Title High Performance Algorithms for Vine Copula Modeling Version 0.2.7.1.0 Provides an interface to 'vinecopulib', a C++ library for vine copula modeling

More information

Package TANOVA. R topics documented: February 19, Version Date

Package TANOVA. R topics documented: February 19, Version Date Version 1.0.0 Date 2010-05-05 Package TANOVA February 19, 2015 Title Time Course Analysis of Variance for Microarray Depends R (>= 2.3.0), MASS, splines Author Baiyu Zhou and Weihong

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 missforest. February 15, 2013

Package missforest. February 15, 2013 Type Package Package missforest February 15, 2013 Title Nonparametric Missing Value Imputation using Random Forest Version 1.3 Date 2012-06-26 Author Maintainer Depends randomforest The function missforest

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

The pspline Package. August 4, Author S original by Jim Ramsey R port by Brian Ripley

The pspline Package. August 4, Author S original by Jim Ramsey R port by Brian Ripley The pspline Package August 4, 2004 Version 1.0-8 Date 2004-08-04 Title Penalized Smoothing Splines Author S original by Jim Ramsey . R port by Brian Ripley .

More information

Package robustgam. February 20, 2015

Package robustgam. February 20, 2015 Type Package Package robustgam February 20, 2015 Title Robust Estimation for Generalized Additive Models Version 0.1.7 Date 2013-5-7 Author Raymond K. W. Wong, Fang Yao and Thomas C. M. Lee Maintainer

More information

Package mcclust.ext. May 15, 2015

Package mcclust.ext. May 15, 2015 Type Package Package mcclust.ext May 15, 2015 Title Point estimation and credible balls for Bayesian cluster analysis Version 1.0 Date 2015-03-24 Author Sara Wade Maintainer Sara Wade

More information

Package Modeler. May 18, 2018

Package Modeler. May 18, 2018 Version 3.4.3 Date 2018-05-17 Package Modeler May 18, 2018 Title Classes and Methods for Training and Using Binary Prediction Models Author Kevin R. Coombes Maintainer Kevin R. Coombes

More information

Package pnmtrem. February 20, Index 9

Package pnmtrem. February 20, Index 9 Type Package Package pnmtrem February 20, 2015 Title Probit-Normal Marginalized Transition Random Effects Models Version 1.3 Date 2013-05-19 Author Ozgur Asar, Ozlem Ilk Depends MASS Maintainer Ozgur Asar

More information

Package FisherEM. February 19, 2015

Package FisherEM. February 19, 2015 Type Package Title The Fisher-EM algorithm Version 1.4 Date 2013-06-21 Author Charles Bouveyron and Camille Brunet Package FisherEM February 19, 2015 Maintainer Camille Brunet

More information

Package MMIX. R topics documented: February 15, Type Package. Title Model selection uncertainty and model mixing. Version 1.2.

Package MMIX. R topics documented: February 15, Type Package. Title Model selection uncertainty and model mixing. Version 1.2. Package MMIX February 15, 2013 Type Package Title Model selection uncertainty and model mixing Version 1.2 Date 2012-06-18 Author Marie Morfin and David Makowski Maintainer Description

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

Package TMixClust. July 13, 2018

Package TMixClust. July 13, 2018 Package TMixClust July 13, 2018 Type Package Title Time Series Clustering of Gene Expression with Gaussian Mixed-Effects Models and Smoothing Splines Version 1.2.0 Year 2017 Date 2017-06-04 Author Monica

More information

Package nfca. February 20, 2015

Package nfca. February 20, 2015 Type Package Package nfca February 20, 2015 Title Numerical Formal Concept Analysis for Systematic Clustering Version 0.3 Date 2015-02-10 Author Junheng Ma, Jiayang Sun, and Guo-Qiang Zhang Maintainer

More information

Package OLScurve. August 29, 2016

Package OLScurve. August 29, 2016 Type Package Title OLS growth curve trajectories Version 0.2.0 Date 2014-02-20 Package OLScurve August 29, 2016 Maintainer Provides tools for more easily organizing and plotting individual ordinary least

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

MTTS1 Dimensionality Reduction and Visualization Spring 2014 Jaakko Peltonen

MTTS1 Dimensionality Reduction and Visualization Spring 2014 Jaakko Peltonen MTTS1 Dimensionality Reduction and Visualization Spring 2014 Jaakko Peltonen Lecture 2: Feature selection Feature Selection feature selection (also called variable selection): choosing k < d important

More information

Package milr. June 8, 2017

Package milr. June 8, 2017 Type Package Package milr June 8, 2017 Title Multiple-Instance Logistic Regression with LASSO Penalty Version 0.3.0 Date 2017-06-05 The multiple instance data set consists of many independent subjects

More information

Package soil.spec. July 24, 2010

Package soil.spec. July 24, 2010 Package soil.spec July 24, 2010 Type Package Title Soil spectral data exploration and regression functions Version 1.4 Date 2010-07-10 Author Maintainer This package combines existing

More information

Package SSLASSO. August 28, 2018

Package SSLASSO. August 28, 2018 Package SSLASSO August 28, 2018 Version 1.2-1 Date 2018-08-28 Title The Spike-and-Slab LASSO Author Veronika Rockova [aut,cre], Gemma Moran [aut] Maintainer Gemma Moran Description

More information

Package sensory. R topics documented: February 23, Type Package

Package sensory. R topics documented: February 23, Type Package Package sensory February 23, 2016 Type Package Title Simultaneous Model-Based Clustering and Imputation via a Progressive Expectation-Maximization Algorithm Version 1.1 Date 2016-02-23 Author Brian C.

More information

MS in Applied Statistics: Study Guide for the Data Science concentration Comprehensive Examination. 1. MAT 456 Applied Regression Analysis

MS in Applied Statistics: Study Guide for the Data Science concentration Comprehensive Examination. 1. MAT 456 Applied Regression Analysis MS in Applied Statistics: Study Guide for the Data Science concentration Comprehensive Examination. The Part II comprehensive examination is a three-hour closed-book exam that is offered on the second

More information

Predictive Analytics: Demystifying Current and Emerging Methodologies. Tom Kolde, FCAS, MAAA Linda Brobeck, FCAS, MAAA

Predictive Analytics: Demystifying Current and Emerging Methodologies. Tom Kolde, FCAS, MAAA Linda Brobeck, FCAS, MAAA Predictive Analytics: Demystifying Current and Emerging Methodologies Tom Kolde, FCAS, MAAA Linda Brobeck, FCAS, MAAA May 18, 2017 About the Presenters Tom Kolde, FCAS, MAAA Consulting Actuary Chicago,

More information

Practical Course WS12/13 Introduction to Monte Carlo Localization

Practical Course WS12/13 Introduction to Monte Carlo Localization Practical Course WS12/13 Introduction to Monte Carlo Localization Cyrill Stachniss and Luciano Spinello 1 State Estimation Estimate the state of a system given observations and controls Goal: 2 Bayes Filter

More information

Package EDFIR. R topics documented: July 17, 2015

Package EDFIR. R topics documented: July 17, 2015 Title Estimating Discrimination Factors Version 1.0 Date 2015-07-15 Author Alex Bond and Package EDFIR July 17, 2015 Depends R (>= 2.15.3), lpsolve, geometry, vertexenum, MASS Maintainer

More information

IBM SPSS Categories. Predict outcomes and reveal relationships in categorical data. Highlights. With IBM SPSS Categories you can:

IBM SPSS Categories. Predict outcomes and reveal relationships in categorical data. Highlights. With IBM SPSS Categories you can: IBM Software IBM SPSS Statistics 19 IBM SPSS Categories Predict outcomes and reveal relationships in categorical data Highlights With IBM SPSS Categories you can: Visualize and explore complex categorical

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION Introduction CHAPTER 1 INTRODUCTION Mplus is a statistical modeling program that provides researchers with a flexible tool to analyze their data. Mplus offers researchers a wide choice of models, estimators,

More information

Package TANDEM. R topics documented: June 15, Type Package

Package TANDEM. R topics documented: June 15, Type Package Type Package Package TANDEM June 15, 2017 Title A Two-Stage Approach to Maximize Interpretability of Drug Response Models Based on Multiple Molecular Data Types Version 1.0.2 Date 2017-04-07 Author Nanne

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 G1DBN. R topics documented: February 19, Version Date

Package G1DBN. R topics documented: February 19, Version Date Version 3.1.1 Date 2012-05-23 Package G1DBN February 19, 2015 Title A package performing Dynamic Bayesian Network inference. Author Sophie Lebre , original version 1.0 by

More information

Package SparseFactorAnalysis

Package SparseFactorAnalysis Type Package Package SparseFactorAnalysis July 23, 2015 Title Scaling Count and Binary Data with Sparse Factor Analysis Version 1.0 Date 2015-07-20 Author Marc Ratkovic, In Song Kim, John Londregan, and

More information

Package OsteoBioR. November 15, 2018

Package OsteoBioR. November 15, 2018 Version 0.1.1 Title Temporal Estimation of Isotopic s Package OsteoBioR November 15, 2018 Estimates the temporal changes of isotopic values of bone and teeth data solely based on the renewal rate of different

More information

Package apricom. R topics documented: November 24, 2015

Package apricom. R topics documented: November 24, 2015 Package apricom November 24, 2015 Title Tools for the a Priori Comparison of Regression Modelling Strategies Version 1.0.0 Date 2015-11-11 Maintainer Romin Pajouheshnia Tools

More information

Package r2d2. February 20, 2015

Package r2d2. February 20, 2015 Package r2d2 February 20, 2015 Version 1.0-0 Date 2014-03-31 Title Bivariate (Two-Dimensional) Confidence Region and Frequency Distribution Author Arni Magnusson [aut], Julian Burgos [aut, cre], Gregory

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 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 RSNPset. December 14, 2017

Package RSNPset. December 14, 2017 Type Package Package RSNPset December 14, 2017 Title Efficient Score Statistics for Genome-Wide SNP Set Analysis Version 0.5.3 Date 2017-12-11 Author Chanhee Yi, Alexander Sibley, and Kouros Owzar Maintainer

More information

Applying Supervised Learning

Applying Supervised Learning Applying Supervised Learning When to Consider Supervised Learning A supervised learning algorithm takes a known set of input data (the training set) and known responses to the data (output), and trains

More information

Package ranger. November 10, 2015

Package ranger. November 10, 2015 Type Package Title A Fast Implementation of Random Forests Version 0.3.0 Date 2015-11-10 Author Package November 10, 2015 Maintainer A fast implementation of Random Forests,

More information

More advanced use of mgcv. Simon Wood Mathematical Sciences, University of Bath, U.K.

More advanced use of mgcv. Simon Wood Mathematical Sciences, University of Bath, U.K. More advanced use of mgcv Simon Wood Mathematical Sciences, University of Bath, U.K. Fine control of smoothness: gamma Suppose that we fit a model but a component is too wiggly. For GCV/AIC we can increase

More information

Package treedater. R topics documented: May 4, Type Package

Package treedater. R topics documented: May 4, Type Package Type Package Package treedater May 4, 2018 Title Fast Molecular Clock Dating of Phylogenetic Trees with Rate Variation Version 0.2.0 Date 2018-04-23 Author Erik Volz [aut, cre] Maintainer Erik Volz

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

Using the DATAMINE Program

Using the DATAMINE Program 6 Using the DATAMINE Program 304 Using the DATAMINE Program This chapter serves as a user s manual for the DATAMINE program, which demonstrates the algorithms presented in this book. Each menu selection

More information

Package nlnet. April 8, 2018

Package nlnet. April 8, 2018 Type Package Package nlnet April 8, 2018 Title Nonlinear Network Reconstruction, Clustering, and Variable Selection Based on DCOL (Distance Based on Conditional Ordered List) Version 1.2 Date 2018-04-07

More information

Semiparametric Mixed Effecs with Hierarchical DP Mixture

Semiparametric Mixed Effecs with Hierarchical DP Mixture Semiparametric Mixed Effecs with Hierarchical DP Mixture R topics documented: April 21, 2007 hdpm-package........................................ 1 hdpm............................................ 2 hdpmfitsetup........................................

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 bayescl. April 14, 2017

Package bayescl. April 14, 2017 Package bayescl April 14, 2017 Version 0.0.1 Date 2017-04-10 Title Bayesian Inference on a GPU using OpenCL Author Rok Cesnovar, Erik Strumbelj Maintainer Rok Cesnovar Description

More information

Package ScottKnottESD

Package ScottKnottESD Type Package Package ScottKnottESD May 8, 2018 Title The Scott-Knott Effect Size Difference (ESD) Test Version 2.0.3 Date 2018-05-08 Author Chakkrit Tantithamthavorn Maintainer Chakkrit Tantithamthavorn

More information

Package gamm4. July 25, Index 10

Package gamm4. July 25, Index 10 Version 0.2-5 Author Simon Wood, Fabian Scheipl Package gamm4 July 25, 2017 Maintainer Simon Wood Title Generalized Additive Mixed Models using 'mgcv' and 'lme4' Description

More information

Learning from Data: Adaptive Basis Functions

Learning from Data: Adaptive Basis Functions Learning from Data: Adaptive Basis Functions November 21, 2005 http://www.anc.ed.ac.uk/ amos/lfd/ Neural Networks Hidden to output layer - a linear parameter model But adapt the features of the model.

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 sspse. August 26, 2018

Package sspse. August 26, 2018 Type Package Version 0.6 Date 2018-08-24 Package sspse August 26, 2018 Title Estimating Hidden Population Size using Respondent Driven Sampling Data Maintainer Mark S. Handcock

More information

Package anidom. July 25, 2017

Package anidom. July 25, 2017 Type Package Package anidom July 25, 2017 Title Inferring Dominance Hierarchies and Estimating Uncertainty Version 0.1.2 Date 2017-07-25 Author Damien R. Farine and Alfredo Sanchez-Tojar Maintainer Damien

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

Linear Model Selection and Regularization. especially usefull in high dimensions p>>100.

Linear Model Selection and Regularization. especially usefull in high dimensions p>>100. Linear Model Selection and Regularization especially usefull in high dimensions p>>100. 1 Why Linear Model Regularization? Linear models are simple, BUT consider p>>n, we have more features than data records

More information

Package spikeslab. February 20, 2015

Package spikeslab. February 20, 2015 Version 1.1.5 Date 2013-04-18 Package spikeslab February 20, 2015 Title Prediction and variable selection using spike and slab regression Author Hemant Ishwaran Maintainer Udaya

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