Package RootsExtremaInflections

Size: px
Start display at page:

Download "Package RootsExtremaInflections"

Transcription

1 Type Package Package RootsExtremaInflections May 10, 2017 Title Finds Roots, Extrema and Inflection Points of a Curve Version 1.1 Date Author Demetris T. Christopoulos Maintainer Demetris T. Christopoulos <dchristop@econ.uoa.gr> Description Implementation of the Taylor Regression Estimator method which is described in Christopoulos (2014,< for finding the root, extreme or inflection point of a curve, when we only have a set of probably noisy xy points for it. The method uses a suitable polynomial regression in order to find the coefficients of the relevant Taylor polynomial for the function that has generated our data. Optional use of parallel computing under request. License GPL-2 Depends iterators, foreach, parallel, doparallel Suggests stats, graphics, grdevices NeedsCompilation no Repository CRAN Date/Publication :36:46 UTC R topics documented: RootsExtremaInflections-package extremexi inflexi rootexinf rootxi xydat Index 15 1

2 2 RootsExtremaInflections-package RootsExtremaInflections-package Finds Roots, Extrema and Inflection Points of a Planar Curve Description Details This package contains functions for computing roots, extrema and inflection points of a curve that is the graph of a smooth function when we have only a data set {(x i, y i ), i = 1, 2,... m}, generated from it by the procedure y i = f(x i ) or for the noisy case by y i = f(x i )+ɛ i with a zero mean error, ɛ i iid(0, σ 2 ), by using the Taylor Regression Estimator (TRE) method, which is described briefly here. When we want to find a root for a function f by using the traditional Numerical Analysis methods (bisection, secant, Newton-Raphson etc), it is necessary to know the exact formula of f. Unfortunately in research problems we do not know that formula and our data are also of a noisy type. In this package we use the Taylor Regression Estimator (TRE) method, which can work when we know the discrete values {(x i, y i ), i = 1, 2,... m}, y i = f(x i ) of our known or unknown smooth function f. Additionally the method works with satisfactory accuracy also for the corresponding noisy values {(x i, y i ), i = 1, 2,... m}, y i = f(x i ) + ɛ i, ɛ i iid(0, σ 2 ). The computation of extrema and inflection points for a smooth f is merely a problem of root finding for first and second derivative respectively, thus TRE method can also find an extreme or an inflection point. In a few words, the method is referencing to the well known Taylor polynomial of a smooth function f around a point ρ, f (x) = a 0 + a 1 (x ρ) + a 2 (x ρ) 2 + a 3 (x ρ) a n (x ρ) n When the coefficients a 0, a 1, a 2, as computed using a polynomial regression, have minimum absolute value, then the corresponding points ρ are the estimations of the root, extreme or inflection point, respectively. Essentially Taylor Regression (TR) is polynomial regression for Taylor polynomial. For a more rigorous definition of the terms TR, TRE method, further discussion and numerical examples, see Christopoulos (2014). Package: RootsExtremaInflections Type: Package Version: 1.1 Date: License: GPL 2 Author(s) Demetris T. Christopoulos Maintainer: Demetris T. Christopoulos <dchristop@econ.uoa.gr>

3 RootsExtremaInflections-package 3 References Demetris T. Christopoulos (2014), Roots, extrema and inflection points by using a proper Taylor regression procedure, ResearchGate publications, Examples Load data: data(xydat) Extract x and y variables: x=xydat$x;y=xydat$y Find root, plot results, print Taylor coefficients and rho estimation: b<-rootxi(x,y,1,length(x),5,5,plots=true);b$an;b$froot; Find extreme, plot results, print Taylor coefficients and rho estimation: c<-extremexi(x,y,1,length(x),5,5,plots=true);c$an;c$fextr; Find inflection point, plot results, print Taylor coefficients and rho estimation: d<-inflexi(x,y,1,length(x),5,5,plots=true);d$an;d$finfl; Create a relative big data set... f=function(x){3*cos(x-5)};xa=0.;xb=9; set.seed(12345);x=sort(runif(5001,xa,xb));r=0.1;y=f(x)+2*r*(runif(length(x))-0.5); Find root, plot results, print Taylor coefficients and rho estimation in parallel: b1<-rootxi(x,y,1,round(length(x)/2),5,5,plots=true,doparallel = TRUE);b1$an;b1$froot; Available workers are 12 Time difference of secs 2.5 % 97.5 % an a a a a a a [1] Compare with exact root = Find extreme, plot results, print Taylor coefficients and rho estimation in parallel: c1<-extremexi(x,y,1,round(length(x)/2),5,5,plots=true,doparallel = TRUE);c1$an;c1$fextr; Available workers are 12 Time difference of secs 2.5 % 97.5 % an a a a a a a [1] Compare with exact extreme = Find inflection point, plot results, print Taylor coefficients and rho estimation in parallel:

4 4 extremexi d1<-inflexi(x,y,1090,2785,5,5,plots=true,doparallel = TRUE);d1$an;d1$finfl; Available workers are 12 Time difference of secs 2.5 % 97.5 % an a a a a a a [1] Compare with exact inflection = Or execute rootexinf() and find a set of them at once and in same time: a<-rootexinf(x,y,100,round(length(x)/2),5,plots = TRUE,doparallel = TRUE); a$an0;a$an1;a$an2;a$frexinf; Available workers are 12 Time difference of secs 2.5 % 97.5 % an0 a e-05 a e+00 a e-01 a e-01 a e-01 a e % 97.5 % an1 a a a a a a % 97.5 % an2 a a a a a a index value root extreme inflection Here a first plot always is helpful. extremexi Function to Find the Extreme Point of a Planar Curve Description It takes as input the x, y numeric vectors, the indices for the range to be searched plus some other options and finds the extreme point for that interval, while it plots data, Taylor polynomial and the

5 extremexi 5 computed a 1 coefficients. Usage extremexi(x, y, i1, i2, nt, alpha = 5, xlb = "x", ylb = "y", xnd = 3, ynd = 3, plots = TRUE, plotpdf = FALSE, doparallel=false) Arguments x y A numeric vector for the independent variable A numeric vector for the dependent variable i1 The first index for choosing a specific interval [a, b] = [x i1, x i2 ] i2 The second index for choosing a specific interval [a, b] = [x i1, x i2 ] nt alpha xlb ylb Details The degree of the Taylor polynomial that will be fitted to the data The level of statistical significance for the confidence intervals of coefficients a 0, a 1,..., a nt 1 (default value = 5) A label for the x-variable (default value = "x") A label for the y-variable (default value = "y") xnd The number of digits for plotting the x-axis (default value = 3) ynd The number of digits for plotting the y-axis (default value = 3) plots plotpdf doparallel If plots=true then a plot is created on default monitor (default value = TRUE) If plotpdf=true then a pdf plot is created and stored on working directory (default value = FALSE) If doparallel=true then parallel computing is applied, based on the available workers of current machine (default value = FALSE) The point x i which makes the relevant a 1 minimum is the estimation for the function s extreme point at the interval [x i1, x i2 ]. Value It returns an environment with two components: an fextr a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient an a list with 2 members: the position i and the value of the estimated extreme point ρ = x i Warnings When you are using RStudio it is necessary to leave enough space for the plot window in order for the plots to appear normally. The data should come from a function at least C (1) in order to be able to find an extreme point, if exists.

6 6 extremexi Author(s) Demetris T. Christopoulos References Demetris T. Christopoulos (2014), Roots, extrema and inflection points by using a proper Taylor regression procedure, ResearchGate publications, Examples Load data: data(xydat) Extract x and y variables: x=xydat$x;y=xydat$y Find extreme point, plot results, print Taylor coefficients and rho estimation: c<-extremexi(x,y,1,length(x),5,5,plots=true);c$an;c$fextr; Find multiple extrema. Let's create some data: f=function(x){3*cos(x-5)};xa=0.;xb=9; set.seed(12345);x=sort(runif(101,xa,xb));r=0.1;y=f(x)+2*r*(runif(length(x))-0.5);plot(x,y) The first extreme point is c1<-extremexi(x,y,1,40,5,5,plots=true);c1$an;c1$fextr; 2.5 % 97.5 % an a a a a a a [1] Compare it with the actual rho_1= The second extreme point is c2<-extremexi(x,y,50,80,5,5,plots=true);c2$an;c2$fextr; 2.5 % 97.5 % an a a a a a a [1] You have to compare it with the actual value of rho_2=5.0

7 inflexi 7 Finally the third extreme point is c3<-extremexi(x,y,80,length(x),5,5,plots=true);c3$an;c3$fextr; 2.5 % 97.5 % an a a a a a a [1] You have to compare it with the actual value of rho_3= inflexi Function to Find the Inflection Point of a Planar Curve Description Usage It takes as input the x, y numeric vectors, the indices for the range to be searched plus some other options and finds the inflection point for that interval, while it plots data, Taylor polynomial and and the computed a 2 coefficients. inflexi(x, y, i1, i2, nt, alpha = 5, xlb = "x", ylb = "y", xnd = 3, ynd = 3, plots = TRUE, plotpdf = FALSE, doparallel=false) Arguments x y A numeric vector for the independent variable A numeric vector for the dependent variable i1 The first index for choosing a specific interval [a, b] = [x i1, x i2 ] i2 The second index for choosing a specific interval [a, b] = [x i1, x i2 ] nt alpha xlb ylb The degree of the Taylor polynomial that will be fitted to the data The level of statistical significance for the confidence intervals of coefficients a 0, a 1,..., a nt 1 (default value = 5) A label for the x-variable (default value = "x") A label for the y-variable (default value = "y") xnd The number of digits for plotting the x-axis (default value = 3) ynd The number of digits for plotting the y-axis (default value = 3) plots plotpdf doparallel If plots=true then a plot is created on default monitor (default value = TRUE) If plotpdf=true then a pdf plot is created and stored on working directory (default value = FALSE) If doparallel=true then parallel computing is applied, based on the available workers of current machine (default value = FALSE)

8 8 inflexi Details Value The point x i which makes the relevant a 2 minimum is the estimation for the function s inflection point at the interval [x i1, x i2 ]. It returns an environment with two components: an fextr a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient an a list with 2 members: the position i and the value of the estimated inflection point ρ = x i Warnings When you are using RStudio it is necessary to leave enough space for the plot window in order for the plots to appear normally. The data should come from a function at least C (2) in order to be able to find an inflection point, if exists. Author(s) Demetris T. Christopoulos References Demetris T. Christopoulos (2014), Roots, extrema and inflection points by using a proper Taylor regression procedure, ResearchGate publications, Examples Load data: data(xydat) Extract x and y variables: x=xydat$x;y=xydat$y Find inflection point, plot results, print Taylor coefficients and rho estimation: d<-inflexi(x,y,1,length(x),5,5,plots=true);d$an;d$finfl; Find multiple inflection points. Let's create some data: f=function(x){3*cos(x-5)};xa=0.;xb=9; set.seed(12345);x=sort(runif(101,xa,xb));r=0.1;y=f(x)+2*r*(runif(length(x))-0.5);plot(x,y) The first inflection point is d1<-inflexi(x,y,20,50,5,5,plots=true);d1$an;d1$finfl;

9 rootexinf % 97.5 % an a a a a a a [1] Compare it with the actual rho_1= The second inflection point is d2<-inflexi(x,y,50,length(x),5,5,plots=true);d2$an;d2$finfl; 2.5 % 97.5 % an a a a a a a [1] You have to compare it with the actual value of rho_2= rootexinf Function to Find the Root, Extreme and Inflection of a Planar Curve Description Usage It takes as input the x, y numeric vectors, the indices for the range to be searched plus some other options and finds the root, extreme and inflection for that interval, while it plots data, Taylor polynomial and and the computed a 0, a 1, a 2 coefficients. rootexinf(x, y, i1, i2, nt, alpha = 5, xlb = "x", ylb = "y", xnd = 3, ynd = 3, plots = TRUE, plotpdf = FALSE, doparallel=false) Arguments x y A numeric vector for the independent variable A numeric vector for the dependent variable i1 The first index for choosing a specific interval [a, b] = [x i1, x i2 ] i2 The second index for choosing a specific interval [a, b] = [x i1, x i2 ] nt alpha xlb ylb The degree of the Taylor polynomial that will be fitted to the data The level of statistical significance for the confidence intervals of coefficients a 0, a 1,..., a nt 1 (default value = 5) A label for the x-variable (default value = "x") A label for the y-variable (default value = "y")

10 10 rootexinf Details Value xnd The number of digits for plotting the x-axis (default value = 3) ynd The number of digits for plotting the y-axis (default value = 3) plots plotpdf doparallel If plots=true then a plot is created on default monitor (default value = TRUE) If plotpdf=true then a pdf plot is created and stored on working directory (default value = FALSE) If doparallel=true then parallel computing is applied, based on the available workers of current machine (default value = FALSE) The points x i that make the relevant a 0, a 1, a 2 minimum are the estimations for the function s root, etreme and inflection point at the interval [x i1, x i2 ]. It returns an environment with four components: an0 an1 an2 frexinf a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient a_n at the best choice in root searching a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient a_n at the best choice in extreme searching a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient a_n at the best choice in inflection searching a 3 x 3 matrix: for each row (root, extreme, inflection) the position i and the value of the estimated root, extreme and inflection ρ = x i Warnings When you are using RStudio it is necessary to leave enough space for the plot window in order for the plots to appear normally. The data should come from a function at least C (2) in order to find the root, extreme and inflection point, provided those points exist. Author(s) Demetris T. Christopoulos References Demetris T. Christopoulos (2014), Roots, extrema and inflection points by using a proper Taylor regression procedure, ResearchGate publicationss, Examples Load data: Let's create some data: f=function(x){3*cos(x-5)+1.5};xa=1.;xb=5; set.seed(12345);x=sort(runif(5001,xa,xb));

11 rootxi 11 r=0.1;y=f(x)+2*r*(runif(length(x))-0.5);plot(x,y);abline(h=0) a<-rootexinf(x,y,1,length(x),5,plotpdf = TRUE,doparallel = TRUE);a$an0;a$an1;a$an2;a$frexinf; Available workers are 12 Time difference of secs File 'root_extreme_inflection_plot.pdf' has been created 2.5 % 97.5 % an0 a a a a a a % 97.5 % an1 a a a a a a % 97.5 % an2 a a a a a a index value root extreme inflection You have to compare with the exact values root= extreme= inflection= rootxi Function to Find the Root of a Planar Curve Description It takes as input the x, y numeric vectors, the indices for the range to be searched plus some other options and finds the root for that interval, while it plots data, Taylor polynomial and and the computed a 0 coefficients. Usage rootxi(x, y, i1, i2, nt, alpha = 5, xlb = "x", ylb = "y", xnd = 3, ynd = 3, plots = TRUE, plotpdf = FALSE, doparallel=false)

12 12 rootxi Arguments x y A numeric vector for the independent variable A numeric vector for the dependent variable i1 The first index for choosing a specific interval [a, b] = [x i1, x i2 ] i2 The second index for choosing a specific interval [a, b] = [x i1, x i2 ] nt alpha xlb ylb Details Value The degree of the Taylor polynomial that will be fitted to the data The level of statistical significance for the confidence intervals of coefficients a 0, a 1,..., a nt 1 (default value = 5) A label for the x-variable (default value = "x") A label for the y-variable (default value = "y") xnd The number of digits for plotting the x-axis (default value = 3) ynd The number of digits for plotting the y-axis (default value = 3) plots plotpdf doparallel If plots=true then a plot is created on default monitor (default value = TRUE) If plotpdf=true then a pdf plot is created and stored on working directory (default value = FALSE) If doparallel=true then parallel computing is applied, based on the available workers of current machine (default value = FALSE) The point x i which makes the relevant a 0 minimum is the estimation for the function s root at the interval [x i1, x i2 ]. It returns an environment with two components: an froot a matrix with 3 columns: lower, upper bound of confidence interval and middle value for each coefficient a_n a list with 2 members: the position i and the value of the estimated root ρ = x i Warnings When you are using RStudio it is necessary to leave enough space for the plot window in order for the plots to appear normally. The data should come from a function at least C (0) in order to find the root, provided that such a root exists. Author(s) Demetris T. Christopoulos References Demetris T. Christopoulos (2014), Roots, extrema and inflection points by using a proper Taylor regression procedure, ResearchGate publicationss,

13 rootxi 13 Examples Load data: data(xydat) Extract x and y variables: x=xydat$x;y=xydat$y Find root, plot results, print Taylor coefficients and rho estimation: b<-rootxi(x,y,1,length(x),5,5,plots=true);b$an;b$froot; Find multiple roots. Let's create some data: f=function(x){3*cos(x-5)};xa=0.;xb=9; set.seed(12345);x=sort(runif(101,xa,xb));r=0.1;y=f(x)+2*r*(runif(length(x))-0.5);plot(x,y) The first root is b1<-rootxi(x,y,1,20,5,5,plots=true);b1$an;b1$froot; 2.5 % 97.5 % an a a a a a a [1] Compare it with the actual rho_1= The second root is b2<-rootxi(x,y,20,50,5,5,plots=true);b2$an;b2$froot; 2.5 % 97.5 % an a a a a a a [1] You have to compare it with the actual value of rho_2= Finally the third root is b3<-rootxi(x,y,50,90,5,5,plots=true);b3$an;b3$froot; 2.5 % 97.5 % an a a a a

14 14 xydat a a [1] You have to compare it with the actual value of rho_3= xydat xydat Description A dataset containing 61 xy-points Usage data("xydat") Format A data frame with 61 observations on the following 2 variables. x a numeric vector y a numeric vector Examples data(xydat)

15 Index Topic datasets xydat, 14 Topic extremexi extremexi, 4 inflexi, 7 RootsExtremaInflections-package, 2 Topic inflexi RootsExtremaInflections-package, 2 Topic rootexinf rootexinf, 9 Topic rootxi RootsExtremaInflections-package, 2 rootxi, 11 extremexi, 4 inflexi, 7 rootexinf, 9 RootsExtremaInflections (RootsExtremaInflections-package), 2 RootsExtremaInflections-package, 2 rootxi, 11 xydat, 14 15

Package idmtpreg. February 27, 2018

Package idmtpreg. February 27, 2018 Type Package Package idmtpreg February 27, 2018 Title Regression Model for Progressive Illness Death Data Version 1.1 Date 2018-02-23 Author Leyla Azarang and Manuel Oviedo de la Fuente Maintainer Leyla

More information

Package BayesNI. February 19, 2015

Package BayesNI. February 19, 2015 Package BayesNI February 19, 2015 Type Package Title BayesNI: Bayesian Testing Procedure for Noninferiority with Binary Endpoints Version 0.1 Date 2011-11-11 Author Sujit K Ghosh, Muhtarjan Osman Maintainer

More information

Package robustrao. August 14, 2017

Package robustrao. August 14, 2017 Type Package Package robustrao August 14, 2017 Title An Extended Rao-Stirling Diversity Index to Handle Missing Data Version 1.0-3 Date 2016-01-31 Author María del Carmen Calatrava Moreno [aut, cre], Thomas

More information

Package leiv. R topics documented: February 20, Version Type Package

Package leiv. R topics documented: February 20, Version Type Package Version 2.0-7 Type Package Package leiv February 20, 2015 Title Bivariate Linear Errors-In-Variables Estimation Date 2015-01-11 Maintainer David Leonard Depends R (>= 2.9.0)

More information

Package rnmf. February 20, 2015

Package rnmf. February 20, 2015 Type Package Title Robust Nonnegative Matrix Factorization Package rnmf February 20, 2015 An implementation of robust nonnegative matrix factorization (rnmf). The rnmf algorithm decomposes a nonnegative

More information

Package HIMA. November 8, 2017

Package HIMA. November 8, 2017 Type Package Title High-Dimensional Mediation Analysis Version 1.0.5 Date 2017-11-05 Package HIMA November 8, 2017 Description Allows to estimate and test high-dimensional mediation effects based on sure

More information

Package pearson7. June 22, 2016

Package pearson7. June 22, 2016 Version 1.0-2 Date 2016-06-21 Package pearson7 June 22, 2016 Title Maximum Likelihood Inference for the Pearson VII Distribution with Shape Parameter 3/2 Author John Hughes Maintainer John Hughes

More information

Package ShrinkCovMat

Package ShrinkCovMat Type Package Package ShrinkCovMat Title Shrinkage Covariance Matrix Estimators Version 1.2.0 Author July 11, 2017 Maintainer Provides nonparametric Steinian shrinkage estimators

More information

Package ADPF. September 13, 2017

Package ADPF. September 13, 2017 Package ADPF September 13, 2017 Title Use Least Squares Polynomial Regression and Statistical Testing to Improve Savitzky-Golay Version 0.0.1 Maintainer Samuel Kruse Description This

More information

Package ltsbase. R topics documented: February 20, 2015

Package ltsbase. R topics documented: February 20, 2015 Package ltsbase February 20, 2015 Type Package Title Ridge and Liu Estimates based on LTS (Least Trimmed Squares) Method Version 1.0.1 Date 2013-08-02 Author Betul Kan Kilinc [aut, cre], Ozlem Alpu [aut,

More information

Package SK. May 16, 2018

Package SK. May 16, 2018 Type Package Package SK May 16, 2018 Title Segment-Based Ordinary Kriging and Segment-Based Regression Kriging for Spatial Prediction Date 2018-05-10 Version 1.1 Maintainer Yongze Song

More information

Package rgabriel. February 20, 2015

Package rgabriel. February 20, 2015 Type Package Package rgabriel February 20, 2015 Title Gabriel Multiple Comparison Test and Plot the Confidence Interval on Barplot Version 0.7 Date 2013-12-28 Author Yihui XIE, Miao YU Maintainer Miao

More information

Package TwoStepCLogit

Package TwoStepCLogit Package TwoStepCLogit March 21, 2016 Type Package Title Conditional Logistic Regression: A Two-Step Estimation Method Version 1.2.5 Date 2016-03-19 Author Radu V. Craiu, Thierry Duchesne, Daniel Fortin

More information

Package sindyr. September 10, 2018

Package sindyr. September 10, 2018 Type Package Title Sparse Identification of Nonlinear Dynamics Version 0.2.1 Date 2018-09-10 Author Maintainer Rick Dale Package sindyr September 10, 2018 This implements the Brunton

More information

Package invgamma. May 7, 2017

Package invgamma. May 7, 2017 Package invgamma May 7, 2017 Type Package Title The Inverse Gamma Distribution Version 1.1 URL https://github.com/dkahle/invgamma BugReports https://github.com/dkahle/invgamma/issues Description Light

More information

Package factorqr. R topics documented: February 19, 2015

Package factorqr. R topics documented: February 19, 2015 Package factorqr February 19, 2015 Version 0.1-4 Date 2010-09-28 Title Bayesian quantile regression factor models Author Lane Burgette , Maintainer Lane Burgette

More information

Package EDR. September 14, 2016

Package EDR. September 14, 2016 Version 0.6-6 Date 2016-09-06 Package EDR September 14, 2016 Title Estimation of the Effective Dimension Reduction ('EDR') Space Author Joerg Polzehl Maintainer Joerg Polzehl

More information

Package depth.plot. December 20, 2015

Package depth.plot. December 20, 2015 Package depth.plot December 20, 2015 Type Package Title Multivariate Analogy of Quantiles Version 0.1 Date 2015-12-19 Maintainer Could be used to obtain spatial depths, spatial ranks and outliers of multivariate

More information

Package BNN. February 2, 2018

Package BNN. February 2, 2018 Type Package Package BNN February 2, 2018 Title Bayesian Neural Network for High-Dimensional Nonlinear Variable Selection Version 1.0.2 Date 2018-02-02 Depends R (>= 3.0.2) Imports mvtnorm Perform Bayesian

More information

Package AMA. October 27, 2010

Package AMA. October 27, 2010 Package AMA October 27, 2010 Type Package Title Anderson-Moore Algorithm Version 1.0.8 Depends rjava Date 2010-10-13 Author Gary Anderson, Aneesh Raghunandan Maintainer Gary Anderson

More information

Package gwqs. R topics documented: May 7, Type Package. Title Generalized Weighted Quantile Sum Regression. Version 1.1.0

Package gwqs. R topics documented: May 7, Type Package. Title Generalized Weighted Quantile Sum Regression. Version 1.1.0 Package gwqs May 7, 2018 Type Package Title Generalized Weighted Quantile Sum Regression Version 1.1.0 Author Stefano Renzetti, Paul Curtin, Allan C Just, Ghalib Bello, Chris Gennings Maintainer Stefano

More information

Package gtheory. October 30, 2016

Package gtheory. October 30, 2016 Package gtheory October 30, 2016 Version 0.1.2 Date 2016-10-22 Title Apply Generalizability Theory with R Depends lme4 Estimates variance components, generalizability coefficients, universe scores, and

More information

Package reinforcedpred

Package reinforcedpred Type Package Package reinforcedpred October 31, 2018 Title Reinforced Risk Prediction with Budget Constraint Version 0.1.1 Author Yinghao Pan [aut, cre], Yingqi Zhao [aut], Eric Laber [aut] Maintainer

More information

Package bhrcr. November 12, 2018

Package bhrcr. November 12, 2018 Type Package Package bhrcr November 12, 2018 Title Bayesian Hierarchical Regression on Clearance Rates in the Presence of Lag and Tail Phases Version 1.0.2 Date 2018-11-12 Author Colin B. Fogarty [cre]

More information

Package plspolychaos

Package plspolychaos Version 1.1-1 Date 2017-03-01 Package plspolychaos June 9, 2018 Title Sensitivity Indexes from Polynomial Chaos Expansions and PLS Author A. Bouvier [aut], J.-P. Gauchi [cre], A. Bensadoun [ctb] Maintainer

More information

Package sbgcop. May 29, 2018

Package sbgcop. May 29, 2018 Package sbgcop May 29, 2018 Title Semiparametric Bayesian Gaussian Copula Estimation and Imputation Version 0.980 Date 2018-05-25 Author Maintainer Estimation and inference for parameters

More information

Package survidinri. February 20, 2015

Package survidinri. February 20, 2015 Package survidinri February 20, 2015 Type Package Title IDI and NRI for comparing competing risk prediction models with censored survival data Version 1.1-1 Date 2013-4-8 Author Hajime Uno, Tianxi Cai

More information

Package locfdr. July 15, Index 5

Package locfdr. July 15, Index 5 Version 1.1-8 Title Computes Local False Discovery Rates Package locfdr July 15, 2015 Maintainer Balasubramanian Narasimhan License GPL-2 Imports stats, splines, graphics Computation

More information

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5. Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.1 Date 2018-02-04 Package gk February 4, 2018 Functions for the g-and-k and generalised g-and-h distributions. License GPL-2 Imports

More information

Package dhsic. R topics documented: July 27, 2017

Package dhsic. R topics documented: July 27, 2017 Package dhsic July 27, 2017 Type Package Title Independence Testing via Hilbert Schmidt Independence Criterion Version 2.0 Date 2017-07-24 Author Niklas Pfister and Jonas Peters Maintainer Niklas Pfister

More information

Package MultisiteMediation

Package MultisiteMediation Version 0.0.1 Date 2017-02-25 Package MultisiteMediation February 26, 2017 Title Causal Mediation Analysis in Multisite Trials Author Xu Qin, Guanglei Hong Maintainer Xu Qin Depends

More information

Package sscor. January 28, 2016

Package sscor. January 28, 2016 Type Package Package sscor January 28, 2016 Title Robust Correlation Estimation and Testing Based on Spatial Signs Version 0.2 Date 2016-01-19 Depends pcapp, robustbase, mvtnorm Provides the spatial sign

More information

Package Blendstat. February 21, 2018

Package Blendstat. February 21, 2018 Package Blendstat February 21, 2018 Type Package Title Joint Analysis of Experiments with Mixtures and Random Effects Version 1.0.0 Date 2018-02-20 Author Marcelo Angelo Cirillo Paulo

More information

Package covtest. R topics documented:

Package covtest. R topics documented: Package covtest February 19, 2015 Title Computes covariance test for adaptive linear modelling Version 1.02 Depends lars,glmnet,glmpath (>= 0.97),MASS Author Richard Lockhart, Jon Taylor, Ryan Tibshirani,

More information

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.

Package JointModel. R topics documented: June 9, Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1. Package JointModel June 9, 2016 Title Semiparametric Joint Models for Longitudinal and Counting Processes Version 1.0 Date 2016-06-01 Author Sehee Kim Maintainer Sehee Kim

More information

Package TSPred. April 5, 2017

Package TSPred. April 5, 2017 Type Package Package TSPred April 5, 2017 Title Functions for Benchmarking Time Series Prediction Version 3.0.2 Date 2017-04-05 Author Rebecca Pontes Salles [aut, cre, cph] (CEFET/RJ), Eduardo Ogasawara

More information

Package neuralnet. August 16, 2016

Package neuralnet. August 16, 2016 Type Package Title Training of Neural Networks Version 1.33 Date 2016-08-05 Package neuralnet August 16, 2016 Author Stefan Fritsch [aut], Frauke Guenther [aut, cre], Marc Suling [ctb], Sebastian M. Mueller

More information

Package basad. November 20, 2017

Package basad. November 20, 2017 Package basad November 20, 2017 Type Package Title Bayesian Variable Selection with Shrinking and Diffusing Priors Version 0.2.0 Date 2017-11-15 Author Qingyan Xiang , Naveen Narisetty

More information

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors

Package rela. R topics documented: February 20, Version 4.1 Date Title Item Analysis Package with Standard Errors Version 4.1 Date 2009-10-25 Title Item Analysis Package with Standard Errors Package rela February 20, 2015 Author Michael Chajewski Maintainer Michael Chajewski

More information

Package EnergyOnlineCPM

Package EnergyOnlineCPM Type Package Package EnergyOnlineCPM October 2, 2017 Title Distribution Free Multivariate Control Chart Based on Energy Test Version 1.0 Date 2017-09-30 Author Yafei Xu Maintainer Yafei Xu

More information

Package beam. May 3, 2018

Package beam. May 3, 2018 Type Package Package beam May 3, 2018 Title Fast Bayesian Inference in Large Gaussian Graphical Models Version 1.0.2 Date 2018-05-03 Author Gwenael G.R. Leday [cre, aut], Ilaria Speranza [aut], Harry Gray

More information

Package Tcomp. June 6, 2018

Package Tcomp. June 6, 2018 Package Tcomp June 6, 2018 Title Data from the 2010 Tourism Forecasting Competition Version 1.0.1 The 1311 time series from the tourism forecasting competition conducted in 2010 and described in Athanasopoulos

More information

Package TSF. July 15, 2017

Package TSF. July 15, 2017 Type Package Package TSF July 15, 2017 Title Two Stage Forecasting (TSF) for Long Memory Time Series in Presence of Structural Break Version 0.1.1 Author Sandipan Samanta, Ranjit Kumar Paul and Dipankar

More information

Package polypoly. R topics documented: May 27, 2017

Package polypoly. R topics documented: May 27, 2017 Package polypoly May 27, 2017 Title Helper Functions for Orthogonal Polynomials Version 0.0.2 Tools for reshaping, plotting, and manipulating matrices of orthogonal polynomials. Depends R (>= 3.3.3) License

More information

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15.

Package AID. R topics documented: November 10, Type Package Title Box-Cox Power Transformation Version 2.3 Date Depends R (>= 2.15. Type Package Title Box-Cox Power Transformation Version 2.3 Date 2017-11-10 Depends R (>= 2.15.0) Package AID November 10, 2017 Imports MASS, tseries, nortest, ggplot2, graphics, psych, stats Author Osman

More information

Package clogitboost. R topics documented: December 21, 2015

Package clogitboost. R topics documented: December 21, 2015 Package December 21, 2015 Type Package Title Boosting Conditional Logit Model Version 1.1 Date 2015-12-09 Author Haolun Shi and Guosheng Yin Maintainer A set of functions to fit a boosting conditional

More information

Package mpmcorrelogram

Package mpmcorrelogram Type Package Package mpmcorrelogram Title Multivariate Partial Mantel Correlogram Version 0.1-4 Depends vegan Date 2017-11-17 Author Marcelino de la Cruz November 17, 2017 Maintainer Marcelino de la Cruz

More information

Package mcmcse. July 4, 2017

Package mcmcse. July 4, 2017 Version 1.3-2 Date 2017-07-03 Title Monte Carlo Standard Errors for MCMC Package mcmcse July 4, 2017 Author James M. Flegal , John Hughes , Dootika Vats ,

More information

Package epr. November 16, 2017

Package epr. November 16, 2017 Type Package Title Easy Polynomial Regression Version 3.0 Date 2017-11-14 Author Emmanuel Arnhold Package epr November 16, 2017 Maintainer Emmanuel Arnhold Performs analysis

More information

Package CMC. R topics documented: February 19, 2015

Package CMC. R topics documented: February 19, 2015 Type Package Title Cronbach-Mesbah Curve Version 1.0 Date 2010-03-13 Author Michela Cameletti and Valeria Caviezel Package CMC February 19, 2015 Maintainer Michela Cameletti

More information

Package emg. R topics documented: May 17, 2018

Package emg. R topics documented: May 17, 2018 Package emg May 17, 2018 Type Package Title Exponentially Modified Gaussian (EMG) Distribution Version 1.0.7 Date 2018-05-17 Author Shawn Garbett, Mark Kozdoba Maintainer Shawn Garbett

More information

Package gma. September 19, 2017

Package gma. September 19, 2017 Type Package Title Granger Mediation Analysis Version 1.0 Date 2018-08-23 Package gma September 19, 2017 Author Yi Zhao , Xi Luo Maintainer Yi Zhao

More information

Package scio. February 20, 2015

Package scio. February 20, 2015 Title Sparse Column-wise Inverse Operator Version 0.6.1 Author Xi (Rossi) LUO and Weidong Liu Package scio February 20, 2015 Maintainer Xi (Rossi) LUO Suggests clime, lorec, QUIC

More information

Package NonpModelCheck

Package NonpModelCheck Type Package Package NonpModelCheck April 27, 2017 Title Model Checking and Variable Selection in Nonparametric Regression Version 3.0 Date 2017-04-27 Author Adriano Zanin Zambom Maintainer Adriano Zanin

More information

Package bivariate. December 10, 2018

Package bivariate. December 10, 2018 Title Bivariate Probability Distributions Version 0.3.0 Date 2018-12-10 License GPL (>= 2) Package bivariate December 10, 2018 Maintainer Abby Spurdle Author Abby Spurdle URL https://sites.google.com/site/asrpws

More information

Package bigtime. November 9, 2017

Package bigtime. November 9, 2017 Package bigtime November 9, 2017 Type Package Title Sparse Estimation of Large Time Series Models Version 0.1.0 Author Ines Wilms [cre, aut], David S. Matteson [aut], Jacob Bien [aut], Sumanta Basu [aut]

More information

Package RTransferEntropy

Package RTransferEntropy Type Package Package RTransferEntropy March 12, 2019 Title Measuring Information Flow Between Time Series with Shannon and Renyi Transfer Entropy Version 0.2.8 Measuring information flow between time series

More information

Package IsingFit. September 7, 2016

Package IsingFit. September 7, 2016 Type Package Package IsingFit September 7, 2016 Title Fitting Ising Models Using the ELasso Method Version 0.3.1 Date 2016-9-6 Depends R (>= 3.0.0) Imports qgraph, Matrix, glmnet Suggests IsingSampler

More information

Package Delaporte. August 13, 2017

Package Delaporte. August 13, 2017 Type Package Package Delaporte August 13, 2017 Title Statistical Functions for the Delaporte Distribution Version 6.1.0 Date 2017-08-13 Description Provides probability mass, distribution, quantile, random-variate

More information

Package QuantifQuantile

Package QuantifQuantile Type Package Package QuantifQuantile August 13, 2015 Title Estimation of Conditional Quantiles using Optimal Quantization Version 2.2 Date 2015-08-13 Author Isabelle Charlier and Davy Paindaveine and Jerome

More information

Package netcoh. May 2, 2016

Package netcoh. May 2, 2016 Type Package Title Statistical Modeling with Network Cohesion Version 0.2 Date 2016-04-29 Author Tianxi Li, Elizaveta Levina, Ji Zhu Maintainer Tianxi Li Package netcoh May 2, 2016

More information

Package ensemblepp. R topics documented: September 20, Title Ensemble Postprocessing Data Sets. Version

Package ensemblepp. R topics documented: September 20, Title Ensemble Postprocessing Data Sets. Version Title Ensemble Postprocessing Data Sets Version 0.1-0 Date 2017-08-29 Author Jakob Messner [aut, cre] Package ensemblepp September 20, 2017 Maintainer Jakob Messner Depends R (>=

More information

Package ebal. R topics documented: February 19, Type Package

Package ebal. R topics documented: February 19, Type Package Type Package Package ebal February 19, 2015 Title Entropy reweighting to create balanced samples Version 0.1-6 Date 2014-01-25 Author Maintainer Package implements entropy balancing,

More information

Package dhga. September 6, 2016

Package dhga. September 6, 2016 Type Package Title Differential Hub Gene Analysis Version 0.1 Date 2016-08-31 Package dhga September 6, 2016 Author Samarendra Das and Baidya Nath Mandal

More information

Package metansue. July 11, 2018

Package metansue. July 11, 2018 Type Package Package metansue July 11, 2018 Title Meta-Analysis of Studies with Non Statistically-Significant Unreported Effects Version 2.2 Date 2018-07-11 Author Joaquim Radua Maintainer Joaquim Radua

More information

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0.

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0. Package flexcwm July 11, 2013 Type Package Title Flexible Cluster-Weighted Modeling Version 1.0 Date 2013-02-17 Author Incarbone G., Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza

More information

Package HarmonicRegression

Package HarmonicRegression Package HarmonicRegression April 1, 2015 Type Package Title Harmonic Regression to One or more Time Series Version 1.0 Date 2015-04-01 Author Paal O. Westermark Maintainer Paal O. Westermark

More information

Package weightquant. R topics documented: December 30, Type Package

Package weightquant. R topics documented: December 30, Type Package Type Package Package weightquant December 30, 2018 Title Weights for Incomplete Longitudinal Data and Quantile Regression Version 1.0 Date 2018-12-18 Author Viviane Philipps Maintainer Viviane Philipps

More information

Package breakaway. R topics documented: March 30, 2016

Package breakaway. R topics documented: March 30, 2016 Title Species Richness Estimation and Modeling Version 3.0 Date 2016-03-29 Author and John Bunge Maintainer Package breakaway March 30, 2016 Species richness estimation is an important

More information

Package threg. August 10, 2015

Package threg. August 10, 2015 Package threg August 10, 2015 Title Threshold Regression Version 1.0.3 Date 2015-08-10 Author Tao Xiao Maintainer Tao Xiao Depends R (>= 2.10), survival, Formula Fit a threshold regression

More information

Package Grace. R topics documented: April 9, Type Package

Package Grace. R topics documented: April 9, Type Package Type Package Package Grace April 9, 2017 Title Graph-Constrained Estimation and Hypothesis Tests Version 0.5.3 Date 2017-4-8 Author Sen Zhao Maintainer Sen Zhao Description Use

More information

Package CoxRidge. February 27, 2015

Package CoxRidge. February 27, 2015 Type Package Title Cox Models with Dynamic Ridge Penalties Version 0.9.2 Date 2015-02-12 Package CoxRidge February 27, 2015 Author Aris Perperoglou Maintainer Aris Perperoglou

More information

Package OUwie. August 29, 2013

Package OUwie. August 29, 2013 Package OUwie August 29, 2013 Version 1.34 Date 2013-5-21 Title Analysis of evolutionary rates in an OU framework Author Jeremy M. Beaulieu , Brian O Meara Maintainer

More information

Package NlinTS. September 10, 2018

Package NlinTS. September 10, 2018 Type Package Title Non Linear Time Series Analysis Version 1.3.5 Date 2018-09-05 Package NlinTS September 10, 2018 Maintainer Youssef Hmamouche Models for time series forecasting

More information

Package pssm. March 1, 2017

Package pssm. March 1, 2017 Version 1.1 Type Package Date 2017-02-28 Package pssm March 1, 2017 Title Piecewise Exponential Model for Time to Progression and Time from Progression to Death Author David A. Schoenfeld [aut, cre] Maintainer

More information

Package OGI. December 20, 2017

Package OGI. December 20, 2017 Type Package Title Objective General Index Version 1.0.0 Package OGI December 20, 2017 Description Consider a data matrix of n individuals with p variates. The objective general index (OGI) is a general

More information

Package CorrMixed. R topics documented: August 4, Type Package

Package CorrMixed. R topics documented: August 4, Type Package Type Package Package CorrMixed August 4, 2016 Title Estimate Correlations Between Repeatedly Measured Endpoints (E.g., Reliability) Based on Linear Mixed-Effects Models Version 0.1-13 Date 2015-03-08 Author

More information

Package RI2by2. October 21, 2016

Package RI2by2. October 21, 2016 Package RI2by2 October 21, 2016 Type Package Title Randomization Inference for Treatment Effects on a Binary Outcome Version 1.3 Author Joseph Rigdon, Wen Wei Loh, Michael G. Hudgens Maintainer Wen Wei

More information

Package Rsurrogate. October 20, 2016

Package Rsurrogate. October 20, 2016 Type Package Package Rsurrogate October 20, 2016 Title Robust Estimation of the Proportion of Treatment Effect Explained by Surrogate Marker Information Version 2.0 Date 2016-10-19 Author Layla Parast

More information

Package ForwardSearch

Package ForwardSearch Package ForwardSearch February 19, 2015 Type Package Title Forward Search using asymptotic theory Version 1.0 Date 2014-09-10 Author Bent Nielsen Maintainer Bent Nielsen

More information

Package multivariance

Package multivariance Package multivariance January 10, 2018 Title Measuring Multivariate Dependence Using Distance Multivariance Version 1.1.0 Date 2018-01-09 Distance multivariance is a measure of dependence which can be

More information

Package LIStest. February 19, 2015

Package LIStest. February 19, 2015 Type Package Package LIStest February 19, 2015 Title Tests of independence based on the Longest Increasing Subsequence Version 2.1 Date 2014-03-12 Author J. E. Garcia and V. A. Gonzalez-Lopez Maintainer

More information

Package REGARMA. R topics documented: October 1, Type Package. Title Regularized estimation of Lasso, adaptive lasso, elastic net and REGARMA

Package REGARMA. R topics documented: October 1, Type Package. Title Regularized estimation of Lasso, adaptive lasso, elastic net and REGARMA Package REGARMA October 1, 2014 Type Package Title Regularized estimation of Lasso, adaptive lasso, elastic net and REGARMA Version 0.1.1.1 Date 2014-10-01 Depends R(>= 2.10.0) Imports tseries, msgps Author

More information

Package MAPA. R topics documented: January 5, Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4

Package MAPA. R topics documented: January 5, Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4 Type Package Title Multiple Aggregation Prediction Algorithm Version 2.0.4 Package MAPA January 5, 2018 Functions and wrappers for using the Multiple Aggregation Prediction Algorithm (MAPA) for time series

More information

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1.

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1. Package flexcwm July 2, 2014 Type Package Title Flexible Cluster-Weighted Modeling Version 1.1 Date 2013-11-03 Author Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza Description

More information

Package cccrm. July 8, 2015

Package cccrm. July 8, 2015 Package cccrm July 8, 2015 Title Concordance Correlation Coefficient for Repeated (and Non-Repeated) Measures Version 1.2.1 Date 2015-07-03 Author Josep Lluis Carrasco , Josep Puig Martinez

More information

Package metafuse. October 17, 2016

Package metafuse. October 17, 2016 Package metafuse October 17, 2016 Type Package Title Fused Lasso Approach in Regression Coefficient Clustering Version 2.0-1 Date 2016-10-16 Author Lu Tang, Ling Zhou, Peter X.K. Song Maintainer Lu Tang

More information

Package ssanv. June 23, 2015

Package ssanv. June 23, 2015 Type Package Package ssanv June 23, 2015 Title Sample Size Adjusted for Nonadherence or Variability of Input Parameters Version 1.1 Date 2015-06-22 Author Michael P. Fay Maintainer

More information

Package icmm. October 12, 2017

Package icmm. October 12, 2017 Type Package Package icmm October 12, 2017 Title Empirical Bayes Variable Selection via ICM/M Algorithm Version 1.1 Author Vitara Pungpapong [aut, cre], Min Zhang [aut], Dabao Zhang [aut] Maintainer Vitara

More information

Package IGG. R topics documented: April 9, 2018

Package IGG. R topics documented: April 9, 2018 Package IGG April 9, 2018 Type Package Title Inverse Gamma-Gamma Version 1.0 Date 2018-04-04 Author Ray Bai, Malay Ghosh Maintainer Ray Bai Description Implements Bayesian linear regression,

More information

Package milineage. October 20, 2017

Package milineage. October 20, 2017 Type Package Package milineage October 20, 2017 Title Association Tests for Microbial Lineages on a Taxonomic Tree Version 2.0 Date 2017-10-18 Author Zheng-Zheng Tang Maintainer Zheng-Zheng Tang

More information

Package testassay. November 29, 2016

Package testassay. November 29, 2016 Type Package Package testassay November 29, 2016 Title A Hypothesis Testing Framework for Validating an Assay for Precision Version 0.1.0 Author Michael C Sachs and Michael P Fay Maintainer Michael C Sachs

More information

Package CCP. R topics documented: December 17, Type Package. Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0.

Package CCP. R topics documented: December 17, Type Package. Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0. Package CCP December 17, 2009 Type Package Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0.1 Date 2009-12-14 Author Uwe Menzel Maintainer Uwe Menzel to

More information

Package denseflmm. R topics documented: March 17, 2017

Package denseflmm. R topics documented: March 17, 2017 Package denseflmm March 17, 2017 Type Package Title Functional Linear Mixed Models for Densely Sampled Data Version 0.1.0 Author Sonja Greven, Jona Cederbaum Maintainer Jona Cederbaum

More information

Package G2Sd. R topics documented: December 7, Type Package

Package G2Sd. R topics documented: December 7, Type Package Type Package Package G2Sd December 7, 2015 Title Grain-Size Statistics and of Sediment Version 2.1.5 Date 2015-12-7 Depends R (>= 3.0.2) Imports shiny, xlsx, rjava, xlsxjars, reshape2, ggplot2, stats,

More information

Package effectfusion

Package effectfusion Package November 29, 2016 Title Bayesian Effect Fusion for Categorical Predictors Version 1.0 Date 2016-11-21 Author Daniela Pauger [aut, cre], Helga Wagner [aut], Gertraud Malsiner-Walli [aut] Maintainer

More information

Package covsep. May 6, 2018

Package covsep. May 6, 2018 Package covsep May 6, 2018 Title Tests for Determining if the Covariance Structure of 2-Dimensional Data is Separable Version 1.1.0 Author Shahin Tavakoli [aut, cre], Davide Pigoli [ctb], John Aston [ctb]

More information

Package jmcm. November 25, 2017

Package jmcm. November 25, 2017 Type Package Package jmcm November 25, 2017 Title Joint Mean-Covariance Models using 'Armadillo' and S4 Version 0.1.8.0 Maintainer Jianxin Pan Fit joint mean-covariance models

More information

Package CPE. R topics documented: February 19, 2015

Package CPE. R topics documented: February 19, 2015 Package CPE February 19, 2015 Title Concordance Probability Estimates in Survival Analysis Version 1.4.4 Depends R (>= 2.10.0),survival,rms Author Qianxing Mo, Mithat Gonen and Glenn Heller Maintainer

More information

Package msir. R topics documented: April 7, Type Package Version Date Title Model-Based Sliced Inverse Regression

Package msir. R topics documented: April 7, Type Package Version Date Title Model-Based Sliced Inverse Regression Type Package Version 1.3.1 Date 2016-04-07 Title Model-Based Sliced Inverse Regression Package April 7, 2016 An R package for dimension reduction based on finite Gaussian mixture modeling of inverse regression.

More information