Package cepp. R topics documented: December 22, 2014

Size: px
Start display at page:

Download "Package cepp. R topics documented: December 22, 2014"

Transcription

1 Package cepp December 22, 2014 Type Package Title Context Driven Exploratory Projection Pursuit Version 1.0 Date Author Mohit Dayal Maintainer Mohit Dayal Functions and Data to support context epp. Depends R (>= 2.10), trust, randtoolbox Suggests tourr License GPL-3 Repository CRAN Date/Publication :00:21 NeedsCompilation no R topics documented: cepp-package ALPHA bases Colon evaluator geodesic Olive oil measurements penorms pp Index 11 1

2 2 ALPHA cepp-package Context Driven Exploratory Projection Pursuit. Functions and Data for Context-driven Exploratory Projection Pursuit. Package: cepp Type: Package Version: 1.0 Date: License: GPL - 3 Mohit Dayal Maintainer: Mohit Dayal <mohitdayal2000@gmail.com> ALPHA Global variables These variables need to be initialized for some of the methods to work. METHOD ALPHA These global variables are automatically initialized when the package is loaded. The variables METHOD and ALPHA are used by the basis_nearby function and are useful only if you want to optimize the index via simulated annealing. ALPHA can be set to any number in (0,1), with smaller values implying a more localized search. By default set to The METHOD variable controls how a new basis is created from an old one and can be set to either one of the strings "linear" or "geodesic". You should set it to geodesic if your index is rotationally invariant. Default value is geodesic.

3 bases 3 References E.K. Lee, D. Cook, S. Klinke, and T. Lumley. Projection pursuit for exploratory supervised classification. Journal of Computational and Graphical Statistics, 14(4): , 2005 bases Create random bases Generate bases. basis_random(n, d = 2) basis_nearby(current, alpha = ALPHA, method = METHOD) Arguments n d current alpha method The number of rows. The number of columns. The current matrix. How "far" should the new matrix be? How should be new matrix be found? One of linear or geodesic. basis_random returns a new orthonormal matrix of specified dimensions. basis_nearby generates a new orthonormal matrix, hybridizes it with the current matrix and returns it. A matrix of specified dimensions. Taken from the tourr package See Also ALPHA, METHOD

4 4 Colon Colon Gene expression data from Alon et al. (1999) Gene expression data (2000 genes for 62 samples) from the microarray experiments of Colon tissue samples of Alon et al. (1999). data(colon) This data set contains 62 samples with 2000 genes: 40 tumor tissues, coded 2 and 22 normal tissues, coded 1. A list with the following elements: X Y gene.names a (62 x 2000) matrix giving the expression levels of 2000 genes for the 62 Colon tissue samples. Each row corresponds to a patient, each column to a gene. a numeric vector of length 62 giving the type of tissue sample (tumor or normal). a vector containing the names of the 2000 genes for the gene expression matrix X. Source The data are described in Alon et al. (1999) and can be freely downloaded from princeton.edu/oncology/affydata/index.html. References Alon, U. and Barkai, N. and Notterman, D.A. and Gish, K. and Ybarra, S. and Mack, D. and Levine, A.J. (1999). Broad patterns of gene expression revealed by clustering analysis of tumor and normal colon tissues probed by oligonucleotide arrays, Proc. Natl. Acad. Sci. USA,96(12), Examples # how many samples and how many genes? data(colon) dim(colon$x) norm <- Colon$X[Colon$Y == 1,] tumor <- Colon$X[Colon$Y == 2,] gene1 <- pp.2(r=2,n=50,oth=tumor,data=norm) F1 <- basis_random(2000) t1 <- caller(start=f1,index=gene1,n=rep(3,5),bases=5)

5 evaluator 5 evaluator Functions to evaluate spatial quantiles These are objective functions whose minimization yields the spatial quantiles. evaluator.2(samp) evaluator.3(samp) Arguments samp The data for which quantiles are required. Either function returns another function suitable for passing to an optimizer like nlm or trust. A function that should be passed to an optimizer. Mohit Dayal References P. Chaudhuri. On a geometric notion of quantiles for multivariate data. Journal of the American Statistical Association, 91(434): , Examples x <- rnorm(500) dim(x) <- c(250,2) ev <- evaluator.2(x) ##The Spatial Median trust(ev,parinit=c(median(x[1,]),median(x[2,])),u=c(0,0),rinit=0.5,rmax=2e5) ##Quantile for vector (0.2,0.3) trust(ev,parinit=c(median(x[1,]),median(x[2,])),u=c(0.2,0.3),rinit=0.5,rmax=2e5)

