Package glassomix. May 30, 2013

Size: px
Start display at page:

Download "Package glassomix. May 30, 2013"

Transcription

1 Package glassomix May 30, 2013 Type Package Title High dimensional Mixture Graph Models selection Version 1.1 Date Author Anani Lotsi and Ernst Wit Maintainer Anani Lotsi Depends R (>= 3.0.0), mvtnorm, glasso, huge Description The package glassomix provides a general framework for network recovering through a model-based soft clustering. It provides functions for parameter estimation via the EM algorithm for Gaussian graphical mixture models in high dimensional setting. The main function is glasso.mix upon which a model selection is performed. The package estimates the optimum number of mixture components (K) and the tuning parameter (lambda) based on the Extended Bayesian Information Criteria (EBIC) via select.gm function. The graphical structural of the K-networks are also plotted through the function gm.plot License GPL (>= 3) URL NeedsCompilation no Repository CRAN Date/Publication :56:04 1

2 2 glassomix-package R topics documented: glassomix-package glasso.mix gm.plot select.gm summary.glasso.mix summary.select.gm Index 13 glassomix-package High dimensional undirected Graphical Mixture Models selection Description A package for high dimensional Undirected Graphical Mixture Models selection. Details This package provides an implementation of the procedures described in Lotsi and Wit (2013). The main function is glasso.mix. This function performs the graph estimation using glasso and a model selction is performed based on Extended Bayesian Information Criterion through the function select.gm. The graphical structural of the K-subgroup of population of individuals is estimated and plotted via the function gm.plot. Functions: glasso.mix Inference via EM algorithm based on glasso. summary.glasso.mix Summary of the result according to fuction glasso.mix select.gm This function performs the model selection and selects the best graphical models based on EBIC. summary.select.gm Summary of the result according to select.gm gm.plot Plot the resultant graphical structural of the K- subgroup of population of individuals. Author(s) Anani Lotsi <a.lotsi@rug.nl> and Ernst Wit

3 glasso.mix 3 References 1. Anani, Lotsi. and E. Wit (2012). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ). glasso.mix sparse Gaussian undirected graphical mixture model estimation. Description The main function perfoming the inference via EM algorithm. This function for each value of K, estimate the responsibility matrices ( n K) at the E-step and then given these probabilities, estimate the precision matrices at the M-step via glasso. Usage glasso.mix(data,k=null,lambda=null,em.iter,n.lambda, penalize.diagonal=true,ebic.gamma=0.5,kmax) Arguments data K lambda em.iter ( n p), rows = n, number of observation, columns = p, number of graph nodes/variables). A sequence of integers denoting the numbers of mixture components (clusters) for which EBIC is to be calculated. (Non-negative) regularization parameter for glasso. lambda=0 means no regularization. It could be a scalar or a vector. The maximun number of EM iteration. n.lambda The length of the tuning parameter lambda. penalize.diagonal Should diagonal of precision matrice be penalized? Dafault is FALSE. ebic.gamma The Extended Bayesian Information Criteria paremeter, usually ebic.gamma is between 0 and 1. Kmax The maximum number of K. Details Implements the EM algorithm for a parameterized Gaussian graphical mixture models accross K for each of the regularization parameters.

4 4 glasso.mix Value The details of the output components are as follows: res lambda Kmax n.lambda data A list with the following components: loglik A vector value of un-penalized log-likelihood for each value of K. naiveloglik A vector value of naive log-likelihood extracted from glasso for each value of K. n.par Total number of estimated parameters in each the precision matrices corresponding to each value of K at the various regularization parameters. bestlambda.ebic Optimal tuning parameter corresponding to each value of K. besttheta.ebic The penalized precision matrix corresponding to the optimal EBIC for each value of K. bestpi.ebic The mixture proportion corresponding to the optimal EBIC for each value of K. Theta_Pen All the individual penalized precision matrices corresponding to each value of K at the various regularization parameters. Theta_NonPen All the individual non-penalized precision matrices corresponding to each value of K at the various regularization parameters. pi.ind Responsibility matrices ( n K) corresponding to each value of K for the various regularization parameters. It can also be seen as vector of probabilities (w (k) i1,..., w(k) ik ) of individual i belonging to the k classes at penalty λ. pi K- Mixing coefficients for the various regularization parameters. EBIC All EBIC values for each value of K. The sequence of regularization parameters used. The maximun number of mixture components. The length of the tuning parameter lambda. The data matrix. Author(s) Anani Lotsi and Ernst Wit References 1. Anani, Lotsi. and E. Wit (2013). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ). 4. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington.

