Package MVPARTwrap. February 15, 2013

Size: px
Start display at page:

Download "Package MVPARTwrap. February 15, 2013"

Transcription

1 Package MVPARTwrap February 15, 2013 Version Date Title MVPARTwrap: Additional functionnalities for package mvpart. Author Marie-Helene Ouellette with contributions from Pierre Legendre Maintainer Marie-Helene Ouellette Depends Hmisc, mvpart, labdsv, vegan, fbasics, ade4 The main function of this package, MRT, provides to the following information : the proper cluster membership allocation in the tree, the discriminant species for each cluster, the tree nodes at the proper level of R2 (1-relative error), the total species variance partitionned by species, by the tree, and by the splits of the tree, plus a different graphic representation of the final model in the form of a tree. Moreover, the CascadeMRT function allows a cascade MRT analysis and the CasMRTR2 function allows to illustrate the (unadjusted) variation explained by each wave/drops. Last but not least, the R2aGDF function permits the calculation of an adjusted R^2 for an MRT model. License GPL (>= 2) URL Repository CRAN Date/Publication :52:41 NeedsCompilation no 1

2 2 CascadeMRT R topics documented: CascadeMRT CasMRTR code.tree mat_labels_fct MRT ORDER_NODES plot.mrt plot_tree R2aGDF summary.mrt svaluecol Index 19 CascadeMRT Cascade of Multivariate Regression Trees Analysis Function CascadeMRT performs a cascade multivariate regression tree analysis using mvpart as a basic function to persue the multivariate tree analyses. The first model is at the top of the cascade and is called the first drop. All models built on the leafs of the first drop are called subsequent drops and consist the second wave. See Ouellette, Legendre & Borcard (accepted) for further informations and details. CascadeMRT(Y, VSG, VA, xv1= min, xvsub= min, minbucket1=5, minbucketsub=2, cp1=0.1, cpsub=0.01,...) Y VSG VA xv1 xvsub minbucket1 minbucketsub cp1 cpsub Response matrix Explanatory variables used for second wave Explanatory variables used for first wave xv argument for the first wave xv argument for second wave minbucket argument for the first wave minbucket argument for second wave cp argument for the first wave cp argument for second wave... further arguments given to mvpart. See rpart.control and mvpart for further details. These controls will be used for both the first wave and second wave of models.

3 CascadeMRT 3 Details Value cp1 and cpsub arguments are used to specify the complexity parameter of each wave (cp1 for the principal, and cpsub for the subsequent wave). The complexity parameter of an MRT model is the minimum contribution to the R 2 of the tree for a split to be considered. As the main explanatory set is set to explain the largest response composition variation, the complexity parameter cp1 could be set to be higher than the usual 0.01 value (by default 0.1). An object of class CascadeMRT, basically a list including the following elements drops part1 where1 Y List of mvpart models built, the first drop follow by the subsequent drops given in the order of where1. Unique leaf numbers of the first drop Partition membership of the first drop Original response matrix. Useful for use of CasMRTR2 function. References Dea th, G Multivariate regression tree : a new technique for modeling species-environment relationships. Ecology 83: Ouellette, M.-H. & P. Legendre. An adjusted R 2 statistic for multivariate regression tree analysis. Manuscript. Ouellette, M.-H., P. Legendre and D. Borcard Cascade Multivariate Regression Tree: a novel approach for modelling nested explanatory sets. Methods in Ecology & Evolution 3: See Also mvpart,casmrtr2 Examples # Initialisation require(vegan) require(mvpart) require(mvpartwrap) require(ade4) ### -- Doubs example --- ### # # # Note that we modify the data found in ade4 to match the data # set provided with Numerical Ecology in R (Borcard et al 2011), # the data set used in the paper Ouellette, Legendre & Borcard # (2012). data(doubs)

4 4 CasMRTR2 # Data importation # spe<-doubs$fish envmod<-doubs$env envmod[,1]<-envmod[,1]/10 envmod[7,1]<-36.8 envmod[,3]<-round((exp(envmod[,3])-1)/10,1) envmod[,4]<-envmod[,4]/100 envmod[,5]<-envmod[,5]/10 envmod[,7]<-envmod[,7]/100 envmod[,8]<-envmod[,8]/100 envmod[,9]<-envmod[,9]/100 envmod[,10]<-envmod[,10]/10 envmod[,11]<-envmod[,11]/10 envmod_nodas<-envmod[,-1] spe.hel <- decostand(spe, "hellinger") POISSON<-CascadeMRT(Y=spe.hel, VSG=envmod_nodas, VA=as.data.frame(envmod[,1]), xvmult=100) CasMRTR2(POISSON,NodeADMIT=3) ### -- Oribatid mite example --- ### # # data(mite) data(mite.env) mite.hel <- decostand(mite, "hellinger") W<-mite.env[,4] MITE<-CascadeMRT(Y=mite.hel, VSG=mite.env[,-4], VA=data.frame(W), xvmult=500,xvsub= pick,cp1=0.1) CasMRTR2(MITE,NodeADMIT=c(3,2)) CasMRTR2 Diagram of explained variation for a cascade MRT analysis Diagram of explained variation for a cascade MRT analysis. See details for more precisions. CasMRTR2(obj,NodeADMIT=obj$where1) obj NodeADMIT Object of class CascadeMRT Vector with numbers corresponding to the group membership of the first drop to be admitted in the diagram. Default is all are included.