6 6 geodesic geodesic Functions for geodesic search These functions are for a geodesic search. search_geodesic(current, alpha = 1, index, max.tries = 5, n = 5) caller(start,index,n,bases) Arguments current, start The starting projection. alpha index max.tries n bases Maximum distance to travel (currently ignored). The projection index. Maximum number of failed attempts before giving up. Number of random steps to take to find best direction. Can be a vector for caller. Total number of bases to find. The function search_geodesic finds only one basis at a time. The caller is a wrapper function that calls search_geodesic bases number of times. search_geodesic returns the basis found. caller returns a list of bases. The list may be shorter than specified if no better bases can be found. The function has been copied as is from the tourr package.

7 Olive oil measurements 7 Olive oil measurements Olive oil samples from Italy This data is from a paper by Forina, Armanino, Lanteri, Tiscornia (1983) Classification of Olive Oils from their Fatty Acid Composition, in Martens and Russwurm (ed) Food Research and Data Anlysis. We thank Prof. Michele Forina, University of Genova, Italy for making this dataset available. region Three super-classes of Italy: North, South and the island of Sardinia area Nine collection areas: three from North, four from South and 2 from Sardinia palmitic, palmitoleic, stearic, oleic, linoleic, linolenic, arachidic, eicosenoic fatty acids percent x 100 data(olive) Format A 572 x 10 numeric array Examples data(olive) head(olive) ##Permutation OlivesT <- as.matrix(olive[,-c(1:2)]) OlivesF <- OlivesT #You should set.seed here so as to "fix" the benchmark OlivesF[, palmitic ] <- OlivesF[sample(572,572), palmitic ] OlivesF[, palmitoleic ] <- OlivesF[sample(572,572), palmitoleic ] OlivesF[, stearic ] <- OlivesF[sample(572,572), stearic ] OlivesF[, oleic ] <- OlivesF[sample(572,572), oleic ] OlivesF[, linoleic ] <- OlivesF[sample(572,572), linoleic ] OlivesF[, linolenic ] <- OlivesF[sample(572,572), linolenic ] OlivesF[, arachidic ] <- OlivesF[sample(572,572), arachidic ] OlivesF[, eicosenoic ] <- OlivesF[sample(572,572), eicosenoic ] ## oil1 <- pp.2(r=2,n=50,oth=olivesf,data=olivest) ##In practice try at least >10 starting values F1 <- basis_random(8) ##Increase iterations to >2000 for useful results o1 <- optim(par=f1, fn=oil1,gr=basis_nearby,method= SANN,control=list(fnscale=-1,maxit=50,trace=6))

8 8 penorms penorms Parallelized functions for different norms These functions compute the L-1, L-2 and L-infinity norms for 2 and 3 dimensional vectors. These functions are parallelized, that is you can pass several vectors at once. penorm21(x, y) penorm2infi(x, y) penorm2(x, y) penorms2(x, y) penorm31(x, y, z) penorm3infi(x, y, z) penorm3(x, y, z) penorms3(x, y, z) Arguments x y z The vector of the first coordinates. The vector of the second coordinates. The vector of the third coordinates. The functions penorm21 and penorm31 return the L-1 norm for 2 and 3 dimensional vectors. The functions penorm2infi and penorm3infi return the L-infinity norm for 2 and 3 dimensional vectors. The functions penorm2 and penorm3 return the squared L-2 norms for 2 and 3 dimensional vectors. The functions penorms2 and penorms3 return the L-2 norms for 2 and 3 dimensional vectors. A vector of norms. Mohit Dayal Examples ##Compute the L-2 norm of vectors (1,3) and (2,5) ##penorms2(c(1,2),c(3,5))

9 pp 9 pp Creates the projection pursuit function. These functions encapsulate everything, that is, the data, the benchmark and the index parameters, needed to compute the projection index. pp.2(r = 1, n, data, oth,given_norm=penorms2) pp.3(r = 1, n, data, oth,given_norm=penorms3) Arguments r n data oth given_norm The radius multiplier. s between 0.5 and 3 seem to work well. Number of Monte-Carlo Evaluations to approximate the integral. s as low as 25 can be used. The data for which structure needs to be found. The benchmark dataset. Determines how the norm of the integrand is computed. By default, set to the L2 norm (penorms2 for 2-D projections and penorms3 for 3-D projections) You may set it any other norm function. Note that even ordered norms are rotationally invariant. pp.2 is for 2-D projection pursuit, while pp.3 is for 3-D projection pursuit. The actual index function, which takes a single matrix argument, and returns the index value for that projection. Mohit Dayal Examples ##Exploring structure in the RANDU data ##Or using the MINSTD generator randu <- as.matrix(randu) setseed(570) w <- congrurand(1200) dim(w) <- c(3,400)