5 gm.plot 5 See Also summary.glasso.mix, select.gm, summary.select.gm, gm.plot Examples #generate data p<-10 n<-100 ## Number of observations ## Number of nodes L1 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") L2 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") Th1<-L1$sigma ## Precision matrix from graph1 Th2<-L2$sigma ## Precision matrix from graph2 pi1 <- 0.5 z<-rbinom(n,1,pi1) x<-null for (i in 1:n){ if (z[i]==1){ x<-rbind(x,rmvnorm(1,rep(0,p),solve(th1))) else { x<-rbind(x,rmvnorm(1,rep(0,p),solve(th2))) ## Output from the main function ret=glasso.mix(x,k=null,lambda=null,em.iter=5,n.lambda=2, penalize.diagonal=true,ebic.gamma=0.5,kmax=3) gm.plot Graphical plot of the K- Networks Description Plots the K- graphical precision matrices corresponding to the optimum EBIC. Usage gm.plot(output) Arguments output It is a list which is the result of select.gm function. Details It shows the graphical representation (dependencies ) of the p-variables in each cluster. Author(s) Anani Lotsi and Ernst Wit

6 6 select.gm References 1. Anani, Lotsi. and E. Wit (2012). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ). 4. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington. See Also glasso.mix, summary.glasso.mix, select.gm, summary.select.gm Examples #generate data p<-10 n<-100 ## Number of observations ## Number of nodes L1 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") L2 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") Th1<-L1$sigma ## Precision matrix from graph1 Th2<-L2$sigma ## Precision matrix from graph2 pi1 <- 0.5 z<-rbinom(n,1,pi1) x<-null for (i in 1:n){ if (z[i]==1){ x<-rbind(x,rmvnorm(1,rep(0,p),solve(th1))) else { x<-rbind(x,rmvnorm(1,rep(0,p),solve(th2))) ret=glasso.mix(x,k=null,lambda=null,em.iter=5,n.lambda=2, penalize.diagonal=true,ebic.gamma=0.5,kmax=3) output=select.gm(ret) graph=gm.plot(output) select.gm High dimensional sparse Gaussian graphical mixture model selection

7 select.gm 7 Description This function selects the optimal model according to Extended Bayesian Information Criterin (EBIC) for EM- algorithm for parameterized High dimensional sparse Gaussian graphical mixture models. The function etimates the optimun number of mixture components and the regularization parameter lambda. Usage select.gm(ret) Arguments ret It is a list which is the result of glasso.mix algorithm from glasso.mix function. Details Implements the model selection clustering through a model selection based on the EBIC for a parameterized Gaussian graphical mixture model accross K for each of the regularization parameters. Value The details of the output components are as follows: n.cluster Optimal number of clusters or mixture components K. ebic lambda_ebic Th.Pen Th.NPen Pi_ind Pi clusters Pen_LogLik NPen_LogLik lambda All EBIC values. This is a matrix with row equals maximun number of mixtures minus one; (Kmax-1) and column equals to n.lambda. Optimum lambda value based on EBIC. Optimum penalized K precision matrices. Optimum non-penalized K precision matrices. Optimum responsibility matrices ( n K) corresponding to the soft-k-means clustering. Optimum (K) mixture proportions based on EBIC criterion. ( n 1) vector containing the indices of the clusters where the data points are assigned to. The un-penalized loglikelihood corresponding to the optimal EBIC. The naive un-penalized loglikelihood corresponding to the optimal EBIC. The sequence of regularization parameters used. Author(s) Anani Lotsi and Ernst Wit

8 8 summary.glasso.mix References 1. Anani, Lotsi. and E. Wit (2012). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ). 4. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington. See Also glasso.mix, summary.glasso.mix, summary.select.gm, gm.plot Examples #generate data p<-10 n<-100 ## Number of observations ## Number of nodes L1 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") L2 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") Th1<-L1$sigma ## Precision matrix from graph1 Th2<-L2$sigma ## Precision matrix from graph2 pi1 <- 0.5 z<-rbinom(n,1,pi1) x<-null for (i in 1:n){ if (z[i]==1){ x<-rbind(x,rmvnorm(1,rep(0,p),solve(th1))) else { x<-rbind(x,rmvnorm(1,rep(0,p),solve(th2))) ret=glasso.mix(x,k=null,lambda=null,em.iter=5,n.lambda=2, penalize.diagonal=true,ebic.gamma=0.5,kmax=3) output=select.gm(ret) summary.glasso.mix Summary according to function glasso.mix Description Reduced summary of the result according to glasso.mix