5 CasMRTR2 5 Details Value This diagram represents the percentage of variation explained by each drop. Explained variance of the original response is in greyed area, unexplained in is white. The rectangle representing the explained variation of the first drop MRT model is annoted VA and is placed to the left. The area is proportional to the explained percentage which is written under the VA annotation. The other greyed areas each represent a model from the second wave. Each area has a height equal to the explained variance of the model build on the node objects and a width equal to the variance unexplained in that node by the first drop. This provides a proportional area to the variation explained of the original response. Graphical output of explained variation. References Dea th, G Multivariate regression tree : a new technique for modeling species-environment relationships. Ecology 83: Ouellette, M.-H. & P. Legendre. An adjusted R^2 statistic for multivariate regression tree analysis (Manuscript). Ouellette, M.-H., P. Legendre and D. Borcard Cascade Multivariate Regression Tree: a novel approach for modelling nested explanatory sets. Methods in Ecology & Evolution 3: See Also mvpart,cascademrt Examples # Initialisation require(vegan) require(mvpart) require(mvpartwrap) require(ade4) ### -- Doubs example --- ### # # # Note that we modify the data found in ade4 to match the data # set provided with Numerical Ecology in R (Borcard et al 2011), # the data set used in the paper Ouellette, Legendre & Borcard # (2012). data(doubs) # Data importation # spe<-doubs$fish envmod<-doubs$env envmod[,1]<-envmod[,1]/10

6 6 code.tree envmod[7,1]<-36.8 envmod[,3]<-round((exp(envmod[,3])-1)/10,1) envmod[,4]<-envmod[,4]/100 envmod[,5]<-envmod[,5]/10 envmod[,7]<-envmod[,7]/100 envmod[,8]<-envmod[,8]/100 envmod[,9]<-envmod[,9]/100 envmod[,10]<-envmod[,10]/10 envmod[,11]<-envmod[,11]/10 envmod_nodas<-envmod[,-1] spe.hel <- decostand(spe, "hellinger") POISSON<-CascadeMRT(Y=spe.hel, VSG=envmod_nodas, VA=as.data.frame(envmod[,1]), xvmult=100) CasMRTR2(POISSON,NodeADMIT=3) ### -- Oribatid mite example --- ### # # data(mite) data(mite.env) mite.hel <- decostand(mite, "hellinger") W<-mite.env[,4] MITE<-CascadeMRT(Y=mite.hel, VSG=mite.env[,-4], VA=data.frame(W), xvmult=500,xvsub= pick,cp1=0.1) CasMRTR2(MITE,NodeADMIT=c(3,2)) code.tree Multivariate regression tree analysis dummy coding This function dummy codes an mvpart tree code.tree(obj,lwhere,rwhere,labels) obj LWHERE RWHERE LABELS obj of class mvpart list of left objects in every node list of right objects in every node mat_lables object

7 mat_labels_fct 7 Details This function is used internally by the plot.mrt generic function and is not intended for external use. Either way, each coded variable in matrix code represents one of the splits of the MRT. The objects on the left and right of the split have weights corresponding to the inverse of the number of observations in each group. The left objects get positive weights and the right objects get negative weights. The objects not concerned with a split have a weight of zero. As a consequence, each column sums to 0. Coded by Marie-Helene Ouellette, August 2009, modified from Pierre Legendre, August 2009 Value code Matrix representing the coded tree mat_labels_fct Builds a matrix of labels for an mvpart tree Builds a matrix of labels for an mvpart tree mat_labels_fct(obj) obj an mvpart object Value Labels Matrix with pretty labels for an mvpart tree See Also mvpart MRT

8 8 MRT MRT Modified Output of Multivariate Regression Tree Analysis Wraper function of mvpart that grant easy access to the following information : the proper cluster membership of the objects, the discriminant species of each cluster, the tree nodes at the proper level of R 2 (1 minus relative error) in the tree representation, the total species variance partitionned by species, by the tree, and by the splits of the tree. MRT(obj,percent,species=NULL,LABELS = FALSE,...) obj Details percent species LABELS An object of class mvpart The contribution level to the explained variance at a particular node for a sepcies to be considered discriminant, in percent. A vector of species names assignated to some columns of the table showing the partitioned explained variance (see TABLE1 in value). If NULL, the colnames of obj$y will be used. A matrix of labels for the tree.... further arguments given to mvpart. See rpart.control and mvpart for further details. This function provides extra outputs based on an mvpart object Value An object of class MRT, basically a list including the following elements nodes pourct R2 obj percent vector of node numbers given in increasing order of their contribution to the explained variance. These numbers correspond to the ones used in the new tree output (see argument typeplot for more details) nodes by species matrix providing the species contribution to the explained variation in percent at each node. nodes by species matrix giving the species contribution to the explained variation at each node mvpart function original object percentage of explained variation perceived as large enough for a species to be dsicriminant at a particular node

9 ORDER_NODES 9 RWHERE LWHERE TABLE1 NodeMarking List of vectors containing the row numbers of the objects on the right side of each node List of vectors containing the row numbers of the objects on the left side of each node Matrix giving the total species variation partitionned by species, by the tree, and by the splits of the tree Argument needed to build labels for plots (see plot.mrt for more details on these plots) References Dea th, G Multivariate regression tree : a new technique for modeling species-environment relationships. Ecology 83: See Also summary.mrt Examples ## MRT analysis of the spider data of the mvpart library ## # # library(mvpart) data(spider) result<-mvpart(data.matrix(spider[,1:12]) ~ herbs + reft + moss + sand + twigs + water, spider, xv= 1se, xval=10, xvmult=100) ## Format the object of class "mvpart" into "MRT" ## res<-mrt(result,10) ORDER_NODES Order mvpart nodes in terms of R^2 Order mvpart nodes in terms of R^2 for better tree output ORDER_NODES(obj,R2,splits) obj R2 splits mvpart object matrix of explained variation (objects x splits) contains the line numbers of table frame of the mvpart object that are nodes, not leafs

