Modularity for Mathematica User s Guide Version 2.0

Size: px
Start display at page:

Download "Modularity for Mathematica User s Guide Version 2.0"

Transcription

1 Modularity 2.0 for Mathematica P. David Polly and Anjali Goswami, 2010 (updated April 2018) User s Guide Version 2.0 For use with: Goswami, A. & Polly, P. D Methods for studying morphological integration, modularity and covariance evolution. In Quantitative Methods in Paleobiology. Paleontological Society Short Course, October 30th, 2010, vol. The Paleontological Society Papers (ed. J. Alroy & G. Hunt), pp Chicago: The Paleontological Society. P. David Polly Departments of Geological Sciences Biological Sciences and Anthropology Indiana University Bloomington, Indiana USA pdpolly@indiana.edu Anjali Goswami Department of Genetics, Evolution & Environment Department of Earth Sciences University College London Wolfson House Stephenson Way London NW1 2HE U.K. Phone a.goswami@ucl.ac.uk 1

2 Table of Contents User s Guide Version About Modularity and this Package... 3 Installing the package... 3 Using Mathematica... 4 Example Datasets... 5 Stand-Alone Functions... 6 Procrustes[landmarks, nlands, ndims]... 6 CongruenceCoefficient[superimposed]... 6 CanonicalCorrelation[superimposed]... 6 Mantel[A, B, n]... 7 Subsample[data, nrows]... 7 SubsampleMatrix[data1,data2, nlands, ndims, m, t]... 8 Modularity Analysis Functions... 9 Modularity[landmarks, nlands, ndims, labels]... 9 Magwene[R, n, labels, criterion, threshold] References