9 summary.glasso.mix 9 Usage ## S3 method for class glasso.mix summary(object,...) Arguments Details Value object an object with S3 class glasso.mix. A list of the result from the function glasso.mix function.... system reserved (no specific usage). It gives a reduced summary of output from glasso.mix. The details of the output components are as follows: lambda The sequence of regularization parameters. Pi Mixture proportions for each K across lambda. bestlambda.ebic Optimum lambda value based on EBIC for each K. besttheta.ebic The penalized precision matrix corresponding to the optimal EBIC for each value of K. n.par Author(s) Anani Lotsi and Ernst Wit References Total number of estimated parameters in the precision matrices corresponding to each value of K at the various regularization parameters. 1. Anani, Lotsi. and E. Wit (2012). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ), ( ) 4. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington. See Also glasso.mix, select.gm, summary.select.gm, gm.plot

10 10 summary.select.gm Examples #generate data p<-10 n<-100 ## Number of observations ## Number of nodes L1 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") L2 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") Th1<-L1$sigma ## Precision matrix from graph1 Th2<-L2$sigma ## Precision matrix from graph2 pi1 <- 0.5 z<-rbinom(n,1,pi1) x<-null for (i in 1:n){ if (z[i]==1){ x<-rbind(x,rmvnorm(1,rep(0,p),solve(th1))) else { x<-rbind(x,rmvnorm(1,rep(0,p),solve(th2))) ret=glasso.mix(x,k=null,lambda=null,em.iter=5,n.lambda=2, penalize.diagonal=true,ebic.gamma=0.5,kmax=3) summary.glasso.mix(ret) summary.select.gm Summary according to the model selection function select.gm Description Summary of the result according to select.gm Usage ## S3 method for class select.gm summary(object,...) Arguments object an object with S3 class select.gm. A list of the result from the select.gm function.... system reserved (no specific usage). Details It gives summary of output from select.gm.

11 summary.select.gm 11 Value The details of the output components are as follows: mix_comp Optimal number of clusters mixture components K. lambda_ebic clustering mix_prop Author(s) Anani Lotsi and Ernst Wit References Optimum lambda value based on EBIC. ( n 1) vector containing the indices of the clusters where the data points are assigned to. Optimum (K) mixture proportions. 1. Anani, Lotsi. and E. Wit (2012). High dimensional sparse Gaussian graphical model. (to be published) 2. Witten, Daniela M. and Friedman, Jerome H. and Simon, Noah (2011). New Insights and Faster Computations for the Graphical Lasso. Journal of Computational and Graphical Statistics. 20(4), Pan, Wei and Shen, Xiaotong (2007). Penalized Model-Based Clustering with Application to Variable Selection J. Mach. Learn. Res. 8( ), ( ) 4. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington. See Also glasso.mix, summary.glasso.mix, select.gm, gm.plot Examples p<-10 n<-100 ## Number of observations ## Number of nodes L1 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") L2 = huge.generator(n = n, d = p, vis = FALSE, graph = "random") Th1<-L1$sigma ## Precision matrix from graph1 Th2<-L2$sigma ## Precision matrix from graph2 pi1 <- 0.5 z<-rbinom(n,1,pi1) x<-null for (i in 1:n){ if (z[i]==1){ x<-rbind(x,rmvnorm(1,rep(0,p),solve(th1))) else { x<-rbind(x,rmvnorm(1,rep(0,p),solve(th2)))

12 12 summary.select.gm ret=glasso.mix(x,k=null,lambda=null,em.iter=5,n.lambda=2, penalize.diagonal=true,ebic.gamma=0.5,kmax=3) output=select.gm(ret) summary.select.gm(output)

13 Index Topic package glassomix-package, 2 glasso.mix, 3, 6, 8, 9, 11 glassomix (glassomix-package), 2 glassomix-package, 2 gm.plot, 5, 5, 8, 9, 11 select.gm, 5, 6, 6, 9, 11 summary.glasso.mix, 5, 6, 8, 8, 11 summary.select.gm, 5, 6, 8, 9, 10 13

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

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

More information

Package 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 RAMP. May 25, 2017

Package RAMP. May 25, 2017 Type Package Package RAMP May 25, 2017 Title Regularized Generalized Linear Models with Interaction Effects Version 2.0.1 Date 2017-05-24 Author Yang Feng, Ning Hao and Hao Helen Zhang Maintainer Yang