10 10 plot.mrt Value Vector of modes ordering in terms of R^2 See Also mvpart MRT plot.mrt Returns a graphical representation of a fitted MRT object. Two different graphical representations of the Multivariate regression tree build with MRT function: a tree or an ordination triplot (last option not available). ## S3 method for class MRT plot(x, NodeMarking=TRUE, typeplot=c( tree ), Cex=0.5, widthtree=7, heighttree=9, R2A=FALSE, X=NULL, T=NULL,...) x NodeMarking typeplot Cex widthtree heighttree R2A X T Details fitted model object of class MRT If TRUE (default), used to show proper labels in tree representation. Only option available for now. tree shows the final model in a tree shape; if NULL, none is shown Scale of character to be used in the plots Width in inches to be used in the tree plot Height in inches to be used in the tree plot logical, should the adjusted R 2 (see references) be plotted under the tree explanatory matrix, must be provided if R2A=TRUE Number of runs for GDF estimation, must be provided if R2A=TRUE... Further arguments to be passed to the plotting devices or functions. See Details for more details. This function is a method for the generic function plot for class MRT. It can be invoked by calling plot for an object of the appropriate class, or directly by calling plot.mrt regardless of the class of the object. If typeplot is tree, the model is depicted in a binary tree manner. Each node and leaf is numbered according to the information provided in the summary. See?summary.MRT for details. Under each numbered node, we find the complexity parameter or the contribution to the R 2. At the bottom of the tree, at each leaf, we find its size and a number which corresponds to the group

11 plot_tree 11 association found in MRT$where. Each node is plotted at its corresponding contribution to the global R 2. ### NOT AVAILABLE YET, COMING SOON ### The second graphical representation is one of ordination biplot or triplot. Each node is dummy coded (see code.tree) and used as explanatory variables in an redundancy analysis (RDA). The groups are numbered as in the MRT tree. The default scaling is 1, thus the eucidian distances between groups are respected as much as possible. The nodes are represented by arrows, at which is associated the name of the explanatory variable and the value at which the split is performed. References Ye, J. (1998). "On Measuring and Correcting the Effects of Data Mining and Model Selection." Journal of the American Statistical Association 93(441): Ouellette, M.-H. and Legendre, P. "An adjusted R 2 statistic for multivariate regression tree analysis". Manuscript. See Also plot,mrt,summary.mrt Examples ## MRT analysis of the Bryce Canyon vegetation data ## # # library(mvpart) data(spider) result<-mvpart(data.matrix(spider[,1:12]) ~ herbs + reft + moss + sand + twigs + water, spider, xv= 1se, xval=10, xvmult=100) ## Format the object of class "mvpart" into "MRT" ## res<-mrt(result,10) ## Summary of this object ## summary(res) plot(res) plot_tree Plot Multivariate Regression Tree Plot mvpart tree according to the relative error plot_tree(obj, NodeMarking, R2, Cex, widthtree, heighttree, LABELS, R2A=FALSE, X=NULL, T=NULL,...)

12 12 R2aGDF obj NodeMarking R2 Cex widthtree heighttree LABELS R2A X T Value mvpart object TRUE or FALSE, should the level of R 2 be printed Matrix of contribution to R 2 (object x splits) see par(cex) width of plot window height of plot window Given labels for plotting. Used in partial analysis. logical, should the adjusted R 2 (see references) be plotted under the tree explanatory matrix, must be provided if R2A=TRUE Number of runs for GDF estimation, must be provided if R2A=TRUE... Further arguments to be passed to the plotting devices or functions. See Details for more details. plotted tree (no value returned) R2aGDF Adjustment for Rˆ2 of Multivariate regression tree analysis (MRT) based on general degrees of freedom (GDF) estimation This function returns the adjusted R 2 for an MRT model R2aGDF(TREE,T,tau_const,X=NULL,...) TREE T tau_const X Details object of class MRT. The number of times the algorithm should run. constant for tuner parameter multiplicative value. explanatory matrix (must be provided when TREE is an MRT object)... further options to provided to mvpart This function performs the adjustment of the coefficient of determination for an MRT model. The adjustment is based on Ye s algorithm 1 used to estimate the number of general degrees of freedom. The adjustement itself is defined in Ouellette & Legendre (Manuscript)

13 R2aGDF 13 Value R2a Adjusted R 2 for the provided TREE References Ye, J. (1998). "On Measuring and Correcting the Effects of Data Mining and Model Selection." Journal of the American Statistical Association 93(441): Dea th, G Multivariate regression tree : a new technique for modeling species-environment relationships. Ecology 83: Ouellette, M.-H. & P. Legendre. An adjusted R 2 statistic for multivariate regression tree analysis. (Manuscript) See Also mvpart, MRT Examples # # # - MRT analysis - # # # # # require(vegan) require(labdsv) data(mite) data(mite.env) mite.hell<-decostand(mite,method= h ) # Polynomial water content WaterCont.poly = poly(mite.env[,2], 3) # All polynomial of water content are retained # (according to forward selection) mite.tree<-mvpart(data.matrix(mite.hell) ~ data.matrix(mite.env[,-2]) + WaterCont.poly, data=as.data.frame(cbind(mite.env,watercont.poly)), xv= min,xvmult=1000) # Get graphic window ready # dev.new(width=10, height=7.5) par(cex=0.4) # Get prettier tree # res<-mrt(mite.tree,10) # Make prettier lables LABELS<-res$mat_labels LABELS[1,2]<- Water.p1>= LABELS[1,3]<- Water.p1< LABELS[2,2]<- SubsDens>=51.8 LABELS[2,3]<- SubsDens<51.8

14 14 summary.mrt LABELS[3,2]<- Water.p1>= LABELS[3,3]<- Water.p1< LABELS[4,2]<- SubsDens < LABELS[4,3]<- SubsDens >=36.38 LABELS[5,2]<- Topo< 1.5 LABELS[5,3]<- Topo>= 1.5 LABELS[6,2]<- Shrub< 1.5 LABELS[6,3]<- Shrub>= 1.5 MRT.mite.tree<-MRT(mite.tree,10,LABELS=LABELS) summary(mrt.mite.tree) plot(mrt.mite.tree,type= tree ) # Show summary of results summary(mrt.mite.tree) # Calculate R2a R2aGDF(MRT.mite.tree, T=100, tau_const=0.6, X=cbind(mite.env[,-2], WaterCont.poly)) summary.mrt Returns a detailed listing of a fitted MRT object. Gives a summary of the results contained in an MRT object : output shows an overview of the information available for each node. ## S3 method for class MRT summary(object,indvalpart=true,indvalnode=true,...) object fitted model object of class MRT IndvalPART Logical. Print IndVal species for the final partition IndvalNODE Logical. Print IndVal species for each node... arguments to be passed to or from other methods.