10 10 pp w <- t(w) m <- geodesic a < ranif1 <- pp.2(r=1,n=50,data=randu,oth=w) set.seed(50) F1 <- basis_random(3) o1 <- optim(par=f1,fn=ranif1,gr=basis_nearby,method= SANN,control=list(fnscale=-1,maxit=200,trace=1)) plot(randu %*% o1$par) ##How accurate are the values? ranif1hi <- pp.2(r=1,n=500,data=randu,oth=w) ranif1hi(o1$par)

11 Index Topic datasets Colon, 4 Olive oil measurements, 7 Topic projection pursuit cepp-package, 2 ALPHA, 2, 3 bases, 3 basis_nearby (bases), 3 basis_random (bases), 3 caller (geodesic), 6 cepp (cepp-package), 2 cepp-package, 2 Colon, 4 evaluator, 5 geodesic, 6 METHOD, 3 METHOD (ALPHA), 2 olive (Olive oil measurements), 7 Olive oil measurements, 7 penorm2 (penorms), 8 penorm21 (penorms), 8 penorm2infi (penorms), 8 penorm3 (penorms), 8 penorm31 (penorms), 8 penorm3infi (penorms), 8 penorms, 8 penorms2 (penorms), 8 penorms3 (penorms), 8 pp, 9 search_geodesic (geodesic), 6 11

Visualization for Classification Problems, with Examples Using Support Vector Machines

Visualization for Classification Problems, with Examples Using Support Vector Machines Visualization for Classification Problems, with Examples Using Support Vector Machines Dianne Cook 1, Doina Caragea 2 and Vasant Honavar 2 1 Virtual Reality Applications Center, Department of Statistics,

More information

clusterfly exploring cluster analysis using R and GGobi Hadley Wickham, Iowa State University

clusterfly   exploring cluster analysis using R and GGobi Hadley Wickham, Iowa State University clusterfly exploring cluster analysis using R and GGobi http://had.co.nz/clusterfly Hadley Wickham, Iowa State University Typically, there is somewhat of a divide between statistics and visualisation software.

More information

Gaining Insights into Support Vector Machine Pattern Classifiers Using Projection-Based Tour Methods

Gaining Insights into Support Vector Machine Pattern Classifiers Using Projection-Based Tour Methods Gaining Insights into Support Vector Machine Pattern Classifiers Using Projection-Based Tour Methods Doina Caragea Artificial Intelligence Research Laboratory Department of Computer Science Iowa State

More information

Variable Selection for Consistent Clustering

Variable Selection for Consistent Clustering Variable Selection for Consistent Clustering Ron Yurko Rebecca Nugent Sam Ventura Department of Statistics Carnegie Mellon University Classification Society, 2017 Typical Questions in Cluster Analysis

More information

Visualizing high-dimensional data:

Visualizing high-dimensional data: Visualizing high-dimensional data: Applying graph theory to data visualization Wayne Oldford based on joint work with Catherine Hurley (Maynooth, Ireland) Adrian Waddell (Waterloo, Canada) Challenge p

More information

Mining Quantitative Maximal Hyperclique Patterns: A Summary of Results

Mining Quantitative Maximal Hyperclique Patterns: A Summary of Results Mining Quantitative Maximal Hyperclique Patterns: A Summary of Results Yaochun Huang, Hui Xiong, Weili Wu, and Sam Y. Sung 3 Computer Science Department, University of Texas - Dallas, USA, {yxh03800,wxw0000}@utdallas.edu

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 macorrplot. R topics documented: October 2, Title Visualize artificial correlation in microarray data. Version 1.50.

Package macorrplot. R topics documented: October 2, Title Visualize artificial correlation in microarray data. Version 1.50. Package macorrplot October 2, 2018 Title Visualize artificial correlation in microarray data Version 1.50.0 Author Alexander Ploner Description Graphically displays correlation

More information

Multivariate Analysis (slides 9)

Multivariate Analysis (slides 9) Multivariate Analysis (slides 9) Today we consider k-means clustering. We will address the question of selecting the appropriate number of clusters. Properties and limitations of the algorithm will be

More information

Package RankAggreg. May 15, 2018

Package RankAggreg. May 15, 2018 Type Package Title Weighted Rank Aggregation Version 0.6.5 Date 2018-05-14 Package RankAggreg May 15, 2018 Author Vasyl Pihur , Somnath Datta , Susmita Datta

More information