More information

Package TVsMiss. April 5, 2018

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

More information

Package stochprofml. February 20, 2015

Package stochprofml. February 20, 2015 Type Package Package stochprofml February 20, 2015 Title Stochastic Profiling using Maximum Likelihood Estimation Version 1.2 Date 2014-10-17 Author Maintainer

More information

Package sglasso. May 26, 2018

Package sglasso. May 26, 2018 Type Package Title Lasso Method for RCON(V,E) Models Version 1.2.3 Date 2018-05-26 Author Package sglasso May 26, 2018 Maintainer Depends Matrix, igraph, R (>= 3.2) Imports

More information

Package flexcwm. May 20, 2018

Package flexcwm. May 20, 2018 Type Package Title Flexible Cluster-Weighted Modeling Version 1.8 Date 2018-05-20 Author Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza Package flexcwm May 20, 2018 Description

More information

Package penalizedlda

Package penalizedlda Type Package Package penalizedlda July 11, 2015 Title Penalized Classification using Fisher's Linear Discriminant Version 1.1 Date 2015-07-09 Author Daniela Witten Maintainer Daniela Witten

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

Package clustvarsel. April 9, 2018

Package clustvarsel. April 9, 2018 Version 2.3.2 Date 2018-04-09 Package clustvarsel April 9, 2018 Title Variable Selection for Gaussian Model-Based Clustering Description Variable selection for Gaussian model-based clustering as implemented

More information

Expectation Maximization (EM) and Gaussian Mixture Models

Expectation Maximization (EM) and Gaussian Mixture Models Expectation Maximization (EM) and Gaussian Mixture Models Reference: The Elements of Statistical Learning, by T. Hastie, R. Tibshirani, J. Friedman, Springer 1 2 3 4 5 6 7 8 Unsupervised Learning Motivation

More information

Package flam. April 6, 2018

Package flam. April 6, 2018 Type Package Package flam April 6, 2018 Title Fits Piecewise Constant Models with Data-Adaptive Knots Version 3.2 Date 2018-04-05 Author Ashley Petersen Maintainer Ashley Petersen

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

Package cwm. R topics documented: February 19, 2015

Package cwm. R topics documented: February 19, 2015 Package cwm February 19, 2015 Type Package Title Cluster Weighted Models by EM algorithm Version 0.0.3 Date 2013-03-26 Author Giorgio Spedicato, Simona C. Minotti Depends R (>= 2.14), MASS Imports methods,

More information

Package clusternomics

Package clusternomics Type Package Package clusternomics March 14, 2017 Title Integrative Clustering for Heterogeneous Biomedical Datasets Version 0.1.1 Author Evelina Gabasova Maintainer Evelina Gabasova

More information

Package FMsmsnReg. March 30, 2016

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

More information

Package gibbs.met. February 19, 2015