15 summary.mrt 15 Details This function is a method for the generic function summary for class MRT. It can be invoked by calling summary for an object of the appropriate class. Dicriminant species (who contribute the most to the deviance), their mean at each subgroup formed by the split (left and right), Indval species at the node level and at the full partition level, and the complexity (contribution to R 2 ) is available. See Also summary, MRT Examples ## MRT of the spider data available in the mvpart package. ## # # require(mvpart) data(spider) result<-mvpart(data.matrix(spider[,1:12]) ~ herbs + reft + moss + sand + twigs + water, spider, xv= 1se, xval=10, xvmult=100) ## Format the object of class mvpart into MRT ## res<-mrt(result,10) ## Summary of this MRT object ## summary(res) ## This summary has the following structure ## # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # --- Node # --- : # # corresponds to the number given on the tree plot # Complexity (r2) ## # left child right child # ~ Discriminant species : # sp1 sp2... # % of expl. deviance of## # Mean value on the left # Mean value on the right # ~ INDVAL species for this node: : left is 1, right is 2 # cluster indicator_value probability # SPA # SPB # SPC # SPD # # Note : the output will only show the species which have a higher # percent value than the one specified by the user when the MRT object # was created. See?MRT for more details

16 16 svaluecol svaluecol Representation of a value and its corresponding partition in a graph performs the scatter diagram with the representation of a value for a variable colored according to a partition given by the user svaluecol(dfxy, z, xax = 1, yax = 2, method = c("squaresize", "greylevel"), zmax=null, csize = 1, cpoint = 0, pch = 20, clegend = 0.75, neig = NULL, cneig = 1, xlim = NULL, ylim = NULL, grid = TRUE, addaxes = TRUE, cgrid = 0.75, include.origin = TRUE, origin = c(0,0), sub = "", csub = 1, possub = "topleft", pixmap = NULL, contour = NULL, area = NULL, add.plot = FALSE,col= black ) dfxy z xax yax method zmax csize cpoint pch clegend neig cneig xlim ylim grid a data frame with two coordinates a vector of the values corresponding to the rows of dfxy column for the x axis column for the y axis a string of characters "squaresize" gives black squares for positive values and white for negative values with a proportional area equal to the absolute value. "greylevel" gives squares of equal size with a grey level proportional to the value. By default the first choice a numeric value, equal by default to max(abs(z)), can be used to impose a common scale of the size of the squares to several drawings in the same device a size coefficient for symbols a character size for plotting the points, used with par("cex")*cpoint. If zero, no points are drawn if cpoint > 0, an integer specifying the symbol or the single character to be used in plotting points a character size for the legend used by par("cex")*clegend a neighbouring graph a size for the neighbouring graph lines used with par("lwd")*cneig the ranges to be encompassed by the x, if NULL they are computed the ranges to be encompassed by the y, if NULL they are computed a logical value indicating whether a grid in the background of the plot should be drawn

17 svaluecol 17 addaxes cgrid a logical value indicating whether the axes should be plotted a character size, parameter used with par("cex")*cgrid to indicate the mesh of the grid include.origin a logical value indicating whether the point "origin" should be belonged to the graph space origin sub csub possub pixmap contour area add.plot col Details Value the fixed point in the graph space, for example c(0,0) the origin axes a string of characters to be inserted as legend a character size for the legend, used with par("cex")*csub a string of characters indicating the sub-title position ("topleft", "topright", "bottomleft", "bottomright") an object pixmap displayed in the map background a data frame with 4 columns to plot the contour of the map : each row gives a segment (x1,y1,x2,y2) a data frame of class area to plot a set of surface units in contour if TRUE uses the current graphics window vector of colors to be given to each object. If black (default), performs the scatter plot without color, thus equivalent to s.value. The main difference between s.value(ade4) and svaluecol(mvpartwrap) is the possibility to color the squares representing the value of a variable according to a partition provided by the user. The argument col controls the color of each points in the scatter diagram. When this argument is a vector of colors (numbers or color names, see colors() for a complete list), each point is colored as stated by the vector. It also overrides the method options greylevel, thus only squaresize is available in this setting. In this case, squares with grey contour have a positive value and squares with black contour have a negative value. The matched call. Author(s) Marie-Helene Ouellette, modified from s.value (ade4) of Daniel Chessel Examples # Required packages # require(vegan) require(mvpart) require(mvpartwrap) # Data importation and preparation # data(mite) data(mite.env) data(mite.xy)

18 18 svaluecol mite.hel<-decostand(mite, method= h ) # Analyses and plots # kmeans.mite<-cascadekm(data.matrix(mite.hel),inf.gr=6,sup.gr=6,criterion = "calinski") # Plot of the kmeans partition on species composition (color). # # Size of square represents the water content measured at the site. # svaluecol(mite.xy,mite.env[,2],col=kmeans.mite$partition,csize=0.3)

19 Index Topic Cascade CascadeMRT, 2 CasMRTR2, 4 Topic Multivariate regression tree code.tree, 6 mat_labels_fct, 7 ORDER_NODES, 9 plot_tree, 11 R2aGDF, 12 Topic dummy coding code.tree, 6 Topic hplot svaluecol, 16 Topic multivariate CascadeMRT, 2 CasMRTR2, 4 MRT, 8 plot.mrt, 10 summary.mrt, 14 Topic partition svaluecol, 16 Topic tree CascadeMRT, 2 CasMRTR2, 4 MRT, 8 plot.mrt, 10 summary.mrt, 14 plot_tree, 11 R2aGDF, 12 summary.mrt, 9, 11, 14 svaluecol, 16 CascadeMRT, 2, 5 CasMRTR2, 3, 4 code.tree, 6 mat_labels_fct, 7 MRT, 7, 8, 10, 11, 13 mvpart, 3, 5, 7, 10, 13 ORDER_NODES, 9 plot, 11 plot.mrt, 10 19

8.11 Multivariate regression trees (MRT)

8.11 Multivariate regression trees (MRT) Multivariate regression trees (MRT) 375 8.11 Multivariate regression trees (MRT) Univariate classification tree analysis (CT) refers to problems where a qualitative response variable is to be predicted