3 About Modularity and this Package Morphological integration is correlation of parts, the integration of morphological traits or features that must function, grow, or be passed to offspring on as working units. Individual integrated units are modules, a group of traits that are highly correlated among themselves but only loosely correlated with traits in other modules. The study of integration and modularity was first developed by Olson and Miller (1958) and expanded on by Cheverud (1982), Zelditch (1988), Wagner (1995), Raff (1996), Klingenberg (2000), Mitteroecker (2007) and many others. The basic component of studying modularity and integration is identifying packages of intercorrelated traits that behave independently of other such packages, whether through ontogeny, across individuals within a population, or during the course of evolution. This package performs a simple analysis of modularity on geometric morphometric landmark data. This package accompanies the review by Goswami and Polly (2010). Users are referred to that paper for a discussion of the methods embedded in this package, including their strengths and weaknesses, and for elaboration of other methods that address broader problems. Updates in 2.0 This package was updated 7 April 2018 to fix inconsistencies with the latest versions of Mathematica. No substantial changes were made to functions. Updates include changing Agglomerate[] to DirectAgglomerate[] for functions that calculate dendrograms from correlation matrices and no longer loading the Multivariate Statistics package to use the PrincipalComponents[] function. Installing the package 1. Download the latest version of the package at (right click on link to save as file) 2. Open the file in Mathematica 3. Under the File menu, choose Install 4. Under Type of Item choose Package, under source choose the file you just saved, under Install Name enter Modularity. 5. Once installed, enter the command <<Modularity` to use the functions. 3

4 Using Mathematica Mathematica is a software package for mathematical and statistical analysis from Wolfram Research ( Mathematica has a unique interface that takes a while to get used to. You open to a blank page, like a word processor, where you can type anything you want. Most of the time you will type commands that do things with your data: connect to databases, plot graphs, or carry out calculations. Unlike other statistical or mathematical programs, the commands you type and the output you get remain on the page, which gives you a record of what you ve done step-by-step. To help organize your work, you can add headers, format boxes, etc. with the Format Menu. Cells are an important organizing feature of Mathematica. Note the cell markers on the right margin. Each cell is bounded by a bracket and commands within a cell are executed together. You can open and close cells by double clicking the bracket. This can be useful if you have lots of stuff in a notebook you can give a section a heading, which causes cells in that section to be grouped, after which you can close the section by double clicking. Shift + Enter causes a cell to be executed. Pressing the enter key creates a new line, just like in a word processor, but when you want to execute a command you typed, you type SHIFT+ENTER somewhere in the cell and all commands in the cell are executed. Mathematica Commands. Mathematic is designed to be as easy to learn as possible so that you can concentrate on working instead of the program. Almost all commands are English words written out in full with capitals at the beginning of words and brackets [] at the end of the command. For example, the command to calculate an average of a set of numbers is Mean[], the command to do a principal components analysis is PrincipalComponents[], and the command to take the logarithm of a number is Log[]. Graphics. Mathematic is good at graphics. You can either use simple functions like ListPlot[] to create a generic graph, or you can experiment with Graphics[] to create a completely customized graphic. 4

5 Example Datasets Two example datasets are provided with this package. The first set found in the file Marmota_siberica.csv, contains 13 two-dimensional landmarks from the mandibles of a geographically localized subspecies of marmot, Marmota siberica (data from Caumul & Polly 2005, sample L, n=14) (Figure 1). These data are arranged in a comma-delimited file with a Figure 1. Mandible landmarks. (from Caumul & Polly 2005). specimen identifier in the first column, followed by the x and y coordinate points of the 13 landmarks in the next 26 columns. These data can be loaded into Mathematica and the first column discarded with the following command: landmarks = Import[ C:\\Marmota_siberica.csv, CSV ][[1;;,2;;]]; where the data are stored in the variable landmarks, where the first argument should be the complete path to the data file, and the numbers in double square brackets at the end specify that rows 1 to the end and columns 2 to the end be retained. The second data set, found in the file Macaca_mulata.csv, contains 61 three-dimensional landmarks from the skulls of a population of Japanese Macaques (n=45). This data set is described and illustrated in Goswami and Polly (2010). These data have the x, y and z coordinates of each landmark in the 183 columns, with no identifier. They can be read into Mathematica with the following command: landmarks = Import[ C:\\Macaca_mulata.csv, CSV ]; 5

6 Stand-Alone Functions Procrustes[landmarks, nlands, ndims] The Procrustes[] functions superimposes landmarks using the algorithm for generalized Procrustes superimposition presented by Rohlf and Slice (1990). Procrustes[] and other geometric morphometric are also found in the PollyMorphometrics package for Mathematica available at landmarks is a two-dimensional matrix with landmark coordinates in columns and specimens in rows. nlands is the number of landmarks. ndims is the number of landmark dimensions (2 or 3). The following command superimposes the 13 marmot landmarks if they have been loaded as described above and saves the superimposed coordinates as array named superimposed: superimposed = Procrustes[landmarks, 13, 2]; CongruenceCoefficient[superimposed] The CongruenceCoefficient[] function calculates a correlation matrix for two- or three-dimensional landmarks using the congruence coefficient. The congruence coefficient is one of several methods for calculating a single correlation between two multidimensional variables, such as 2D or 3D landmarks (see discussion in Goswami & Polly 2010). superimposed is a three-dimensional array in which the landmarks are arranged with specimens in the first dimension, landmarks in the second dimension, and coordinates for each landmark in the third dimension. The following command reformats the marmot landmarks from the two-dimensional array produced by Procrustes[] into the three-dimensional array required by CongruenceCoefficient[], where 2 is the number of landmarks dimensions and 13 is the number of landmarks: superimposed = Partition[Partition[Flatten[superimposed],2],13]; The following command then calculates the 13x13 correlation matrix among the landmarks and saves it in the variable R: R=CongruenceCoefficient[superimposed]; CanonicalCorrelation[superimposed] The CanonicalCorrelation[] function calculates a correlation matrix for two- or three-dimensional landmarks using canonical correlation, one of several methods for calculating a single correlation between two multidimensional variables, such as 2D or 3D landmarks (see discussion in Goswami & Polly 2010). superimposed is a three-dimensional array in which the landmarks are arranged with specimens in the first dimension, landmarks in the second dimension, and coordinates for each landmark in the third dimension. 6

7 The following command reformats the marmot landmarks from the two-dimensional array produced by Procrustes[] into the three-dimensional array required by CanonicalCorrelation[], where 2 is the number of landmarks dimensions and 13 is the number of landmarks: superimposed = Partition[Partition[Flatten[superimposed],2],13]; The following command then calculates the 13x13 correlation matrix among the landmarks and saves it in the variable R: R=CanonicalCorrelation[superimposed]; Mantel[A, B, n] The Mantel[] function does a Mantel test for correlation in two matrices by calculating their matrix correlation and performing a Monte Carlo permutation test to test the significance of the correlation. The function returns three values: the matrix correlation, the proportion times the real matrix correlation was greater than the n random permutations, and the P-value that the correlation is greater than expected for random matrices. A and B are two symmetric correlation matrices. n is the number of permutations for the Monte Carlo test of significance permutations are recommended. The following set of commands performs a Mantel test on the correlation matrices from the Marmot data set based on the Congruence Coefficient and Canonical Correlation. The results of that code are superimposed = Procrustes[marmots, 13, 2]; P = CongruenceCoefficient[superimposed]; Q = CanonicalCorrelation[superimposed]; Mantel[P, Q, 10000] { , , }, indicating that the matrix correlation between the two matrices is 0.79, that the correlation is greater than random 99.9% of the time (out of 10,000 permutations) and that the P-value for the correlation being greater than random is significant at P= Subsample[data, nrows] The Subsample[] function randomly samples rows of a data matrix (e.g., specimens from a data matrix of landmarks). data is the matrix of data to be subsampled. nrows is the number of randomly sampled rows to be returned. The following code randomly samples five specimens from the Marmot datamatrix: 7

8 RandomMarmots=Subsample[marmots, 5]; SubsampleMatrix[data1,data2, nlands, ndims, m, t] The SubsampleMatrix[] performs a subsample analysis to explore the effects of small sample size on matrix correlation for one or two sets of landmark data. data1 is the matrix of landmark data to be subsampled. data2 is the matrix of data to which the subsamples are to be compared (this is often the same matrix as data1 if the purpose is to see how small sample size affects the estimation of a correlation matrix) nlands is the number of landmarks in the data sets. ndims is the number of dimensions in each landmark (2 or 3). m is the maximum number of rows to remove (this should never be larger than n-3, where n is the total number of rows). t is the number of trials at each subsample size. The following code does a subsample analysis on the marmot data, iteratively dropping the sample so that the smallest samples have only three rows and subsampling ten times at each iteration. rare=subsample[marmots, marmots, 13, 3, Length[marmots]-3, 10]; Plotting the transpose of the results shows how the correlation between the subsample and the original data deteriorate as the sample becomes smaller: The correlation of the subsample and the original is near 1.0 at the first step, when only one row has been removed. The correlation drops to at the 11 th step when eleven rows have been dropped from the original sample. 8

9 Modularity Analysis Functions Modularity[landmarks, nlands, ndims, labels] The Modularity[] function takes a set of unsuperimposed landmarks and does a simple but complete analysis of modularity. For each landmark data set, the function displays a scree plot of the eigenvalues of the correlation matrix and a Ward s dendrogram that shows the similarity of correlations among the landmarks. The function also reports the sample standard deviation of the eigenvalues, their relative sample standard deviation, and the expectation of the relative SD for random, non-modular data. An optional randomization test can be used to estimate the number of modules based on the eigenvalue scree. landmarks is a two-dimensional array of landmarks with coordinates in the columns and specimens in the rows. Landmarks do not need to be superimposed since the function invokes Procrustes[] to superimpose them. nlands is the number of landmarks. ndims is the number of landmark dimensions (2 or 3). labels is an array of labels for the landmarks. These will be used to identify the tips of the cluster analysis dendrogram. The following command creates a numbered list 1 to 13 to be used as labels for the marmot data set: labels =Table[x, {x, 13}; The following command does a modularity analysis on the marmot landmarks: Modularity[landmarks, 13, 2, labels] Modularity Results Congruence Coefficient Eignvalue SD: Relative Eignvalue SD: Expectation of Random Rel. Eigenvalue SD: Canonical Correlation Eignvalue SD: Relative Eignvalue SD: Expectation of Random Rel. Eigenvalue SD: Figure 2. Modularity analysis results for the marmot mandible data set. 9

10 The program first superimposes the landmarks then creates a correlation matrix using both the congruence correlation and canonical correlation. The eigenvalues of each correlation matrix are calculated and shown as scree plots, along with their sample standard deviation. The relative standard deviation is calculated following Pavlicev et al. (2009) as SD/Sqrt[N-1], where SD is the sample standard deviation of the eigenvalues and N is the number of eigenvalues. The expectation of the relative standard deviation for a random data set is reported for comparison. If the first few relative eigenvalues are especially high and their relative standard deviation is larger than the expectation, then the landmarks have a modular structure (Goswami & Polly 2010; Pavlicev et al. 2009). A Ward s linkage dendrogram is shown for each correlation matrix. Landmarks are clustered according to the strength of their correlations (technically speaking, the correlation matrix is converted to a distance matrix with the transformation 1-Abs[R]). Modules are expected to be clustered in the dendrogram (see discussion of pros and cons in Goswami & Polly 2010). An optional randomization test is available to statistically test for modularity using the eigenvalue structure of the correlation matrix. When this test is invoked, the landmarks are randomized 100 times and the eigenvalues calculated from the associated correlation matrices to provide a distribution of eigenstructure for data with no modules. The number of significantly correlated modules is estimated as the number of eigenvalues that are higher than the maximum corresponding eigenvalue from the randomized data set. The following command runs the modularity analysis for the same dataset but with the randomization test invoked [note: the randomization process can take several minutes for large data sets]: Modularity[landmarks, 13, 2, labels, RandomizationTest ] Modularity Results Congruence Coefficient Eignvalue SD: Relative Eigenvalue SD: Expectation of Random Rel. Eigenvalue SD: Es tim ated Number of Modules : 1 Eigenvalues Canonical Correlation Eignvalue SD: Relative Eigenvalue SD: Expectation of Random Rel. Eigenvalue SD: Es tim ated Number of Modules : 1 Eigenvalues Figure 3. Modularity results for the marmot mandible data set when the randomization test option is invoked. 10

11 The scree plots now show the eigenvalues of the two correlation matrices as thick grey bars with the randomization results shown as black whisker bars (mean, maximum and minimum). The latter are a guide to the expectation of eigenvalues for completely random data with no real modularity. The number of eigenvalues greater than that expectation is the number of modules with significant structure. This number is used to highlight the modules in the dendrogram. For the marmot mandible data, only one significant module is found regardless of which correlation coefficient is used, suggesting that there is significant integration in this data set, but no modularity. The following output is from the Macaque data set, where several modules were identified. Note that the number of modules may be mis-estimated if there are many eigenvalues that are effectively zero. In some cases the actual value of those tiny eigenvalues exceeds the randomized value and is counted as though it were a module. Visual inspection of the results will show whether this is the case. Modularity Results Congruence Coefficient Eignvalue SD: Relative Eigenvalue SD: Expectation of Random Rel. Eigenvalue SD: Es tim ated Number of Modules : 6 Eigenvalues Canonical Correlation Eignvalue SD: Relative Eigenvalue SD: Expectation of Random Rel. Eigenvalue SD: Es tim ated Number of Modules : Eigenvalues Figure 4. Modularity results for the Macaque skull data set with the randomization option invoked. 11

12 Magwene[R, n, labels, criterion, threshold] The Magwene[] function performs a graphical model analysis as described by Magwene (2001). R is a correlation matrix. n is the sample size for the data set used to generate the correlation matrix. labels is an array of labels for the variables in the correlation matrix. There are two optional variables: Criterion specifies which matrix to use for edge labels. Default is p-value for the edge exclusion deviance matrix. Other criteria are "EED" for the edge exclusion deviance value itself, "ES" for edge strength, and "PC" for the partial correlation matrix. Threshold specifies the threshold value used to draw the graph edge (the default value is 0.95 or higher). The function returns a graphical model for integration and modularity, the partial R-square values for each variable with respect to all others, the matrix of partial correlations among variables, the edge exclusion deviance matrix, the matrix of p-values for edge exclusion deviance, and the edge strength matrix. The following is the output of the Magwene function for the data presented in his 2001 paper. Note that the implementation of the function in this package does not work if the correlation matrix is singular, which is always the case for landmark data (see discussion in Goswami & Polly 2010): H F L 1. B U 1. T 12

13 References Caumul, R. & Polly, P. D Phylogenetic and environmental components of morphological variation: Skull, mandible, and molar shape in marmots (Marmota, Rodentia). Evolution 59, Cheverud, J Phenotypic, genetic, and environmental morphological integration in the cranium. Evolution 36, Goswami, A. & Polly, P. D Methods for studying morphological integration, modularity and covariance evolution. In Quantitative Methods in Paleobiology. Paleontological Society Short Course, October 30th, 2010, vol. The Paleontological Society Papers (ed. J. Alroy & G. Hunt), pp Chicago: The Paleontological Society. Klingenberg, C. P. & Zaklan, S. D Morphological integration between developmental compartments in the Drosophila wing. Evolution 53, Magwene, P. M New tools for studying integration and modularity. Evolution 55, Mitteroecker, P. & Bookstein, F The conceptual and statistical relationship between modularity and morphological integration. Systematic Biology 56, Olson, E. C. & Miller, R. L Morphological Integration. Chicago: University of Chicago Press. Pavlicev, M., Cheverud, J. M. & Wagner, G. P Measuring Morphological Integration Using Eigenvalue Variance. Evolutionary Biology 36, Raff, R The shape of life: genes, development, and the evolution of animal form: University of Chicago Press Chicago. Rohlf, F. J. & Slice, D Extension of the Procrustes method for the optimal superimposition of landmarks. Systematic Zoology 39, Wagner, G. P Adaptation and the modular design of organisms. Advances in Artificial Life 929, Zelditch, M. L Ontogenetic variation in patterns of phenotypic integration in the laboratory rat. Evolution 42,

GEOMETRIC MORPHOMETRICS. Adrian Castellanos, Michelle Chrpa, & Pedro Afonso Leite

GEOMETRIC MORPHOMETRICS. Adrian Castellanos, Michelle Chrpa, & Pedro Afonso Leite GEOMETRIC MORPHOMETRICS Adrian Castellanos, Michelle Chrpa, & Pedro Afonso Leite WHAT IS MORPHOMETRICS? Quantitative analysis of form, a concept that encompasses size and shape. Analyses performed on live

More information

Phylogeny, trees and morphospace

Phylogeny, trees and morphospace G562 Geometric Morphometrics Phylogeny, trees and morphospace Hierarchical patterns in morphometric data WALLABY HUMAN Node 0 LEOPARD Node 1 Node 3 FOSSA Node 2 DOG Node 4 OTTER 0 20 40 60 80 Cottonwood

More information

Morphometric integration and modularity in configurations of landmarks: tools for evaluating a priori hypotheses

Morphometric integration and modularity in configurations of landmarks: tools for evaluating a priori hypotheses EVOLUTION & DEVELOPMENT 11:4, 405 421 (2009) DOI: 10.1111/j.1525-142X.2009.00347.x Morphometric integration and modularity in configurations of landmarks: tools for evaluating a priori hypotheses Christian

More information

Cranial integration and modularity: insights into evolution and development from morphometric data

Cranial integration and modularity: insights into evolution and development from morphometric data Published by Associazione Teriologica Italiana Volume 24 (1): 43 58, 2013 Hystrix, the Italian Journal of Mammalogy Available online at: http://www.italian-journal-of-mammalogy.it/article/view/6367/pdf

More information

Phenotypic Evolution. and phylogenetic comparative methods. G562 Geometric Morphometrics. Department of Geological Sciences Indiana University

Phenotypic Evolution. and phylogenetic comparative methods. G562 Geometric Morphometrics. Department of Geological Sciences Indiana University Phenotypic Evolution and phylogenetic comparative methods Phenotypic Evolution Change in the mean phenotype from generation to generation... Evolution = Mean(genetic variation * selection) + Mean(genetic

More information

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells Introduction How to use this book This guide is meant as a standard reference to definitions, examples, and Mathematica techniques for linear algebra. Complementary material can be found in the Help sections

More information

Principal Component Analysis, A Powerful Scoring Technique

Principal Component Analysis, A Powerful Scoring Technique Principal Component Analysis, A Powerful Scoring Technique George C. J. Fernandez, University of Nevada - Reno, Reno NV 89557 ABSTRACT Data mining is a collection of analytical techniques to uncover new

More information

Quantitative evolution of morphology

Quantitative evolution of morphology Quantitative evolution of morphology Properties of Brownian motion evolution of a single quantitative trait Most likely outcome = starting value Variance of the outcomes = number of step * (rate parameter)

More information

Bootstrapping, Randomization, 2B-PLS

Bootstrapping, Randomization, 2B-PLS Bootstrapping, Randomization, 2B-PLS Statistics, Tests, and Bootstrapping Statistic a measure that summarizes some feature of a set of data (e.g., mean, standard deviation, skew, coefficient of variation,

More information

Geometric morphometrics

Geometric morphometrics Geometric morphometrics An introduction P. David Polly Department of Geology, Indiana (Biology and Anthropology) University, 1001 E. 10th Street, Bloomington, IN 47405, USA pdpolly@indiana.edu http://mypage.iu.edu/~pdpolly/

More information

NINE CHOICE SERIAL REACTION TIME TASK

NINE CHOICE SERIAL REACTION TIME TASK instrumentation and software for research NINE CHOICE SERIAL REACTION TIME TASK MED-STATE NOTATION PROCEDURE SOF-700RA-8 USER S MANUAL DOC-025 Rev. 1.3 Copyright 2013 All Rights Reserved MED Associates

More information

Applying cluster analysis to 2011 Census local authority data

Applying cluster analysis to 2011 Census local authority data Applying cluster analysis to 2011 Census local authority data Kitty.Lymperopoulou@manchester.ac.uk SPSS User Group Conference November, 10 2017 Outline Basic ideas of cluster analysis How to choose variables

More information

Hotelling s One- Sample T2

Hotelling s One- Sample T2 Chapter 405 Hotelling s One- Sample T2 Introduction The one-sample Hotelling s T2 is the multivariate extension of the common one-sample or paired Student s t-test. In a one-sample t-test, the mean response

More information

DIMENSION REDUCTION AND CLUSTER ANALYSIS

DIMENSION REDUCTION AND CLUSTER ANALYSIS DIMENSION REDUCTION AND CLUSTER ANALYSIS EECS 833, 6 March 2006 Geoff Bohling Assistant Scientist Kansas Geological Survey geoff@kgs.ku.edu 864-2093 Overheads and resources available at http://people.ku.edu/~gbohling/eecs833

More information

Experiment 1: Linear Regression

Experiment 1: Linear Regression Experiment 1: Linear Regression August 27, 2018 1 Description This first exercise will give you practice with linear regression. These exercises have been extensively tested with Matlab, but they should

More information

Matrices A matrix is a rectangular array of numbers. For example, the following rectangular arrays of numbers are matrices: 2 1 2

Matrices A matrix is a rectangular array of numbers. For example, the following rectangular arrays of numbers are matrices: 2 1 2 Matrices A matrix is a rectangular array of numbers For example, the following rectangular arrays of numbers are matrices: 7 A = B = C = 3 6 5 8 0 6 D = [ 3 5 7 9 E = 8 7653 0 Matrices vary in size An

More information

Evaluating modularity in morphometric data: challenges with the RV coefficient and a new test measure

Evaluating modularity in morphometric data: challenges with the RV coefficient and a new test measure Methods in Ecology and Evolution 2016, 7, 565 572 doi: 10.1111/2041-210X.12511 Evaluating modularity in morphometric data: challenges with the RV coefficient and a new test measure Dean C. Adams 1,2 *

More information

G E INTERACTION USING JMP: AN OVERVIEW

G E INTERACTION USING JMP: AN OVERVIEW G E INTERACTION USING JMP: AN OVERVIEW Sukanta Dash I.A.S.R.I., Library Avenue, New Delhi-110012 sukanta@iasri.res.in 1. Introduction Genotype Environment interaction (G E) is a common phenomenon in agricultural

More information

ncounter PlexSet Data Analysis Guidelines

ncounter PlexSet Data Analysis Guidelines ncounter PlexSet Data Analysis Guidelines NanoString Technologies, Inc. 530 airview Ave North Seattle, Washington 98109 USA Telephone: 206.378.6266 888.358.6266 E-mail: info@nanostring.com Molecules That

More information

Lab Activity: The Central Limit Theorem

Lab Activity: The Central Limit Theorem Lab Activity: The Central Limit Theorem In this lab activity, you will explore the properties of the Central Limit Theorem. Student Learning Outcomes By the end of this chapter, you should be able to do

More information

Multivariate Statistics 101. Ordination (PCA, NMDS, CA) Cluster Analysis (UPGMA, Ward s) Canonical Correspondence Analysis

Multivariate Statistics 101. Ordination (PCA, NMDS, CA) Cluster Analysis (UPGMA, Ward s) Canonical Correspondence Analysis Multivariate Statistics 101 Ordination (PCA, NMDS, CA) Cluster Analysis (UPGMA, Ward s) Canonical Correspondence Analysis Multivariate Statistics 101 Copy of slides and exercises PAST software download

More information

Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week:

Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week: Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week: Course general information About the course Course objectives Comparative methods: An overview R as language: uses and

More information

Exploratory Factor Analysis and Principal Component Analysis

Exploratory Factor Analysis and Principal Component Analysis Exploratory Factor Analysis and Principal Component Analysis Today s Topics: What are EFA and PCA for? Planning a factor analytic study Analysis steps: Extraction methods How many factors Rotation and

More information

Statistical Analysis. G562 Geometric Morphometrics PC 2 PC 2 PC 3 PC 2 PC 1. Department of Geological Sciences Indiana University

Statistical Analysis. G562 Geometric Morphometrics PC 2 PC 2 PC 3 PC 2 PC 1. Department of Geological Sciences Indiana University PC 2 PC 2 G562 Geometric Morphometrics Statistical Analysis PC 2 PC 1 PC 3 Basic components of GMM Procrustes Whenever shapes are analyzed together, they must be superimposed together This aligns shapes

More information

2 Dean C. Adams and Gavin J. P. Naylor the best three-dimensional ordination of the structure space is found through an eigen-decomposition (correspon

2 Dean C. Adams and Gavin J. P. Naylor the best three-dimensional ordination of the structure space is found through an eigen-decomposition (correspon A Comparison of Methods for Assessing the Structural Similarity of Proteins Dean C. Adams and Gavin J. P. Naylor? Dept. Zoology and Genetics, Iowa State University, Ames, IA 50011, U.S.A. 1 Introduction

More information

Phylogenetics - IB 200B 15 Feb Morphometrics

Phylogenetics - IB 200B 15 Feb Morphometrics Morphometrics Morphometrics is the branch of mathematics studying the metrical and statistical properties of shapes and shape changes of geometric objects like molecules, fossils, brains, bird wings, ancient

More information

SHAPE ANALYSIS OF SYMMETRIC STRUCTURES: QUANTIFYING VARIATION AMONG INDIVIDUALS AND ASYMMETRY

SHAPE ANALYSIS OF SYMMETRIC STRUCTURES: QUANTIFYING VARIATION AMONG INDIVIDUALS AND ASYMMETRY Evolution, 56(10), 2002, pp. 1909 1920 SHAPE ANALYSIS OF SYMMETRIC STRUCTURES: QUANTIFYING VARIATION AMONG INDIVIDUALS AND ASYMMETRY CHRISTIAN PETER KLINGENBERG, 1 MARTA BARLUENGA, 2 AND AXEL MEYER 3 Department

More information

ECE521 W17 Tutorial 1. Renjie Liao & Min Bai

ECE521 W17 Tutorial 1. Renjie Liao & Min Bai ECE521 W17 Tutorial 1 Renjie Liao & Min Bai Schedule Linear Algebra Review Matrices, vectors Basic operations Introduction to TensorFlow NumPy Computational Graphs Basic Examples Linear Algebra Review

More information

Phylogenetics - IB 200A Morphometrics

Phylogenetics - IB 200A Morphometrics Phylogenetics - IB 200A 2012 Morphometrics Morphometrics is the branch of mathematics studying the metrical and statistical properties of shapes and shape changes of geometric objects like molecules, fossils,

More information

HOW TO USE MIKANA. 1. Decompress the zip file MATLAB.zip. This will create the directory MIKANA.

HOW TO USE MIKANA. 1. Decompress the zip file MATLAB.zip. This will create the directory MIKANA. HOW TO USE MIKANA MIKANA (Method to Infer Kinetics And Network Architecture) is a novel computational method to infer reaction mechanisms and estimate the kinetic parameters of biochemical pathways from

More information

An introduction to the picante package

An introduction to the picante package An introduction to the picante package Steven Kembel (steve.kembel@gmail.com) April 2010 Contents 1 Installing picante 1 2 Data formats in picante 2 2.1 Phylogenies................................ 2 2.2

More information

Integrative Biology 200A "PRINCIPLES OF PHYLOGENETICS" Spring 2012 University of California, Berkeley

Integrative Biology 200A PRINCIPLES OF PHYLOGENETICS Spring 2012 University of California, Berkeley Integrative Biology 200A "PRINCIPLES OF PHYLOGENETICS" Spring 2012 University of California, Berkeley B.D. Mishler Feb. 7, 2012. Morphological data IV -- ontogeny & structure of plants The last frontier

More information

Multivariate Data Analysis a survey of data reduction and data association techniques: Principal Components Analysis

Multivariate Data Analysis a survey of data reduction and data association techniques: Principal Components Analysis Multivariate Data Analysis a survey of data reduction and data association techniques: Principal Components Analysis For example Data reduction approaches Cluster analysis Principal components analysis

More information

Appendix 4 Weather. Weather Providers

Appendix 4 Weather. Weather Providers Appendix 4 Weather Using weather data in your automation solution can have many benefits. Without weather data, your home automation happens regardless of environmental conditions. Some things you can

More information

Introduction to Digital Evolution Handout Answers

Introduction to Digital Evolution Handout Answers Introduction to Digital Evolution Handout Answers Note to teacher: The questions in this handout and the suggested answers (in red, below) are meant to guide discussion, not be an assessment. It is recommended

More information

Virtual Beach Making Nowcast Predictions

Virtual Beach Making Nowcast Predictions Virtual Beach 3.0.6 Making Nowcast Predictions In this module you will learn how to: A. Create a real-time connection to Web data services through EnDDaT B. Download real-time data to make a Nowcast prediction

More information

WinLTA USER S GUIDE for Data Augmentation

WinLTA USER S GUIDE for Data Augmentation USER S GUIDE for Version 1.0 (for WinLTA Version 3.0) Linda M. Collins Stephanie T. Lanza Joseph L. Schafer The Methodology Center The Pennsylvania State University May 2002 Dev elopment of this program

More information

1 Introduction to Minitab

1 Introduction to Minitab 1 Introduction to Minitab Minitab is a statistical analysis software package. The software is freely available to all students and is downloadable through the Technology Tab at my.calpoly.edu. When you

More information

Geographical Movement

Geographical Movement Today s Topic Geographical Movement is critically important. This is because much change in the world is due to geographical movement. The movement of ideas, people, disease, money, energy, or material.

More information

Exercise 3 Exploring Fitness and Population Change under Selection

Exercise 3 Exploring Fitness and Population Change under Selection Exercise 3 Exploring Fitness and Population Change under Selection Avidians descended from ancestors with different adaptations are competing in a selective environment. Can we predict how natural selection

More information

Taking into account sampling design in DAD. Population SAMPLING DESIGN AND DAD

Taking into account sampling design in DAD. Population SAMPLING DESIGN AND DAD Taking into account sampling design in DAD SAMPLING DESIGN AND DAD With version 4.2 and higher of DAD, the Sampling Design (SD) of the database can be specified in order to calculate the correct asymptotic

More information

Exploratory Factor Analysis and Principal Component Analysis

Exploratory Factor Analysis and Principal Component Analysis Exploratory Factor Analysis and Principal Component Analysis Today s Topics: What are EFA and PCA for? Planning a factor analytic study Analysis steps: Extraction methods How many factors Rotation and

More information

Package LOST. April 20, 2017

Package LOST. April 20, 2017 Version 1.3 Date 2017-04-19 Package LOST April 20, 2017 Title Missing Morphometric Data Simulation and Estimation Author J. Arbour, C. Brown Maintainer J. Arbour Imports gdata, shapes,

More information

Moving into the information age: From records to Google Earth

Moving into the information age: From records to Google Earth Moving into the information age: From records to Google Earth David R. R. Smith Psychology, School of Life Sciences, University of Hull e-mail: davidsmith.butterflies@gmail.com Introduction Many of us

More information

Computational Study of Chemical Kinetics (GIDES)

Computational Study of Chemical Kinetics (GIDES) Computational Study of Chemical Kinetics (GIDES) Software Introduction Berkeley Madonna (http://www.berkeleymadonna.com) is a dynamic modeling program in which relational diagrams are created using a graphical

More information

HASSET A probability event tree tool to evaluate future eruptive scenarios using Bayesian Inference. Presented as a plugin for QGIS.

HASSET A probability event tree tool to evaluate future eruptive scenarios using Bayesian Inference. Presented as a plugin for QGIS. HASSET A probability event tree tool to evaluate future eruptive scenarios using Bayesian Inference. Presented as a plugin for QGIS. USER MANUAL STEFANIA BARTOLINI 1, ROSA SOBRADELO 1,2, JOAN MARTÍ 1 1

More information

Introduction to simulation databases with ADQL and Topcat

Introduction to simulation databases with ADQL and Topcat Introduction to simulation databases with ADQL and Topcat Kristin Riebe, GAVO July 05, 2016 Introduction Simulation databases like the Millennium Database or CosmoSim contain data sets from cosmological

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Factor Analysis (FA) Non-negative Matrix Factorization (NMF) CSE Artificial Intelligence Grad Project Dr. Debasis Mitra

Factor Analysis (FA) Non-negative Matrix Factorization (NMF) CSE Artificial Intelligence Grad Project Dr. Debasis Mitra Factor Analysis (FA) Non-negative Matrix Factorization (NMF) CSE 5290 - Artificial Intelligence Grad Project Dr. Debasis Mitra Group 6 Taher Patanwala Zubin Kadva Factor Analysis (FA) 1. Introduction Factor

More information

Introduction to RStudio

Introduction to RStudio Introduction to RStudio Carl Tony Fakhry Jie Chen April 4, 2015 Introduction R is a powerful language and environment for statistical computing and graphics. R is freeware and there is lot of help available

More information

The Use of Geometric Morphometrics in a Study of Shape Diversity of Ground Beetles (Coleoptera: Carabidae)

The Use of Geometric Morphometrics in a Study of Shape Diversity of Ground Beetles (Coleoptera: Carabidae) The Use of Geometric Morphometrics in a Study of Shape Diversity of Ground Beetles (Coleoptera: Carabidae) YOSHINARI YONEHARA 1, JUNJI KONUMA 2, and CHRISTIAN P. KLINGENBERG 3 1 University of Tsukuba,

More information

Lecture #19 MINEQL: Intro & Tutorial Benjamin; Chapter 6

Lecture #19 MINEQL: Intro & Tutorial Benjamin; Chapter 6 Updated: 6 October 2013 Print version Lecture #19 MINEQL: Intro & Tutorial Benjamin; Chapter 6 David Reckhow CEE 680 #19 1 MINEQL today MINEQL is available from Environmental Research Software: http://www.mineql.com/

More information

Linear Algebra and TI 89

Linear Algebra and TI 89 Linear Algebra and TI 89 Abdul Hassen and Jay Schiffman This short manual is a quick guide to the use of TI89 for Linear Algebra. We do this in two sections. In the first section, we will go over the editing

More information

Fog Monitor 100 (FM 100) Extinction Module. Operator Manual

Fog Monitor 100 (FM 100) Extinction Module. Operator Manual Particle Analysis and Display System (PADS): Fog Monitor 100 (FM 100) Extinction Module Operator Manual DOC-0217 Rev A-1 PADS 2.7.3, FM 100 Extinction Module 2.7.0 5710 Flatiron Parkway, Unit B Boulder,

More information

1 Interpretation. Contents. Biplots, revisited. Biplots, revisited 2. Biplots, revisited 1

1 Interpretation. Contents. Biplots, revisited. Biplots, revisited 2. Biplots, revisited 1 Biplots, revisited 1 Biplots, revisited 2 1 Interpretation Biplots, revisited Biplots show the following quantities of a data matrix in one display: Slide 1 Ulrich Kohler kohler@wz-berlin.de Slide 3 the

More information

FleXScan User Guide. for version 3.1. Kunihiko Takahashi Tetsuji Yokoyama Toshiro Tango. National Institute of Public Health

FleXScan User Guide. for version 3.1. Kunihiko Takahashi Tetsuji Yokoyama Toshiro Tango. National Institute of Public Health FleXScan User Guide for version 3.1 Kunihiko Takahashi Tetsuji Yokoyama Toshiro Tango National Institute of Public Health October 2010 http://www.niph.go.jp/soshiki/gijutsu/index_e.html User Guide version

More information

Mnova Software for Analyzing Reaction Monitoring NMR Spectra

Mnova Software for Analyzing Reaction Monitoring NMR Spectra Mnova Software for Analyzing Reaction Monitoring NMR Spectra Version 10 Chen Peng, PhD, VP of Business Development, US & China Mestrelab Research SL San Diego, CA, USA chen.peng@mestrelab.com 858.736.4563

More information

MLMED. User Guide. Nicholas J. Rockwood The Ohio State University Beta Version May, 2017

MLMED. User Guide. Nicholas J. Rockwood The Ohio State University Beta Version May, 2017 MLMED User Guide Nicholas J. Rockwood The Ohio State University rockwood.19@osu.edu Beta Version May, 2017 MLmed is a computational macro for SPSS that simplifies the fitting of multilevel mediation and

More information

Cesar G. Demayo, Rolliebert B. Rampola and Mark Anthony J. Torres

Cesar G. Demayo, Rolliebert B. Rampola and Mark Anthony J. Torres Australian Journal of Basic and Applied Sciences, 5(6): 733-738, 2011 ISSN 1991-8178 Describing Developmental Modules in the Fore-and Hind Wings of the Nymphalid Butterfly, Ypthima lisandra Cramer Using

More information

Developmental integration in a complex morphological structure: how distinct are the modules in the mouse mandible?

Developmental integration in a complex morphological structure: how distinct are the modules in the mouse mandible? EVOLUTION & DEVELOPMENT 5:5, 522 531 (2003) Developmental integration in a complex morphological structure: how distinct are the modules in the mouse mandible? Christian Peter Klingenberg, a, Katharina

More information

1 Overview of Simulink. 2 State-space equations

1 Overview of Simulink. 2 State-space equations Modelling and simulation of engineering systems Simulink Exercise 1 - translational mechanical systems Dr. M. Turner (mct6@sun.engg.le.ac.uk 1 Overview of Simulink Simulink is a package which runs in the

More information

Ratio of Polynomials Fit Many Variables

Ratio of Polynomials Fit Many Variables Chapter 376 Ratio of Polynomials Fit Many Variables Introduction This program fits a model that is the ratio of two polynomials of up to fifth order. Instead of a single independent variable, these polynomials

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

ISSP User Guide CY3207ISSP. Revision C

ISSP User Guide CY3207ISSP. Revision C CY3207ISSP ISSP User Guide Revision C Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights Copyrights

More information

Applied Multivariate Statistical Analysis Richard Johnson Dean Wichern Sixth Edition

Applied Multivariate Statistical Analysis Richard Johnson Dean Wichern Sixth Edition Applied Multivariate Statistical Analysis Richard Johnson Dean Wichern Sixth Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world

More information

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014 Bloomsburg University Weather Viewer Quick Start Guide Software Version 1.2 Date 4/7/2014 Program Background / Objectives: The Bloomsburg Weather Viewer is a weather visualization program that is designed

More information

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap

Lecture 2. Introduction to ESRI s ArcGIS Desktop and ArcMap Lecture 2 Introduction to ESRI s ArcGIS Desktop and ArcMap Outline ESRI What is ArcGIS? ArcGIS Desktop ArcMap Overview Views Layers Attribute Tables Help! Scale Tips and Tricks ESRI Environmental Systems

More information

Urban Canopy Tool User Guide `bo`

Urban Canopy Tool User Guide `bo` Urban Canopy Tool User Guide `bo` ADMS Urban Canopy Tool User Guide Version 2.0 June 2014 Cambridge Environmental Research Consultants Ltd. 3, King s Parade Cambridge CB2 1SJ UK Telephone: +44 (0)1223

More information

SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA

SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA D. Pokrajac Center for Information Science and Technology Temple University Philadelphia, Pennsylvania A. Lazarevic Computer

More information

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure.

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure. Chapter 460 Introduction This program calculates the harmonic regression of a time series. That is, it fits designated harmonics (sinusoidal terms of different wavelengths) using our nonlinear regression

More information

4. GIS Implementation of the TxDOT Hydrology Extensions

4. GIS Implementation of the TxDOT Hydrology Extensions 4. GIS Implementation of the TxDOT Hydrology Extensions A Geographic Information System (GIS) is a computer-assisted system for the capture, storage, retrieval, analysis and display of spatial data. It

More information

BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012

BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012 BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012 Introduction Maple is a powerful collection of routines to aid in the solution of mathematical problems

More information

An Introduction to Path Analysis

An Introduction to Path Analysis An Introduction to Path Analysis PRE 905: Multivariate Analysis Lecture 10: April 15, 2014 PRE 905: Lecture 10 Path Analysis Today s Lecture Path analysis starting with multivariate regression then arriving

More information

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp

Nonlinear Regression. Summary. Sample StatFolio: nonlinear reg.sgp Nonlinear Regression Summary... 1 Analysis Summary... 4 Plot of Fitted Model... 6 Response Surface Plots... 7 Analysis Options... 10 Reports... 11 Correlation Matrix... 12 Observed versus Predicted...

More information

Virtual Beach Building a GBM Model

Virtual Beach Building a GBM Model Virtual Beach 3.0.6 Building a GBM Model Building, Evaluating and Validating Anytime Nowcast Models In this module you will learn how to: A. Build and evaluate an anytime GBM model B. Optimize a GBM model

More information

Best Pair II User Guide (V1.2)

Best Pair II User Guide (V1.2) Best Pair II User Guide (V1.2) Paul Rodman (paul@ilanga.com) and Jim Burrows (burrjaw@earthlink.net) Introduction Best Pair II is a port of Jim Burrows' BestPair DOS program for Macintosh and Windows computers.

More information

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II Week 5 ArcMap - EXPLORING THE DATABASE Part I SPATIAL DATA FORMATS Part II topics of the week Exploring the Database More on the Table of Contents Exploration tools Identify, Find, Measure, Map tips, Hyperlink,

More information

SADA General Information

SADA General Information SADA General Information Windows--based freeware designed to integrate scientific models with decision and cost analysis frameworks in a seamless, easy to use environment. Visualization/GIS Custom Analysis

More information

Titrator 3.0 Tutorial: Calcite precipitation

Titrator 3.0 Tutorial: Calcite precipitation Titrator 3.0 Tutorial: Calcite precipitation November 2008 Steve Cabaniss A. Introduction This brief tutorial is intended to acquaint you with some of the features of the program Titrator. It assumes that

More information

Last updated: Copyright

Last updated: Copyright Last updated: 2012-08-20 Copyright 2004-2012 plabel (v2.4) User s Manual by Bioinformatics Group, Institute of Computing Technology, Chinese Academy of Sciences Tel: 86-10-62601016 Email: zhangkun01@ict.ac.cn,

More information

Interacting Galaxies

Interacting Galaxies Interacting Galaxies Contents Introduction... 1 Downloads... 1 Selecting Interacting Galaxies to Observe... 2 Measuring the sizes of the Galaxies... 5 Making a Colour Image in IRIS... 8 External Resources...

More information

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2 Physics 212E Spring 2004 Classical and Modern Physics Chowdary Computer Exercise #2 Launch Mathematica by clicking on the Start menu (lower left hand corner of the screen); from there go up to Science

More information

Machine Learning 11. week

Machine Learning 11. week Machine Learning 11. week Feature Extraction-Selection Dimension reduction PCA LDA 1 Feature Extraction Any problem can be solved by machine learning methods in case of that the system must be appropriately

More information

Description of Samples and Populations

Description of Samples and Populations Description of Samples and Populations Random Variables Data are generated by some underlying random process or phenomenon. Any datum (data point) represents the outcome of a random variable. We represent

More information

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide This page is intentionally left blank. SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide The ACTiSys IR Programmer and SuperCELL

More information

Statistical nonmolecular phylogenetics: can molecular phylogenies illuminate morphological evolution?

Statistical nonmolecular phylogenetics: can molecular phylogenies illuminate morphological evolution? Statistical nonmolecular phylogenetics: can molecular phylogenies illuminate morphological evolution? 30 July 2011. Joe Felsenstein Workshop on Molecular Evolution, MBL, Woods Hole Statistical nonmolecular

More information

Describing Developmental Modules in the Hind Wing of Rice Grasshopper, Oxya sp Using MINT Software

Describing Developmental Modules in the Hind Wing of Rice Grasshopper, Oxya sp Using MINT Software Research Journal of Recent Sciences ISSN 2277-2502 Res.J.Recent Sci. Describing Developmental Modules in the Hind Wing of Rice Grasshopper, Oxya sp Using MINT Software Kimverly Hazel I. Coronel, Mark Anthony

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.01 Fall Term 2010 Experiment 03: Work and Energy Purpose of the Experiment: In this experiment you allow a cart to roll down an inclined

More information

OECD QSAR Toolbox v.4.1. Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals

OECD QSAR Toolbox v.4.1. Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals OECD QSAR Toolbox v.4.1 Step-by-step example for predicting skin sensitization accounting for abiotic activation of chemicals Background Outlook Objectives The exercise Workflow 2 Background This is a

More information

Gridded Ambient Air Pollutant Concentrations for Southern California, User Notes authored by Beau MacDonald, 11/28/2017

Gridded Ambient Air Pollutant Concentrations for Southern California, User Notes authored by Beau MacDonald, 11/28/2017 Gridded Ambient Air Pollutant Concentrations for Southern California, 1995-2014 User Notes authored by Beau, 11/28/2017 METADATA: Each raster file contains data for one pollutant (NO2, O3, PM2.5, and PM10)

More information

An Introduction to Matrix Algebra

An Introduction to Matrix Algebra An Introduction to Matrix Algebra EPSY 905: Fundamentals of Multivariate Modeling Online Lecture #8 EPSY 905: Matrix Algebra In This Lecture An introduction to matrix algebra Ø Scalars, vectors, and matrices

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

Performing a Pharmacophore Search using CSD-CrossMiner

Performing a Pharmacophore Search using CSD-CrossMiner Table of Contents Introduction... 2 CSD-CrossMiner Terminology... 2 Overview of CSD-CrossMiner... 3 Searching with a Pharmacophore... 4 Performing a Pharmacophore Search using CSD-CrossMiner Version 2.0

More information

Phylogenetic Principal Components Analysis and Geometric Morphometrics

Phylogenetic Principal Components Analysis and Geometric Morphometrics Published by Associazione Teriologica Italiana Volume 24 (1): 33 41, 2013 Hystrix, the Italian Journal of Mammalogy Available online at: http://www.italian-journal-of-mammalogy.it/article/view/6383/pdf

More information

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.0 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Introduction to Spark

Introduction to Spark 1 As you become familiar or continue to explore the Cresset technology and software applications, we encourage you to look through the user manual. This is accessible from the Help menu. However, don t

More information

Introduction to Matrix Algebra and the Multivariate Normal Distribution

Introduction to Matrix Algebra and the Multivariate Normal Distribution Introduction to Matrix Algebra and the Multivariate Normal Distribution Introduction to Structural Equation Modeling Lecture #2 January 18, 2012 ERSH 8750: Lecture 2 Motivation for Learning the Multivariate

More information

PhyloNet. Yun Yu. Department of Computer Science Bioinformatics Group Rice University

PhyloNet. Yun Yu. Department of Computer Science Bioinformatics Group Rice University PhyloNet Yun Yu Department of Computer Science Bioinformatics Group Rice University yy9@rice.edu Symposium And Software School 2016 The University Of Texas At Austin Installation System requirement: Java

More information

Uta Bilow, Carsten Bittrich, Constanze Hasterok, Konrad Jende, Michael Kobel, Christian Rudolph, Felix Socher, Julia Woithe

Uta Bilow, Carsten Bittrich, Constanze Hasterok, Konrad Jende, Michael Kobel, Christian Rudolph, Felix Socher, Julia Woithe ATLAS W path Instructions for tutors Version from 2 February 2018 Uta Bilow, Carsten Bittrich, Constanze Hasterok, Konrad Jende, Michael Kobel, Christian Rudolph, Felix Socher, Julia Woithe Technische

More information

Applying MapCalc Map Analysis Software

Applying MapCalc Map Analysis Software Applying MapCalc Map Analysis Software Generating Surface Maps from Point Data: A farmer wants to generate a set of maps from soil samples he has been collecting for several years. Previously, he would

More information