Package ArrayBin. February 19, 2015

Package ArrayBin. February 19, 2015 Package ArrayBin February 19, 2015 Version 0.2 Date 2013-02-01 Title Binarization of numeric data arrays Author Ed Curry Maintainer Depends R (>= 2.15.0), SAGx Fast adaptive binarization for numeric data

More information

Package clustering.sc.dp

Package clustering.sc.dp Type Package Package clustering.sc.dp May 4, 2015 Title Optimal Distance-Based Clustering for Multidimensional Data with Sequential Constraint Version 1.0 Date 2015-04-28 Author Tibor Szkaliczki [aut,

More information

Package ecp. December 15, 2017

Package ecp. December 15, 2017 Type Package Package ecp December 15, 2017 Title Non-Parametric Multiple Change-Point Analysis of Multivariate Data Version 3.1.0 Date 2017-12-01 Author Nicholas A. James, Wenyu Zhang and David S. Matteson

More information

Package pdfcluster. February 20, 2015

Package pdfcluster. February 20, 2015 Type Package Package pdfcluster February 20, 2015 Title Cluster analysis via nonparametric density estimation Version 1.0-2 Date 2014-04-30 Author Adelchi Azzalini, Giovanna Menardi for the current version;

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 cgh. R topics documented: February 19, 2015

Package cgh. R topics documented: February 19, 2015 Package cgh February 19, 2015 Version 1.0-7.1 Date 2009-11-20 Title Microarray CGH analysis using the Smith-Waterman algorithm Author Tom Price Maintainer Tom Price

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

Gene Expression Based Classification using Iterative Transductive Support Vector Machine

Gene Expression Based Classification using Iterative Transductive Support Vector Machine Gene Expression Based Classification using Iterative Transductive Support Vector Machine Hossein Tajari and Hamid Beigy Abstract Support Vector Machine (SVM) is a powerful and flexible learning machine.

More information

Package rocc. February 20, 2015

Package rocc. February 20, 2015 Package rocc February 20, 2015 Title ROC based classification Version 1.2 Depends ROCR Author Martin Lauss Description Functions for a classification method based on receiver operating characteristics

More information

Package datasets.load

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

More information

Package ccapp. March 7, 2016

Package ccapp. March 7, 2016 Type Package Package ccapp March 7, 2016 Title (Robust) Canonical Correlation Analysis via Projection Pursuit Version 0.3.2 Date 2016-03-07 Depends R (>= 3.2.0), parallel, pcapp (>= 1.8-1), robustbase

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 batchmeans. R topics documented: July 4, Version Date

Package batchmeans. R topics documented: July 4, Version Date Package batchmeans July 4, 2016 Version 1.0-3 Date 2016-07-03 Title Consistent Batch Means Estimation of Monte Carlo Standard Errors Author Murali Haran and John Hughes

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

Feature Selection for SVMs

Feature Selection for SVMs Feature Selection for SVMs J. Weston, S. Mukherjee, O. Chapelle, M. Pontil T. Poggio, V. Vapnik Barnhill BioInformatics.com, Savannah, Georgia, USA. CBCL MIT, Cambridge, Massachusetts, USA. AT&T Research

More information

Package clusterrepro

Package clusterrepro Version 0.9 Date 2018-10-10 Package clusterrepro Title Reproducibility of Gene Expression Clusters October 15, 2018 Author Amy Kapp and Rob Tibshirani Maintainer

More information

Package CONOR. August 29, 2013

Package CONOR. August 29, 2013 Package CONOR August 29, 2013 Type Package Title CONOR Version 1.0.2 Date 2010-11-06 Author Jason Rudy and Faramarz Valafar Maintainer Jason Rudy Description CrOss-platform NOrmalization

More information

SVM Classification in -Arrays

SVM Classification in -Arrays SVM Classification in -Arrays SVM classification and validation of cancer tissue samples using microarray expression data Furey et al, 2000 Special Topics in Bioinformatics, SS10 A. Regl, 7055213 What

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 ms.sev. R topics documented: December 21, Type Package

Package ms.sev. R topics documented: December 21, Type Package Type Package Package ms.sev December 21, 2016 Title Package for Calculation of ARMSS, Local MSSS and Global MSSS Version 1.0.4 Date 2016-12-20 Author Maintainer Helga Westerlind

More information

Package CuCubes. December 9, 2016

Package CuCubes. December 9, 2016 Package CuCubes December 9, 2016 Title MultiDimensional Feature Selection (MDFS) Version 0.1.0 URL https://featureselector.uco.uwb.edu.pl/pub/cucubes/ Functions for MultiDimensional Feature Selection (MDFS):

More information

Package TilePlot. February 15, 2013

Package TilePlot. February 15, 2013 Package TilePlot February 15, 2013 Type Package Title Characterization of functional genes in complex microbial communities using tiling DNA microarrays Version 1.3 Date 2011-05-04 Author Ian Marshall

More information

Package WARN. R topics documented: December 8, Type Package

Package WARN. R topics documented: December 8, Type Package Type Package Package WARN December 8, 2017 Title Weaning Age Reconstruction with Nitrogen Isotope Analysis Version 1.2-3 Date 2017-12-08 Author Takumi Tsutaya Maintainer Takumi Tsutaya

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 tourr. August 29, 2013

Package tourr. August 29, 2013 Package tourr August 29, 2013 Type Package Title Implement tour methods in pure R code Version 0.5.2 Author Dianne Cook , Hadley Wickham Maintainer Hadley Wickham

More information

Package lhs. R topics documented: January 4, 2018

Package lhs. R topics documented: January 4, 2018 Package lhs January 4, 2018 Version 0.16 Date 2017-12-23 Title Latin Hypercube Samples Author [aut, cre] Maintainer Depends R (>= 3.3.0) Suggests RUnit Provides a number of methods

More information

Package ICSShiny. April 1, 2018

Package ICSShiny. April 1, 2018 Package ICSShiny April 1, 2018 Type Package Title ICS via a Shiny Application Version 0.5 Date 2018-04-01 Author Aurore Archimbaud, Joris May, Klaus Nordhausen, Anne Ruiz-Gazen Maintainer Klaus Nordhausen

More information

Package MPCI. October 25, 2015

Package MPCI. October 25, 2015 Package MPCI October 25, 2015 Type Package Title Multivariate Process Capability Indices (MPCI) Version 1.0.7 Date 2015-10-23 Depends R (>= 3.1.0), graphics, stats, utils Author Edgar Santos-Fernandez,

More information

Package r.jive. R topics documented: April 12, Type Package

Package r.jive. R topics documented: April 12, Type Package Type Package Package r.jive April 12, 2017 Title Perform JIVE Decomposition for Multi-Source Data Version 2.1 Date 2017-04-11 Author Michael J. O'Connell and Eric F. Lock Maintainer Michael J. O'Connell

More information

Package muscle. R topics documented: March 7, Type Package

Package muscle. R topics documented: March 7, Type Package Type Package Package muscle March 7, 2019 Title Multiple Sequence Alignment with MUSCLE Version 3.24.0 Date 2012-10-05 Author Algorithm by Robert C. Edgar. R port by Alex T. Kalinka. Maintainer Alex T.

More information

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

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

More information

The plsgenomics Package

The plsgenomics Package The plsgenomics Package February 15, 2007 Version 1.2-2 Date 2007-02-12 Title PLS analyses for genomics Author Anne-Laure Boulesteix , Sophie Lambert-Lacroix ,

More information

Package comphclust. February 15, 2013

Package comphclust. February 15, 2013 Package comphclust February 15, 2013 Version 1.0-1 Date 2010-02-27 Title Complementary Hierarchical Clustering Author Gen Nowak and Robert Tibshirani Maintainer Gen Nowak Description

More information

Package RaPKod. February 5, 2018

Package RaPKod. February 5, 2018 Package RaPKod February 5, 2018 Type Package Title Random Projection Kernel Outlier Detector Version 0.9 Date 2018-01-30 Author Jeremie Kellner Maintainer Jeremie Kellner

More information

Package gsscopu. R topics documented: July 2, Version Date

Package gsscopu. R topics documented: July 2, Version Date Package gsscopu July 2, 2015 Version 0.9-3 Date 2014-08-24 Title Copula Density and 2-D Hazard Estimation using Smoothing Splines Author Chong Gu Maintainer Chong Gu

More information

Package comphclust. May 4, 2017

Package comphclust. May 4, 2017 Version 1.0-3 Date 2017-05-04 Title Complementary Hierarchical Clustering Imports graphics, stats Package comphclust May 4, 2017 Description Performs the complementary hierarchical clustering procedure

More information

Package GLDreg. February 28, 2017

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

More information

Clustering Techniques

Clustering Techniques Clustering Techniques Bioinformatics: Issues and Algorithms CSE 308-408 Fall 2007 Lecture 16 Lopresti Fall 2007 Lecture 16-1 - Administrative notes Your final project / paper proposal is due on Friday,

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

Plot and Look! Trust your Data more than your Models

Plot and Look! Trust your Data more than your Models Titel Author Event, Date Affiliation Plot and Look! Trust your Data more than your Models martin@theusrus.de Telefónica O2 Germany Augsburg University 2 Outline Why use Graphics for Data Analysis? Foundations

More information

Package mmpa. March 22, 2017

Package mmpa. March 22, 2017 Type Package Package mmpa March 22, 2017 Title Implementation of Marker-Assisted Mini-Pooling with Algorithm Version 0.1.0 Author ``Tao Liu [aut, cre]'' ``Yizhen Xu

More information

Enhanced Hierarchical Clustering for Genome Databases

Enhanced Hierarchical Clustering for Genome Databases www.ijcsi.org 45 Enhanced Hierarchical Clustering for Genome Databases Sadiq Hussain 1, Prof. Gopal Hazarika 1 Dibrugarh University, Dibrugarh, Assam, India Dibrugarh University, Dibrugarh, Assam, India

More information

Automated Microarray Classification Based on P-SVM Gene Selection

Automated Microarray Classification Based on P-SVM Gene Selection Automated Microarray Classification Based on P-SVM Gene Selection Johannes Mohr 1,2,, Sambu Seo 1, and Klaus Obermayer 1 1 Berlin Institute of Technology Department of Electrical Engineering and Computer

More information

Package svapls. February 20, 2015

Package svapls. February 20, 2015 Package svapls February 20, 2015 Type Package Title Surrogate variable analysis using partial least squares in a gene expression study. Version 1.4 Date 2013-09-19 Author Sutirtha Chakraborty, Somnath

More information

Package dkdna. June 1, Description Compute diffusion kernels on DNA polymorphisms, including SNP and bi-allelic genotypes.

Package dkdna. June 1, Description Compute diffusion kernels on DNA polymorphisms, including SNP and bi-allelic genotypes. Package dkdna June 1, 2015 Type Package Title Diffusion Kernels on a Set of Genotypes Version 0.1.1 Date 2015-05-31 Author Gota Morota and Masanori Koyama Maintainer Gota Morota Compute

More information

Package mcmcse. February 15, 2013

Package mcmcse. February 15, 2013 Package mcmcse February 15, 2013 Version 1.0-1 Date 2012 Title Monte Carlo Standard Errors for MCMC Author James M. Flegal and John Hughes Maintainer James M. Flegal

More information

Package TilePlot. April 8, 2011

Package TilePlot. April 8, 2011 Type Package Package TilePlot April 8, 2011 Title This package analyzes functional gene tiling DNA microarrays for studying complex microbial communities. Version 1.1 Date 2011-04-07 Author Ian Marshall

More information

Normalization: Bioconductor s marray package

Normalization: Bioconductor s marray package Normalization: Bioconductor s marray package Yee Hwa Yang 1 and Sandrine Dudoit 2 October 30, 2017 1. Department of edicine, University of California, San Francisco, jean@biostat.berkeley.edu 2. Division

More information

Package PPtreeViz. R topics documented: February 14, 2018

Package PPtreeViz. R topics documented: February 14, 2018 Package PPtreeViz February 14, 2018 Title Projection Pursuit Classification Tree Visualization Tools for exploring projection pursuit classification tree using various projection pursuit indexes. Version

More information

Package binmto. February 19, 2015

Package binmto. February 19, 2015 Type Package Package binmto February 19, 2015 Title Asymptotic simultaneous confidence intervals for many-to-one comparisons of proportions Version 0.0-6 Date 2013-09-30 Author Maintainer

More information

Package GFD. January 4, 2018

Package GFD. January 4, 2018 Type Package Title Tests for General Factorial Designs Version 0.2.5 Date 2018-01-04 Package GFD January 4, 2018 Author Sarah Friedrich, Frank Konietschke, Markus Pauly Maintainer Sarah Friedrich

More information

Package CatEncoders. March 8, 2017

Package CatEncoders. March 8, 2017 Type Package Title Encoders for Categorical Variables Version 0.1.1 Author nl zhang Package CatEncoders Maintainer nl zhang March 8, 2017 Contains some commonly used categorical

More information

Package PPtree. February 19, Index 10. Projection Pursuit for Supervised Classification

Package PPtree. February 19, Index 10. Projection Pursuit for Supervised Classification Version 2.3.0 Date 2014-05-08 Title Projection pursuit classification tree Author Eun-Kyung Lee, Yoondong Lee Package PPtree February 19, 2015 Maintainer Eun-Kyung Lee Imports MASS

More information

Exploratory data analysis for microarrays

Exploratory data analysis for microarrays Exploratory data analysis for microarrays Jörg Rahnenführer Computational Biology and Applied Algorithmics Max Planck Institute for Informatics D-66123 Saarbrücken Germany NGFN - Courses in Practical DNA

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

Package GenSA. R topics documented: January 17, Type Package Title Generalized Simulated Annealing Version 1.1.

Package GenSA. R topics documented: January 17, Type Package Title Generalized Simulated Annealing Version 1.1. Type Package Title Generalized Simulated Annealing Version 1.1.7 Date 2018-01-15 Package GenSA January 17, 2018 Author Sylvain Gubian, Yang Xiang, Brian Suomela, Julia Hoeng, PMP SA. Maintainer Sylvain

More information

Package RSKC. R topics documented: August 28, Type Package Title Robust Sparse K-Means Version Date Author Yumi Kondo

Package RSKC. R topics documented: August 28, Type Package Title Robust Sparse K-Means Version Date Author Yumi Kondo Type Package Title Robust Sparse K-Means Version 2.4.2 Date 2016-08-11 Author Yumi Kondo Package RSKC August 28, 2016 Maintainer Yumi Kondo Description This RSKC package contains

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 nonlinearicp

Package nonlinearicp Package nonlinearicp July 31, 2017 Type Package Title Invariant Causal Prediction for Nonlinear Models Version 0.1.2.1 Date 2017-07-31 Author Christina Heinze- Deml , Jonas

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 SAMUR. March 27, 2015

Package SAMUR. March 27, 2015 Type Package Package SAMUR March 27, 2015 Title Stochastic Augmentation of Matched Data Using Restriction Methods Version 0.6 Date 2015-03-26 Author Mansour T.A. Sharabiani, Alireza S. Mahani Maintainer

More information

Available online at ScienceDirect. Procedia Computer Science 98 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 98 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 98 (016 ) 548 553 The 3rd International Symposium on Emerging Information, Communication and Networks (EICN 016) Finding

More information

Package TWIX. R topics documented: February 15, Title Trees WIth extra splits. Date Version

Package TWIX. R topics documented: February 15, Title Trees WIth extra splits. Date Version Package TWIX February 15, 2013 Title Trees WIth extra splits Date 28.03.2012 Version 0.2.19 Author Sergej Potapov , Martin Theus Maintainer Sergej Potapov

More information

THE EFFECT OF NOISY BOOTSTRAPPING ON THE ROBUSTNESS OF SUPERVISED CLASSIFICATION OF GENE EXPRESSION DATA

THE EFFECT OF NOISY BOOTSTRAPPING ON THE ROBUSTNESS OF SUPERVISED CLASSIFICATION OF GENE EXPRESSION DATA THE EFFECT OF NOISY BOOTSTRAPPING ON THE ROBUSTNESS OF SUPERVISED CLASSIFICATION OF GENE EXPRESSION DATA Niv Efron and Nathan Intrator School of Computer Science, Tel-Aviv University, Ramat-Aviv 69978,

More information

SVM-Based Local Search for Gene Selection and Classification of Microarray Data

SVM-Based Local Search for Gene Selection and Classification of Microarray Data SVM-Based Local Search for Gene Selection and Classification of Microarray Data Jose Crispin Hernandez Hernandez, Béatrice Duval, and Jin-Kao Hao LERIA, Université d Angers, 2 Boulevard Lavoisier, 49045

More information

Package RobustRankAggreg

Package RobustRankAggreg Type Package Package RobustRankAggreg Title Methods for robust rank aggregation Version 1.1 Date 2010-11-14 Author Raivo Kolde, Sven Laur Maintainer February 19, 2015 Methods for aggregating ranked lists,

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

Package randomglm. R topics documented: February 20, 2015

Package randomglm. R topics documented: February 20, 2015 Package randomglm February 20, 2015 Version 1.02-1 Date 2013-01-28 Title Random General Linear Model Prediction Author Lin Song, Peter Langfelder Maintainer Peter Langfelder

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

Resampling Method for Unsupervised Estimation of Cluster Validity

Resampling Method for Unsupervised Estimation of Cluster Validity LETTER Communicated by Joachim Buhmann Resampling Method for Unsupervised Estimation of Cluster Validity Erel Levine Eytan Domany Department of Physics of Complex Systems, Weizmann Institute of Science,

More information

Package complmrob. October 18, 2015

Package complmrob. October 18, 2015 Type Package Package complmrob October 18, 2015 Title Robust Linear Regression with Compositional Data as Covariates Version 0.6.1 Date 2015-10-17 Author David Kepplinger Maintainer

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 metaheur. June 30, 2016

Package metaheur. June 30, 2016 Type Package Package metaheur June 30, 2016 Title Metaheuristic Optimization Framework for Preprocessing Combinations Version 0.2.0 Date 2016-6-30 Author Markus Vattulainen Maintainer Markus Vattulainen

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 FastKNN. February 19, 2015

Package FastKNN. February 19, 2015 Pacage FastKNN February 19, 2015 Type Pacage Title Fast -Nearest Neighbors Version 0.0.1 Date 2015-02-11 Author Gaston Besanson Maintainer Gaston Besanson Compute labels for a test

More information

Package restlos. June 18, 2013

Package restlos. June 18, 2013 Package restlos June 18, 2013 Type Package Title Robust estimation of location and scatter Version 0.1-2 Date 2013-06-18 Author Steffen Liebscher and Thomas Kirschstein Maintainer Steffen Liebscher

More information

Package MultiOrd. May 21, 2016

Package MultiOrd. May 21, 2016 Type Package Title Generation of Multivariate Ordinal Variates Version 2.2 Date 2016-05-20 Author Anup Amatya and Hakan Demirtas Maintainer Anup Amatya Depends mvtnorm, corpcor, Matrix,

More information

Package feature. R topics documented: July 8, Version Date 2013/07/08

Package feature. R topics documented: July 8, Version Date 2013/07/08 Package feature July 8, 2013 Version 1.2.9 Date 2013/07/08 Title Feature significance for multivariate kernel density estimation Author Tarn Duong & Matt Wand

More information

Package madsim. December 7, 2016

Package madsim. December 7, 2016 Type Package Package madsim December 7, 2016 Title A Flexible Microarray Data Simulation Model Version 1.2.1 Date 2016-12-07 Author Doulaye Dembele Maintainer Doulaye Dembele Description

More information

Package feature. R topics documented: October 26, Version Date

Package feature. R topics documented: October 26, Version Date Version 1.2.13 Date 2015-10-26 Package feature October 26, 2015 Title Local Inferential Feature Significance for Multivariate Kernel Density Estimation Author Tarn Duong & Matt Wand

More information

Package isopam. February 20, 2015

Package isopam. February 20, 2015 Package isopam February 20, 2015 Type Package Title Isopam (Clustering) Version 0.9-13 Date 2014-12-08 Author Sebastian Schmidtlein Maintainer Sebastian Schmidtlein Depends vegan,

More information

A Discernibility-Based Approach to Feature Selection for Microarray Data

A Discernibility-Based Approach to Feature Selection for Microarray Data A Discernibility-Based Approach to Feature Selection for Microarray Data Zacharias Voulgaris and George D. Magoulas, Member, IEEE Abstract Feature selection has been used widely for a variety of data,

More information

Package mcemglm. November 29, 2015

Package mcemglm. November 29, 2015 Type Package Package mcemglm November 29, 2015 Title Maximum Likelihood Estimation for Generalized Linear Mixed Models Version 1.1 Date 2015-11-28 Author Felipe Acosta Archila Maintainer Maximum likelihood

More information

Package superbiclust

Package superbiclust Type Package Package superbiclust February 20, 2015 Title Generating Robust Biclusters from a Bicluster Set (Ensemble Biclustering) Version 1.1 Date 2012-08-23 Author Maintainer

More information

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

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

More information

Package fractalrock. February 19, 2015

Package fractalrock. February 19, 2015 Type Package Package fractalrock February 19, 2015 Title Generate fractal time series with non-normal returns distribution Version 1.1.0 Date 2013-02-04 Author Brian Lee Yung Rowe Maintainer Brian Lee

More information

Dimension reduction : PCA and Clustering

Dimension reduction : PCA and Clustering Dimension reduction : PCA and Clustering By Hanne Jarmer Slides by Christopher Workman Center for Biological Sequence Analysis DTU The DNA Array Analysis Pipeline Array design Probe design Question Experimental

More information

Package lga. R topics documented: February 20, 2015

Package lga. R topics documented: February 20, 2015 Version 1.1-1 Date 2008-06-15 Title Tools for linear grouping analysis (LGA) Author Justin Harrington Maintainer ORPHANED Depends R (>= 2.2.1) Imports boot, lattice Suggests snow, MASS, maps Package lga

More information

Package libstabler. June 1, 2017

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

More information

Package conclust. August 15, 2016

Package conclust. August 15, 2016 Type Package Title Pairwise Constraints Clustering Version 1.1 Date 2016-08-15 Author Tran Khanh Hiep, Nguyen Minh Duc Package conclust August 15, 2016 Maintainer Tran Khanh Hiep

More information