More information

Package fso. February 19, 2015

Package fso. February 19, 2015 Version 2.0-1 Date 2013-02-26 Title Fuzzy Set Ordination Package fso February 19, 2015 Author David W. Roberts Maintainer David W. Roberts Description Fuzzy

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 optimus. March 24, 2017

Package optimus. March 24, 2017 Type Package Package optimus March 24, 2017 Title Model Based Diagnostics for Multivariate Cluster Analysis Version 0.1.0 Date 2017-03-24 Maintainer Mitchell Lyons Description

More information

Package munfold. R topics documented: February 8, Type Package. Title Metric Unfolding. Version Date Author Martin Elff

Package munfold. R topics documented: February 8, Type Package. Title Metric Unfolding. Version Date Author Martin Elff Package munfold February 8, 2016 Type Package Title Metric Unfolding Version 0.3.5 Date 2016-02-08 Author Martin Elff Maintainer Martin Elff Description Multidimensional unfolding using

More information

Package pathdiagram. R topics documented: August 29, 2016

Package pathdiagram. R topics documented: August 29, 2016 Type Package Title Basic functions for drawing path diagrams Version 0.1.9 Date 2013-07-28 Author Package pathdiagram August 29, 2016 Maintainer Implementation of simple functions

More information

Multivariate analyses in ecology. Cluster (part 2) Ordination (part 1 & 2)

Multivariate analyses in ecology. Cluster (part 2) Ordination (part 1 & 2) Multivariate analyses in ecology Cluster (part 2) Ordination (part 1 & 2) 1 Exercise 9B - solut 2 Exercise 9B - solut 3 Exercise 9B - solut 4 Exercise 9B - solut 5 Multivariate analyses in ecology Cluster

More information

Package pwrrasch. R topics documented: September 28, Type Package

Package pwrrasch. R topics documented: September 28, Type Package Type Package Package pwrrasch September 28, 2015 Title Statistical Power Simulation for Testing the Rasch Model Version 0.1-2 Date 2015-09-28 Author Takuya Yanagida [cre, aut], Jan Steinfeld [aut], Thomas

More information

Package corclass. R topics documented: January 20, 2016

Package corclass. R topics documented: January 20, 2016 Package corclass January 20, 2016 Type Package Title Correlational Class Analysis Version 0.1.1 Date 2016-01-14 Author Andrei Boutyline Maintainer Andrei Boutyline Perform

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 ConvergenceClubs

Package ConvergenceClubs Title Finding Convergence Clubs Package ConvergenceClubs June 25, 2018 Functions for clustering regions that form convergence clubs, according to the definition of Phillips and Sul (2009) .

More information

Package TPD. June 14, 2018

Package TPD. June 14, 2018 Type Package Package TPD June 14, 2018 Title Methods for Measuring Functional Diversity Based on Trait Probability Density Version 1.0.0 Date 2018-06-13 Author Carlos P. Carmona

More information

Package ade4tkgui. R topics documented: November 9, Version Date Title 'ade4' Tcl/Tk Graphical User Interface

Package ade4tkgui. R topics documented: November 9, Version Date Title 'ade4' Tcl/Tk Graphical User Interface Version 0.2-9 Date 2015-11-09 Title 'ade4' Tcl/Tk Graphical User Interface Package ade4tkgui November 9, 2015 Author Jean Thioulouse , Stéphane Dray ,

More information

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0.

Package EnQuireR. R topics documented: February 19, Type Package Title A package dedicated to questionnaires Version 0. Type Package Title A package dedicated to questionnaires Version 0.10 Date 2009-06-10 Package EnQuireR February 19, 2015 Author Fournier Gwenaelle, Cadoret Marine, Fournier Olivier, Le Poder Francois,

More information

Package rknn. June 9, 2015

Package rknn. June 9, 2015 Type Package Title Random KNN Classification and Regression Version 1.2-1 Date 2015-06-07 Package rknn June 9, 2015 Author Shengqiao Li Maintainer Shengqiao Li

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

Package mpm. February 20, 2015 Version 1.0-22 Date 2011-11-23 Title Multivariate Projection Methods Package mpm February 20, 2015 Author Luc Wouters Maintainer Tobias Verbeke

More information

Package qrfactor. February 20, 2015

Package qrfactor. February 20, 2015 Type Package Package qrfactor February 20, 2015 Title Simultaneous simulation of Q and R mode factor analyses with Spatial data Version 1.4 Date 2014-01-02 Author George Owusu Maintainer

More information

Package Binarize. February 6, 2017

Package Binarize. February 6, 2017 Type Package Title Binarization of One-Dimensional Data Version 1.2 Date 2017-01-29 Package Binarize February 6, 2017 Author Stefan Mundus, Christoph Müssel, Florian Schmid, Ludwig Lausser, Tamara J. Blätte,

More information

Package Grid2Polygons

Package Grid2Polygons Package Grid2Polygons February 15, 2013 Version 0.1-2 Date 2013-01-28 Title Convert Spatial Grids to Polygons Author Jason C. Fisher Maintainer Jason C. Fisher Depends R (>= 2.15.0),

More information

Package bdots. March 12, 2018

Package bdots. March 12, 2018 Type Package Title Bootstrapped Differences of Time Series Version 0.1.19 Date 2018-03-05 Package bdots March 12, 2018 Author Michael Seedorff, Jacob Oleson, Grant Brown, Joseph Cavanaugh, and Bob McMurray

More information

Package clustmixtype

Package clustmixtype Package clustmixtype October 17, 2017 Version 0.1-29 Date 2017-10-15 Title k-prototypes Clustering for Mixed Variable-Type Data Author Gero Szepannek Maintainer Gero Szepannek Imports

More information

Package qvcalc. R topics documented: September 19, 2017

Package qvcalc. R topics documented: September 19, 2017 Package qvcalc September 19, 2017 Version 0.9-1 Date 2017-09-18 Title Quasi Variances for Factor Effects in Statistical Models Author David Firth Maintainer David Firth URL https://github.com/davidfirth/qvcalc