Package gibbs.met. February 19, 2015 Version 1.1-3 Title Naive Gibbs Sampling with Metropolis Steps Author Longhai Li Package gibbs.met February 19, 2015 Maintainer Longhai Li Depends R (>=

More information

Package GGMselect. February 1, 2018

Package GGMselect. February 1, 2018 Type Package Title Gaussian Graphs Models Selection Version 0.1-12.1 Date 2017-04-06 Package GGMselect February 1, 2018 Author Annie Bouvier, Christophe Giraud, Sylvie Huet, Verzelen N. Maintainer ORPHANED

More information

Package Funclustering

Package Funclustering Type Package Title A package for functional data clustering. Version 1.0.1 Date 2013-12-20 Package Funclustering February 19, 2015 Author Mohamed Soueidatt , *.

More information

Package flsa. February 19, 2015

Package flsa. February 19, 2015 Type Package Package flsa February 19, 2015 Title Path algorithm for the general Fused Lasso Signal Approximator Version 1.05 Date 2013-03-23 Author Holger Hoefling Maintainer Holger Hoefling

More information

Package LINselect. June 9, 2018

Package LINselect. June 9, 2018 Title Selection of Linear Estimators Version 1.1 Date 2017-04-20 Package LINselect June 9, 2018 Author Yannick Baraud, Christophe Giraud, Sylvie Huet Maintainer ORPHANED Description Estimate the mean of

More information

Package Rambo. February 19, 2015

Package Rambo. February 19, 2015 Package Rambo February 19, 2015 Type Package Title The Random Subgraph Model Version 1.1 Date 2013-11-13 Author Charles Bouveyron, Yacine Jernite, Pierre Latouche, Laetitia Nouedoui Maintainer Pierre Latouche

More information

Package mrm. December 27, 2016

Package mrm. December 27, 2016 Type Package Package mrm December 27, 2016 Title An R Package for Conditional Maximum Likelihood Estimation in Mixed Rasch Models Version 1.1.6 Date 2016-12-23 Author David Preinerstorfer Maintainer David

More information

Package sparsenetgls

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

More information

Package manet. September 19, 2017

Package manet. September 19, 2017 Package manet September 19, 2017 Title Multiple Allocation Model for Actor-Event Networks Version 1.0 Mixture model with overlapping clusters for binary actor-event data. Parameters are estimated in a

More information

I How does the formulation (5) serve the purpose of the composite parameterization

I How does the formulation (5) serve the purpose of the composite parameterization Supplemental Material to Identifying Alzheimer s Disease-Related Brain Regions from Multi-Modality Neuroimaging Data using Sparse Composite Linear Discrimination Analysis I How does the formulation (5)

More information

Package RCA. R topics documented: February 29, 2016

Package RCA. R topics documented: February 29, 2016 Type Package Title Relational Class Analysis Version 2.0 Date 2016-02-25 Author Amir Goldberg, Sarah K. Stein Package RCA February 29, 2016 Maintainer Amir Goldberg Depends igraph,

More information

Package glinternet. June 15, 2018

Package glinternet. June 15, 2018 Type Package Package glinternet June 15, 2018 Title Learning Interactions via Hierarchical Group-Lasso Regularization Version 1.0.8 Date 2018-06-20 Author Michael Lim, Trevor Hastie Maintainer Michael

More information

Package PUlasso. April 7, 2018

Package PUlasso. April 7, 2018 Type Package Package PUlasso April 7, 2018 Title High-Dimensional Variable Selection with Presence-Only Data Version 3.1 Date 2018-4-4 Efficient algorithm for solving PU (Positive and Unlabelled) problem

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

Package TipDatingBeast Encoding UTF-8 Type Package Package TipDatingBeast March 29, 2018 Title Using Tip Dates with Phylogenetic Trees in BEAST (Software for Phylogenetic Analysis) Version 1.0-8 Date 2018-03-28 Author Adrien

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 SoftClustering

Package SoftClustering Title Soft Clustering Algorithms Package SoftClustering February 19, 2015 It contains soft clustering algorithms, in particular approaches derived from rough set theory: Lingras & West original rough k-means,

More information

Package semisup. March 10, Version Title Semi-Supervised Mixture Model

Package semisup. March 10, Version Title Semi-Supervised Mixture Model Version 1.7.1 Title Semi-Supervised Mixture Model Package semisup March 10, 2019 Description Useful for detecting SNPs with interactive effects on a quantitative trait. This R packages moves away from

More information

Package EBglmnet. January 30, 2016

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

More information

Package CoClust. December 17, 2017

Package CoClust. December 17, 2017 Title Copula Based Cluster Analysis Date 2017-12-15 Version 0.3-2 Package CoClust December 17, 2017 Author Francesca Marta Lilja Di Lascio, Simone Giannerini Depends R (>= 2.15.1), methods, copula Imports

More information

Bioimage Informatics

Bioimage Informatics Bioimage Informatics Lecture 14, Spring 2012 Bioimage Data Analysis (IV) Image Segmentation (part 3) Lecture 14 March 07, 2012 1 Outline Review: intensity thresholding based image segmentation Morphological

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 ordinalnet. December 5, 2017

Package ordinalnet. December 5, 2017 Type Package Title Penalized Ordinal Regression Version 2.4 Package ordinalnet December 5, 2017 Fits ordinal regression models with elastic net penalty. Supported model families include cumulative probability,

More information

Package msda. February 20, 2015

Package msda. February 20, 2015 Title Multi-Class Sparse Discriminant Analysis Version 1.0.2 Date 2014-09-26 Package msda February 20, 2015 Author Maintainer Yi Yang Depends Matri, MASS Efficient procedures for computing

More information

Package inca. February 13, 2018

Package inca. February 13, 2018 Type Package Title Integer Calibration Version 0.0.3 Date 2018-02-09 Package inca February 13, 2018 Author Luca Sartore and Kelly Toppin Maintainer

More information

Package bisect. April 16, 2018

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

More information

Package MixSim. April 29, 2017

Package MixSim. April 29, 2017 Version 1.1-3 Date 2017-04-22 Package MixSim April 29, 2017 Title Simulating Data to Study Performance of Clustering Algorithms Depends R (>= 3.0.0), MASS Enhances mclust, cluster LazyLoad yes LazyData

More information

Package RidgeClust. January 18, 2011

Package RidgeClust. January 18, 2011 Package RidgeClust January 18, 2011 Type Package Title A clustering algorithm based on the package Mclust and a merging approach. See?ridgeline.clust Version 1.0 Date 2010-12-17 Author Grigory Alexandrovich

More information

Package assortnet. January 18, 2016

Package assortnet. January 18, 2016 Type Package Package assortnet January 18, 2016 Title Calculate the Assortativity Coefficient of Weighted and Binary Networks Version 0.12 Date 2016-01-18 Author Damien Farine Maintainer

More information

Clustering K-means. Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, Carlos Guestrin

Clustering K-means. Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, Carlos Guestrin Clustering K-means Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, 2014 Carlos Guestrin 2005-2014 1 Clustering images Set of Images [Goldberger et al.] Carlos Guestrin 2005-2014

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 SAENET. June 4, 2015

Package SAENET. June 4, 2015 Type Package Package SAENET June 4, 2015 Title A Stacked Autoencoder Implementation with Interface to 'neuralnet' Version 1.1 Date 2015-06-04 An implementation of a stacked sparse autoencoder for dimension

More information

Package svmpath. R topics documented: August 30, Title The SVM Path Algorithm Date Version Author Trevor Hastie

Package svmpath. R topics documented: August 30, Title The SVM Path Algorithm Date Version Author Trevor Hastie Title The SVM Path Algorithm Date 2016-08-29 Version 0.955 Author Package svmpath August 30, 2016 Computes the entire regularization path for the two-class svm classifier with essentially the same cost

More information

Package FPDclustering

Package FPDclustering Type Package Title PD-Clustering and Factor PD-Clustering Version 1.2 Date 2017-08-23 Package FPDclustering Author Cristina Tortora and Paul D. McNicholas August 23, 2017 Maintainer Cristina Tortora

More information

The fastclime Package for Linear Programming and Large-Scale Precision Matrix Estimation in R

The fastclime Package for Linear Programming and Large-Scale Precision Matrix Estimation in R Journal of Machine Learning Research (2013) Submitted ; Published The fastclime Package for Linear Programming and Large-Scale Precision Matrix Estimation in R Haotian Pang Han Liu Robert Vanderbei Princeton

More information

Package ssa. July 24, 2016

Package ssa. July 24, 2016 Title Simultaneous Signal Analysis Version 1.2.1 Package ssa July 24, 2016 Procedures for analyzing simultaneous signals, e.g., features that are simultaneously significant in two different studies. Includes

More information

Data Clustering Hierarchical Clustering, Density based clustering Grid based clustering

Data Clustering Hierarchical Clustering, Density based clustering Grid based clustering Data Clustering Hierarchical Clustering, Density based clustering Grid based clustering Team 2 Prof. Anita Wasilewska CSE 634 Data Mining All Sources Used for the Presentation Olson CF. Parallel algorithms

More information

Package GADAG. April 11, 2017

Package GADAG. April 11, 2017 Type Package Package GADAG April 11, 2017 Title A Genetic Algorithm for Learning Directed Acyclic Graphs Version 0.99.0 Date 2017-04-07 Author Magali Champion, Victor Picheny and Matthieu Vignes Maintainer

More information

Package spark. July 21, 2017

Package spark. July 21, 2017 Title 'Sparklines' in the 'R' Terminal Version 2.0.0 Author Gábor Csárdi Package spark July 21, 2017 Maintainer Gábor Csárdi A 'sparkline' is a line chart, without axes and labels.

More information

Package mixphm. July 23, 2015

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

More information

Package LVGP. November 14, 2018

Package LVGP. November 14, 2018 Type Package Package LVGP November 14, 2018 Title Latent Variable Gaussian Process Modeling with Qualitative and Quantitative Input Variables Version 2.1.4 Author Siyu Tao, Yichi Zhang Maintainer Siyu

More information

Package snn. August 23, 2015

Package snn. August 23, 2015 Type Package Title Stabilized Nearest Neighbor Classifier Version 1.1 Date 2015-08-22 Author Package snn August 23, 2015 Maintainer Wei Sun Implement K-nearest neighbor classifier,

More information

Clustering K-means. Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, Carlos Guestrin

Clustering K-means. Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, Carlos Guestrin Clustering K-means Machine Learning CSEP546 Carlos Guestrin University of Washington February 18, 2014 Carlos Guestrin 2005-2014 1 Clustering images Set of Images [Goldberger et al.] Carlos Guestrin 2005-2014

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

Tools and methods for model-based clustering in R

Tools and methods for model-based clustering in R Tools and methods for model-based clustering in R Bettina Grün Rennes 08 Cluster analysis The task of grouping a set of objects such that Objects in the same group are as similar as possible and Objects

More information

Package rankdist. April 8, 2018

Package rankdist. April 8, 2018 Type Package Title Distance Based Ranking Models Version 1.1.3 Date 2018-04-02 Author Zhaozhi Qian Package rankdist April 8, 2018 Maintainer Zhaozhi Qian Implements distance

More information

Package hiernet. March 18, 2018

Package hiernet. March 18, 2018 Title A Lasso for Hierarchical Interactions Version 1.7 Author Jacob Bien and Rob Tibshirani Package hiernet March 18, 2018 Fits sparse interaction models for continuous and binary responses subject to

More information

Package DTRlearn. April 6, 2018

Package DTRlearn. April 6, 2018 Type Package Package DTRlearn April 6, 2018 Title Learning Algorithms for Dynamic Treatment Regimes Version 1.3 Date 2018-4-05 Author Ying Liu, Yuanjia Wang, Donglin Zeng Maintainer Ying Liu

More information

Package subtype. February 20, 2015

Package subtype. February 20, 2015 Type Package Package subtype February 20, 2015 Title Cluster analysis to find molecular subtypes and their assessment Version 1.0 Date 2013-01-14 Author Andrey Alexeyenko, Woojoo Lee and Yudi Pawitan Maintainer

More information

Package manet. August 23, 2018

Package manet. August 23, 2018 Package manet August 23, 2018 Title Multiple Allocation Model for Actor-Event Networks Version 2.0 Mixture model with overlapping clusters for binary actor-event data. Parameters are estimated in a Bayesian

More information

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

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

More information

Package biglars. February 19, 2015

Package biglars. February 19, 2015 Package biglars February 19, 2015 Type Package Title Scalable Least-Angle Regression and Lasso Version 1.0.2 Date Tue Dec 27 15:06:08 PST 2011 Author Mark Seligman, Chris Fraley, Tim Hesterberg Maintainer

More information

Package Bergm. R topics documented: September 25, Type Package

Package Bergm. R topics documented: September 25, Type Package Type Package Package Bergm September 25, 2018 Title Bayesian Exponential Random Graph Models Version 4.2.0 Date 2018-09-25 Author Alberto Caimo [aut, cre], Lampros Bouranis [aut], Robert Krause [aut] Nial

More information

Package gppm. July 5, 2018

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

More information

Package IntNMF. R topics documented: July 19, 2018

Package IntNMF. R topics documented: July 19, 2018 Package IntNMF July 19, 2018 Type Package Title Integrative Clustering of Multiple Genomic Dataset Version 1.2.0 Date 2018-07-17 Author Maintainer Prabhakar Chalise Carries out integrative

More information

Package edrgraphicaltools

Package edrgraphicaltools Type Package Package edrgraphicaltools September 1, 2017 Title Provides Tools for Dimension Reduction Methods Version 2.2 Date 2017-08-29 Author Raphaël Coudret, Benoît Liquet and Jérôme Saracco Maintainer

More information

Package nsprcomp. August 29, 2016

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

More information

A tutorial for blockcluster R package Version 1.01

A tutorial for blockcluster R package Version 1.01 A tutorial for blockcluster R package Version 1.01 Parmeet Singh Bhatia INRIA-Lille, parmeet.bhatia@inria.fr Contents 1 Introduction 1 2 Package details 2 2.1 cocluster function....................................

More information

Package PrivateLR. March 20, 2018

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

More information

Package Numero. November 24, 2018

Package Numero. November 24, 2018 Package Numero November 24, 2018 Type Package Title Statistical Framework to Define Subgroups in Complex Datasets Version 1.1.1 Date 2018-11-21 Author Song Gao [aut], Stefan Mutter [aut], Aaron E. Casey

More information

Package SAM. March 12, 2019

Package SAM. March 12, 2019 Type Package Title Sparse Additive Modelling Version 1.1.1 Date 2019-02-18 Package SAM March 12, 2019 Author Haoming Jiang, Yukun Ma, Xinyu Fei, Tuo Zhao, Xingguo Li, Han Liu, and Kathryn Roeder Maintainer

More information

Package orthogonalsplinebasis

Package orthogonalsplinebasis Type Package Package orthogonalsplinebasis Title Orthogonal B-Spline Basis Functions Version 0.1.6 Date 2015-03-30 Author Andrew Redd Depends methods, stats, graphics March 31, 2015 Maintainer Andrew Redd

More information

Package gibbs.met documentation

Package gibbs.met documentation Version 1.1-2 Package gibbs.met documentation Title Naive Gibbs Sampling with Metropolis Steps Author Longhai Li of March 26, 2008 Maintainer Longhai Li

More information

Package tidylpa. March 28, 2018

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

More information

Package picasso. December 18, 2015

Package picasso. December 18, 2015 Type Package Package picasso December 18, 2015 Title Pathwise Calibrated Sparse Shooting Algorithm Version 0.5.0 Date 2015-12-15 Author Maintainer Xingguo Li Depends R (>= 2.15.0),

More information

Package mixsqp. November 14, 2018

Package mixsqp. November 14, 2018 Encoding UTF-8 Type Package Version 0.1-79 Date 2018-11-05 Package mixsqp November 14, 2018 Title Sequential Quadratic Programming for Fast Maximum-Likelihood Estimation of Mixture Proportions URL https://github.com/stephenslab/mixsqp

More information

Package clustmd. May 8, 2017

Package clustmd. May 8, 2017 Title Model Based Clustering for Mixed Data Version 1.2.1 Package May 8, 2017 Model-based clustering of mixed data (i.e. data which consist of continuous, binary, ordinal or nominal variables) using a

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 fusionclust. September 19, 2017

Package fusionclust. September 19, 2017 Package fusionclust September 19, 2017 Title Clustering and Feature Screening using L1 Fusion Penalty Version 1.0.0 Provides the Big Merge Tracker and COSCI algorithms for convex clustering and feature

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

Package gpr. February 20, 2015 Package gpr February 20, 2015 Version 1.1 Date 2013-08-27 Title A Minimalistic package to apply Gaussian Process in R License GPL-3 Author Maintainer ORPHANED Depends R (>= 2.13) This package provides

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

Package hgam. February 20, 2015 Title High-dimensional Additive Modelling Version 0.1-2 Date 2013-05-13 Package hgam February 20, 2015 Author The students of the `Advanced R Programming Course' Hannah Frick, Ivan Kondofersky, Oliver

More information

Package kernelfactory

Package kernelfactory Package kernelfactory September 29, 2015 Type Package Title Kernel Factory: An Ensemble of Kernel Machines Version 0.3.0 Date 2015-09-29 Imports randomforest, AUC, genalg, kernlab, stats Author Michel

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 DPBBM. September 29, 2016

Package DPBBM. September 29, 2016 Type Package Title Dirichlet Process Beta-Binomial Mixture Version 0.2.5 Date 2016-09-21 Author Lin Zhang Package DPBBM September 29, 2016 Maintainer Lin Zhang Depends R (>= 3.1.0)

More information

Package hsiccca. February 20, 2015

Package hsiccca. February 20, 2015 Package hsiccca February 20, 2015 Type Package Title Canonical Correlation Analysis based on Kernel Independence Measures Version 1.0 Date 2013-03-13 Author Billy Chang Maintainer Billy Chang

More information

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

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

More information

Package 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 PropClust. September 15, 2018

Package PropClust. September 15, 2018 Type Package Title Propensity Clustering and Decomposition Version 1.4-6 Date 2018-09-12 Package PropClust September 15, 2018 Author John Michael O Ranola, Kenneth Lange, Steve Horvath, Peter Langfelder

More information

Package SeleMix. R topics documented: November 22, 2016

Package SeleMix. R topics documented: November 22, 2016 Package SeleMix November 22, 2016 Type Package Title Selective Editing via Mixture Models Version 1.0.1 Date 2016-11-22 Author Ugo Guarnera, Teresa Buglielli Maintainer Teresa Buglielli

More information

Package CVR. March 22, 2017

Package CVR. March 22, 2017 Type Package Title Canonical Variate Regression Version 0.1.1 Date 2017-03-17 Author Chongliang Luo, Kun Chen. Package CVR March 22, 2017 Maintainer Chongliang Luo Perform canonical

More information