More information

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

Package beanplot. R topics documented: February 19, Type Package Type Package Package beanplot February 19, 2015 Title Visualization via Beanplots (like Boxplot/Stripchart/Violin Plot) Version 1.2 Date 2014-09-15 Author Peter Kampstra Maintainer Peter Kampstra

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 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 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 SSRA. August 22, 2016

Package SSRA. August 22, 2016 Type Package Title Sakai Sequential Relation Analysis Version 0.1-0 Date 2016-08-22 Author Takuya Yanagida [cre, aut], Keiko Sakai [aut] Package SSRA August 22, 2016 Maintainer Takuya Yanagida

More information

Package rpst. June 6, 2017

Package rpst. June 6, 2017 Type Package Title Recursive Partitioning Survival Trees Version 1.0.0 Date 2017-6-6 Author Maintainer Package rpst June 6, 2017 An implementation of Recursive Partitioning Survival Trees

More information

Package pca3d. February 17, 2017

Package pca3d. February 17, 2017 Package pca3d Type Package Title Three Dimensional PCA Plots Version 0.10 Date 2017-02-17 Author January Weiner February 17, 2017 URL http://logfc.wordpress.com Maintainer January Weiner

More information

Package flowchic. R topics documented: October 16, Encoding UTF-8 Type Package

Package flowchic. R topics documented: October 16, Encoding UTF-8 Type Package Encoding UTF-8 Type Package Package flowchic October 16, 2018 Title Analyze flow cytometric data using histogram information Version 1.14.0 Date 2015-03-05 Author Joachim Schumann ,

More information

Package Mondrian. R topics documented: March 4, Type Package

Package Mondrian. R topics documented: March 4, Type Package Type Package Package Mondrian March 4, 2016 Title A Simple Graphical Representation of the Relative Occurrence and Co-Occurrence of Events The unique function of this package allows representing in a single

More information

Package pairsd3. R topics documented: August 29, Title D3 Scatterplot Matrices Version 0.1.0

Package pairsd3. R topics documented: August 29, Title D3 Scatterplot Matrices Version 0.1.0 Title D3 Scatterplot Matrices Version 0.1.0 Package pairsd3 August 29, 2016 Creates an interactive scatterplot matrix using the D3 JavaScript library. See for more information on D3.

More information

Package sciplot. February 15, 2013

Package sciplot. February 15, 2013 Package sciplot February 15, 2013 Version 1.1-0 Title Scientific Graphing Functions for Factorial Designs Author Manuel Morales , with code developed by the R Development Core Team

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

Publication-quality figures with Inkscape

Publication-quality figures with Inkscape Publication-quality figures with Inkscape In Lab 3 we briefly learnt about the different formats available to save the plots we create in R and how to modify them in PowerPoint and Adobe Illustrator. Today

More information

VEGETATION DESCRIPTION AND ANALYSIS

VEGETATION DESCRIPTION AND ANALYSIS VEGETATION DESCRIPTION AND ANALYSIS LABORATORY 5 AND 6 ORDINATIONS USING PC-ORD AND INSTRUCTIONS FOR LAB AND WRITTEN REPORT Introduction LABORATORY 5 (OCT 4, 2017) PC-ORD 1 BRAY & CURTIS ORDINATION AND

More information

CARTWARE Documentation

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

More information

Package superheat. February 4, 2017

Package superheat. February 4, 2017 Type Package Package superheat February 4, 2017 Title A Graphical Tool for Exploring Complex Datasets Using Heatmaps Version 0.1.0 Description A system for generating extendable and customizable heatmaps

More information

Package hpoplot. R topics documented: December 14, 2015

Package hpoplot. R topics documented: December 14, 2015 Type Package Title Functions for Plotting HPO Terms Version 2.4 Date 2015-12-10 Author Daniel Greene Maintainer Daniel Greene Package hpoplot December 14, 2015 Collection

More information

Package SiZer. February 19, 2015

Package SiZer. February 19, 2015 Version 0.1-4 Date 2011-3-21 Title SiZer: Significant Zero Crossings Package SiZer February 19, 2015 Author Derek Sonderegger Maintainer Derek Sonderegger

More information

Package ClustGeo. R topics documented: July 14, Type Package

Package ClustGeo. R topics documented: July 14, Type Package Type Package Package ClustGeo July 14, 2017 Title Hierarchical Clustering with Spatial Constraints Version 2.0 Author Marie Chavent [aut, cre], Vanessa Kuentz [aut], Amaury Labenne [aut], Jerome Saracco

More information

Package sizemat. October 19, 2018

Package sizemat. October 19, 2018 Type Package Title Estimate Size at Sexual Maturity Version 1.0.0 Date 2018-10-18 Package sizemat October 19, 2018 Maintainer Josymar Torrejon-Magallanes Contains functions to estimate

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 ALS. August 3, 2015

Package ALS. August 3, 2015 Type Package Package ALS August 3, 2015 Title Multivariate Curve Resolution Alternating Least Squares (MCR-ALS) Version 0.0.6 Author Katharine M. Mullen Maintainer Katharine Mullen

More information

Package gains. September 12, 2017

Package gains. September 12, 2017 Package gains September 12, 2017 Version 1.2 Date 2017-09-08 Title Lift (Gains) Tables and Charts Author Craig A. Rolling Maintainer Craig A. Rolling Depends

More information

Package ClustVarLV. December 14, 2016

Package ClustVarLV. December 14, 2016 Package ClustVarLV December 14, 2016 Title Clustering of Variables Around Latent Variables Version 1.5.1 Author Evelyne Vigneau [aut, cre], Mingkun Chen [ctb] Maintainer Evelyne Vigneau

More information

Package ggsubplot. February 15, 2013

Package ggsubplot. February 15, 2013 Package ggsubplot February 15, 2013 Maintainer Garrett Grolemund License GPL Title Explore complex data by embedding subplots within plots. LazyData true Type Package Author Garrett

More information

Points Lines Connected points X-Y Scatter. X-Y Matrix Star Plot Histogram Box Plot. Bar Group Bar Stacked H-Bar Grouped H-Bar Stacked

Points Lines Connected points X-Y Scatter. X-Y Matrix Star Plot Histogram Box Plot. Bar Group Bar Stacked H-Bar Grouped H-Bar Stacked Plotting Menu: QCExpert Plotting Module graphs offers various tools for visualization of uni- and multivariate data. Settings and options in different types of graphs allow for modifications and customizations

More information

Package JBTools. R topics documented: June 2, 2015

Package JBTools. R topics documented: June 2, 2015 Package JBTools June 2, 2015 Title Misc Small Tools and Helper Functions for Other Code of J. Buttlar Version 0.7.2.9 Date 2015-05-20 Author Maintainer Collection of several

More information

Package GCAI.bias. February 19, 2015

Package GCAI.bias. February 19, 2015 Type Package Package GCAI.bias February 19, 2015 Title Guided Correction Approach for Inherited bias (GCAI.bias) Version 1.0 Date 2014-07-14 Author Guoshuai Cai Maintainer Guoshuai Cai

More information

Package activity. September 26, 2016

Package activity. September 26, 2016 Type Package Title Animal Activity Statistics Version 1.1 Date 2016-09-23 Package activity September 26, 2016 Author Marcus Rowcliffe Maintainer Marcus Rowcliffe

More information

Package logicfs. R topics documented:

Package logicfs. R topics documented: Package logicfs November 21, 2017 Title Identification of SNP Interactions Version 1.48.0 Date 2013-09-12 Author Holger Schwender Maintainer Holger Schwender Depends LogicReg, mcbiopi

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

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 replicatedpp2w

Package replicatedpp2w Type Package Package replicatedpp2w November 24, 2017 Title Two-Way ANOVA-Like Method to Analyze Replicated Point Patterns Version 0.1-2 Date 2017-11-24 Author Marcelino de la Cruz Rot Depends spatstat.utils

More information

Package compeir. February 19, 2015

Package compeir. February 19, 2015 Type Package Package compeir February 19, 2015 Title Event-specific incidence rates for competing risks data Version 1.0 Date 2011-03-09 Author Nadine Grambauer, Andreas Neudecker Maintainer Nadine Grambauer

More information

Package balance. October 12, 2018

Package balance. October 12, 2018 Title Visualize Balances of Compositional Data Version 0.1.6 URL http://github.com/tpq/balance Package balance October 12, 2018 BugReports http://github.com/tpq/balance/issues Balances have become a cornerstone

More information

Package FisherEM. February 19, 2015

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

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Package nprotreg. October 14, 2018

Package nprotreg. October 14, 2018 Package nprotreg October 14, 2018 Title Nonparametric Rotations for Sphere-Sphere Regression Version 1.0.0 Description Fits sphere-sphere regression models by estimating locally weighted rotations. Simulation

More information

Package fitplc. March 2, 2017

Package fitplc. March 2, 2017 Type Package Title Fit Hydraulic Vulnerability Curves Version 1.1-7 Author Remko Duursma Package fitplc March 2, 2017 Maintainer Remko Duursma Fits Weibull or sigmoidal models

More information

More About Factoring Trinomials

More About Factoring Trinomials Section 6.3 More About Factoring Trinomials 239 83. x 2 17x 70 x 7 x 10 Width of rectangle: Length of rectangle: x 7 x 10 Width of shaded region: 7 Length of shaded region: x 10 x 10 Area of shaded region:

More information

Package ic10. September 23, 2015

Package ic10. September 23, 2015 Type Package Package ic10 September 23, 2015 Title A Copy Number and Expression-Based Classifier for Breast Tumours Version 1.1.3 Date 2015-09-22 Author Maintainer Oscar M. Rueda

More information

Package mtsdi. January 23, 2018

Package mtsdi. January 23, 2018 Version 0.3.5 Date 2018-01-02 Package mtsdi January 23, 2018 Author Washington Junger and Antonio Ponce de Leon Maintainer Washington Junger

More information

Package prettygraphs

Package prettygraphs Type Package Title Publication-Quality Graphics Version 2.1.6 Date 2018-12-17 Author Package prettygraphs December 18, 2018 Maintainer Simple and crisp publication-quality

More information

Quadratic Functions Dr. Laura J. Pyzdrowski

Quadratic Functions Dr. Laura J. Pyzdrowski 1 Names: (8 communication points) About this Laboratory A quadratic function in the variable x is a polynomial where the highest power of x is 2. We will explore the domains, ranges, and graphs of quadratic

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 PCGSE. March 31, 2017

Package PCGSE. March 31, 2017 Type Package Title Principal Component Gene Set Enrichment Version 0.4 Date 2017-03-31 Author H. Robert Frost Package PCGSE March 31, 2017 Maintainer H. Robert Frost Description

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Package qicharts. October 7, 2014

Package qicharts. October 7, 2014 Version 0.1.0 Date 2014-10-05 Title Quality improvement charts Package qicharts October 7, 2014 Description Functions for making run charts and basic Shewhart control charts for measure and count data.

More information

Package basictrendline

Package basictrendline Version 2.0.3 Date 2018-07-26 Package basictrendline July 26, 2018 Title Add Trendline and Confidence Interval of Basic Regression Models to Plot Maintainer Weiping Mei Plot, draw

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

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc Section 2-2 Frequency Distributions Copyright 2010, 2007, 2004 Pearson Education, Inc. 2.1-1 Frequency Distribution Frequency Distribution (or Frequency Table) It shows how a data set is partitioned among

More information

Package lvm4net. R topics documented: August 29, Title Latent Variable Models for Networks

Package lvm4net. R topics documented: August 29, Title Latent Variable Models for Networks Title Latent Variable Models for Networks Package lvm4net August 29, 2016 Latent variable models for network data using fast inferential procedures. Version 0.2 Depends R (>= 3.1.1), MASS, ergm, network,

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

Package waterfall. R topics documented: February 15, Type Package. Version Date Title Waterfall Charts in R

Package waterfall. R topics documented: February 15, Type Package. Version Date Title Waterfall Charts in R Package waterfall February 15, 2013 Type Package Version 0.9.9.20121030 Date 2012-10-30 Title Waterfall Charts in R Author James P. Howard, II Maintainer James P. Howard, II

More information

Things you ll know (or know better to watch out for!) when you leave in December: 1. What you can and cannot infer from graphs.

Things you ll know (or know better to watch out for!) when you leave in December: 1. What you can and cannot infer from graphs. 1 2 Things you ll know (or know better to watch out for!) when you leave in December: 1. What you can and cannot infer from graphs. 2. How to construct (in your head!) and interpret confidence intervals.

More information

Disentangling and quantifying sources of otolith shape variation across multiple scales using a new hierarchical partitioning approach

Disentangling and quantifying sources of otolith shape variation across multiple scales using a new hierarchical partitioning approach The following supplement accompanies the article Disentangling and quantifying sources of otolith shape variation across multiple scales using a new hierarchical partitioning approach M. Vignon* *Corresponding

More information

The TWIX Package. April 24, 2007

The TWIX Package. April 24, 2007 The TWIX Package April 24, 2007 Version 0.2.2 Title Trees WIth extra splits Author Sergej Potapov Maintainer Martin Theus Depends R (>= 1.8.0),

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

Package OLScurve. August 29, 2016

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

More information

Package ontologyplot

Package ontologyplot Type Package Package Plot October 28, 2016 Title Functions for Visualising Sets of Ontological Terms Version 1.4 Date 2016-10-20 Author Daniel Greene Maintainer Daniel Greene

More information

Chapter 5 An Introduction to Basic Plotting Tools

Chapter 5 An Introduction to Basic Plotting Tools Chapter 5 An Introduction to Basic Plotting Tools We have demonstrated the use of R tools for importing data, manipulating data, extracting subsets of data, and making simple calculations, such as mean,

More information

The nor1mix Package. August 3, 2006

The nor1mix Package. August 3, 2006 The nor1mix Package August 3, 2006 Title Normal (1-d) Mixture Models (S3 Classes and Methods) Version 1.0-6 Date 2006-08-02 Author: Martin Mächler Maintainer Martin Maechler

More information

Package GLDreg. February 28, 2017

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

More information

Package StVAR. February 11, 2017

Package StVAR. February 11, 2017 Type Package Title Student's t Vector Autoregression (StVAR) Version 1.1 Date 2017-02-10 Author Niraj Poudyal Maintainer Niraj Poudyal Package StVAR February 11, 2017 Description Estimation

More information

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

Package Rwinsteps. February 19, 2015 Version 1.0-1 Date 2012-1-30 Title Running Winsteps in R Package Rwinsteps February 19, 2015 Author Anthony Albano , Ben Babcock Maintainer Anthony Albano

More information

Package abf2. March 4, 2015

Package abf2. March 4, 2015 Type Package Title Load Gap-Free Axon ABF2 Files Version 0.7-1 Date 2015-03-04 Author Matthew Caldwell Package abf2 March 4, 2015 Maintainer Loads ABF2 files containing gap-free data from electrophysiological

More information

York Public Schools Subject Area: Mathematics Course: 6 th Grade Math NUMBER OF DAYS TAUGHT DATE

York Public Schools Subject Area: Mathematics Course: 6 th Grade Math NUMBER OF DAYS TAUGHT DATE 6.1.1.d 6.EE.A.1 Represent large numbers using exponential notation (i.e.. 10x10x10x10x10) (Review PV chart first) Write evaluate numerical expressions involving whole number exponents 5 days August, Lesson

More information

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout, MS Excel 2010 offers a large set of graphs and plots for data visualization. For those who are familiar with older version of Excel, the layout is completely different. The following exercises demonstrate

More information

Package REGENT. R topics documented: August 19, 2015

Package REGENT. R topics documented: August 19, 2015 Package REGENT August 19, 2015 Title Risk Estimation for Genetic and Environmental Traits Version 1.0.6 Date 2015-08-18 Author Daniel J.M. Crouch, Graham H.M. Goddard & Cathryn M. Lewis Maintainer Daniel

More information

Regression. Dr. G. Bharadwaja Kumar VIT Chennai

Regression. Dr. G. Bharadwaja Kumar VIT Chennai Regression Dr. G. Bharadwaja Kumar VIT Chennai Introduction Statistical models normally specify how one set of variables, called dependent variables, functionally depend on another set of variables, called

More information

Analysing Spatial Data in R: Vizualising Spatial Data

Analysing Spatial Data in R: Vizualising Spatial Data Analysing Spatial Data in R: Vizualising Spatial Data Roger Bivand Department of Economics Norwegian School of Economics and Business Administration Bergen, Norway 31 August 2007 Vizualising Spatial Data

More information

Package panelview. April 24, 2018

Package panelview. April 24, 2018 Type Package Package panelview April 24, 2018 Title Visualizing Panel Data with Dichotomous Treatments Version 1.0.1 Date 2018-04-23 Author Licheng Liu, Yiqing Xu Maintainer Yiqing Xu

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 PCPS. R topics documented: May 24, Type Package

Package PCPS. R topics documented: May 24, Type Package Type Package Package PCPS May 24, 2018 Title Principal Coordinates of Phylogenetic Structure Version 1.0.6 Date 2018-05-24 Author Vanderlei Julio Debastiani Maintainer Vanderlei Julio Debastiani

More information

Package smoothr. April 4, 2018

Package smoothr. April 4, 2018 Type Package Title Smooth and Tidy Spatial Features Version 0.1.0 Package smoothr April 4, 2018 Tools for smoothing and tidying spatial features (i.e. lines and polygons) to make them more aesthetically

More information

Package GWRM. R topics documented: July 31, Type Package

Package GWRM. R topics documented: July 31, Type Package Type Package Package GWRM July 31, 2017 Title Generalized Waring Regression Model for Count Data Version 2.1.0.3 Date 2017-07-18 Maintainer Antonio Jose Saez-Castillo Depends R (>= 3.0.0)

More information