TREE DIVERSITY ANALYSIS A manual and software for common statistical methods for ecological and biodiversity studies

Size: px
Start display at page:

Download "TREE DIVERSITY ANALYSIS A manual and software for common statistical methods for ecological and biodiversity studies"

Transcription

1 TREE DIVERSITY ANALYSIS A manual and software for common statistical methods for ecological and biodiversity studies Using the BiodiversityR software within the R environment R Kindt, World Agroforestry Centre, Nairobi (Kenya), January 2008 Introduction The software accompanying the Tree Diversity Analysis manual was developed for the R environment. Since the publication of the manual at the end of 2005, new versions of the base R and its accompanying packages have become available. These changes made it necessary to modify the BiodiversityR software. At the same time that these changes were implemented, the opportunity was taken to develop BiodiversityR into a package that can be installed and is documented in the same way as other R packages. Some new functions were integrated in the new version of the package. Functions that were not directly associated with the graphical user interface (GUI) provided by BiodiversityR were documented separately. This document shows where the Tree Diversity Analysis manual has become outdated. Main changes in the software The main changes in the software include the following: Installation Using the package and the graphical user interface after the package was installed Import of data via Excel workbooks or Access databases In the new version of the software, the package is installed and loaded as any other package developed within the R statistical environment. Two accompanying documents (Windows Installation and Using BiodiversityR under Windows, both in PDF format and available from the Software folder on the CD-ROM) provide instructions how BiodiversityR can be installed and used under MS Windows. These accompanying documents replace most of the information that is available in Chapter 3: Doing biodiversity analysis with Biodiversity.R of the manual. An important change from the previous instructions for installation is that the step of copying the Biodiversity.R and Rcmdr-menus.txt is not needed anymore (page 34 in the manual).

2 As the software is now a standard package, use the following command to load the package (obviously after the package was installed; alternatively you could use the following menu options: Packages > Load package ): library(biodiversityr) To access the graphical user interface of the package (still based on the Rcmdr package), use: BiodiversityRGUI() To learn more about the features of the BiodiversityR package use menu options of: BiodiversityR > Help about BiodiversityR > Help about BiodiversityR, or type:?biodiversityrgui A new feature of the updated package is that data can be imported from Excel workbooks or Access databases. To be able to import data for the community and environmental datasets (read Chapter 2: Data preparation if you do not know what information is contained in these datasets), data for the environmental data set needs to be available from an Excel worksheet (alternatively an Access table) named environmental. Data for the community data set should be available as a matrix (formatted as sites species, with species abundances as cell entries) from an Excel worksheet (alternatively an Access table) named community, or these data should be available in a stacked format (with separate columns for sites, species and abundances) from an Excel worksheet (alternatively an Access table) named stacked. Both datasets should be available from the same Excel workbook (or Access database). More information on importing data from Excel or Access is available from the help provided for the import.from.excel and import.from.access functions:?import.from.excel?import.from.access

3 Main changes in the examples of the manual The main change in the examples is that the menu options should now be accessed via BiodiversityR and not Biodiversity. Below, other changes in the different chapters are listed. Chapter 1: Sampling No changes. Chapter 2: Data preparation - Page 29 To load data from an external file (see chapter 3 for the required format of a data file): Data > Import data > from text file or clipboard Enter name for data set: data (choose any name) Click OK Browse for the file and click on it Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset Chapter 3: Doing biodiversity analysis with BiodiversityR Most information from this chapter has become outdated. Please see above and consult the accompanying documents of Windows Installation and Using BiodiversityR under Windows (both documents are in PDF format and are available from the Software folder on the CD-ROM).

4 Chapter 4: Analysis of species richness - Page 51 Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset - Page 54 To compare species richness between various subsets in the data using species accumulation curves Accum.6 <- accumcomp(dune, y=dune.env, factor='management', method='exact') Accum.6 dune.env$site.totals <- apply(dune,1,sum) Accum.7 <- accumcomp(dune, y=dune.env, factor='management', scale='site.totals', method='exact', xlab='pooled individuals') Click in the plot where you want to put the legend Accum.7

5 Chapter 5: Analysis of diversity - Page 69 Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset - Page 70 To calculate and plot a Rényi diversity profile: Renyi.1 <- renyiresult(dune) Renyi.1 renyiplot(renyi.1, labelit=false, legend=false) renyiplot(renyi.1, labelit=false, legend=false, evenness=true) To calculate and plot Rényi diversity profile for each site separately: Renyi.2 <- renyiresult(dune, method='s') Renyi.2 renyiplot(renyi.2, legend=false) renyiplot(renyi.2, legend=false, evenness=true) To calculate diversity indices for each site: Diversity.1 <- diversityresult(dune, index='shannon',method='s') Diversity.1 Diversity.2 <- diversityresult(dune, index='simpson',method='s') Diversity.2 Diversity.3 <- diversityresult(dune, index='logalpha',method='s') Diversity.3

6 -Page 70 (continued) To compare diversity between subsets of the dataset: Renyi.3 <- renyicomp(dune, y=dune.env, factor='management', permutations=100) Click in the graph where you want to put the legend Renyi.3 To calculate accumulation patterns for the Rényi diversity profile Renyi.4 <- renyiaccum(dune, permutations=100) Renyi.4 persp.renyiaccum(renyi.1)

7 Chapter 6: Analysis of counts of trees - Page 98 Load the datasets Panama species.txt and Panama environmental.txt (available from the Data folder on the CD-ROM) and make them the species and environmental datasets, respectively. Give them the names spec and faramea. Data > Import data > from text file or clipboard (Panama species.txt) Enter name for data set: spec Data > Import data > from text file or clipboard (Panama environmental.txt) Enter name for data set: faramea Data set: spec Data set: faramea As an alternative, load the dataset Faramea.txt (available from the Data folder on the CD-ROM) and make it both the species and environmental dataset (as both the species and environmental information is in the same dataset). Data > Import data > from text file or clipboard (Faramea.txt) Enter name for data set: faramea Data set: faramea Data set: faramea

8 - Page 100 Load the datasets Panama species.txt and Panama environmental.txt (these are available from the Data folder on the CD-ROM). Give them the names spec and faramea, respectively. Alternatively, load the dataset Faramea.txt (available from the Data folder on the CD-ROM) and give it the name faramea. # Alternative 1 spec <- read.table(file.choose()) attach(spec) faramea <- read.table(file.choose()) faramea$faramea.occidentalis <- spec$faramea.occidentalis attach(faramea) # Alternative 2 faramea <- read.table(file.choose()) attach(faramea) To calculate a linear regression model: Count.model1 <- lm(faramea.occidentalis ~ Precipitation, data=faramea, na.action=na.exclude) summary(count.model1) fitted(count.model1) predict(count.model1, interval='confidence') residuals(count.model1) shapiro.test(residuals(count.model1)) ks.test(residuals(count.model1), pnorm) anova(count.model1,test='f') Count.model2 <- lm(faramea.occidentalis ~ Age.cat, data=faramea, na.action=na.exclude) levene.test(residuals(count.model2), faramea$age.cat)

9 - Page 100 (continued) To plot a linear regression model: par(mfrow=c(2,2)) plot(count.model1) par(mfrow=c(1,1)) termplot(count.model1, se=t, partial.resid=t, rug=t, terms='precipitation') library(effects) plot(effect('precipitation',count.model1)) To check for the spatial distribution of residuals: surface.1 <- residualssurface(count.model1, na.omit(faramea), 'UTM.EW', 'UTM.NS', gam=f, npol=1, plotit=t, bubble=f, fill=f) surface.2 <- residualssurface(count.model1, na.omit(faramea), 'UTM.EW', 'UTM.NS', gam=f, npol=2, plotit=t, bubble=f, fill=f) surface.2 <- residualssurface(count.model1, na.omit(faramea), 'UTM.EW', 'UTM.NS', gam=f, npol=2, plotit=t, bubble=t, fill=f) surface.gam <- residualssurface(count.model1, na.omit(faramea), 'UTM.EW', 'UTM.NS', gam=t, npol=2, plotit=t, bubble=f, fill=t) summary(surface.1) anova(surface.1) correlogram(surface.1, nint=10) summary(surface.gam)

10 - Page 101 To calculate a generalised linear regression model (GLM): Count.model3 <- glm(formula = Faramea.occidentalis ~ Precipitation, family = poisson(),data=faramea, na.action=na.exclude) summary(count.model3) anova(count.model3,test='f') predict(count.model3, type='response', se.fit=t) Count.model4 <- glm(formula = Faramea.occidentalis ~ Precipitation, family = quasipoisson(), data=faramea, na.action=na.exclude) library(mass) Count.model5 <- glm.nb(faramea.occidentalis ~ Precipitation, maxit = 5000, init.theta = 1, data=faramea, na.action=na.exclude) To calculate a generalised additive regression model (GAM): library(mgcv) Count.model6 <- gam(faramea.occidentalis ~ s(precipitation), family=poisson(), data = na.omit(faramea)) summary(count.model6) predict(count.model6, type='response', se.fit=t) To calculate a multiple regression model: Count.model7 <- glm.nb(faramea.occidentalis ~ Precipitation + I(Precipitation^2), maxit = 5000, init.theta = 1, data=faramea, na.action=na.exclude) summary(count.model7) anova(count.model7, test='f') Anova(Count.model7, type='ii', test='wald') vif(lm(faramea.occidentalis ~ Precipitation + I(Precipitation^2), data=faramea, na.action=na.exclude))

11 Chapter 7: Analysis of presence or absence of species - Page 118 Load the datasets Panama species.txt and Panama environmental.txt (available from the Data folder on the CD-ROM) and make them the species and environmental datasets, respectively. Give them the names spec and faramea. Data > Import data > from text file or clipboard (Panama species.txt) Enter name for data set: spec Data > Import data > from text file or clipboard (Panama environmental.txt) Enter name for data set: faramea Data set: spec Data set: faramea As an alternative, load the dataset Faramea.txt (available from the Data folder on the CD-ROM) and make it both the species and environmental dataset (as both the species and environmental information is in the same dataset). Data > Import data > from text file or clipboard (Faramea.txt) Enter name for data set: faramea Data set: faramea Data set: faramea

12 - Page 119 To calculate a generalised additive regression model (GAM): BiodiversityR > Analysis of species as response > Species presence-absence as response Model options: gam model Response: Faramea.occidentalis Explanatory: s(precipitation) + Geology + Age.cat + s(elevation) print summary - Page 120 Load the datasets Panama species.txt and Panama environmental.txt (these are available from the Data folder on the CD-ROM). Give them the names spec and faramea, respectively. Alternatively, load the dataset Faramea.txt (available from the Data folder on the CD-ROM) and give it the name faramea. # Alternative 1 spec <- read.table(file.choose()) attach(spec) faramea <- read.table(file.choose()) faramea$faramea.occidentalis <- spec$faramea.occidentalis attach(faramea) # Alternative 2 faramea <- read.table(file.choose()) attach(faramea) To analyse presence or absence by cross-tabs: Do not do the first step of the manual table1 <- table(faramea.occidentalis>0, Age.cat) Presabs.1 <- chisq.test(table1) Presabs.1 Presabs.1$observed Presabs.1$expected

13 - Page 120 (continued) To calculate a generalised linear regression model (GLM): Presabs.model2 <- glm(formula = Faramea.occidentalis>0 ~ Age.cat, family = binomial(link=logit), data = faramea, na.action = na.exclude) summary(presabs.model2) anova(presabs.model2,test='f') predict(presabs.model2, type='response', se.fit=t) null.model <- glm(formula = Faramea.occidentalis>0 ~ 1, family = binomial(link=logit), data = na.omit(faramea), na.action = na.exclude) anova(null.model, Presabs.model2, test='chi') par(mfrow=c(2,2)) plot(presabs.model2) par(mfrow=c(1,1)) termplot(presabs.model2, se=t, partial.resid=t, rug=t, terms='age.cat') library(effects) plot(effect('age.cat', Presabs.model2)) Presabs.model3 <- glm(formula = Faramea.occidentalis>0 ~ Age.cat, family = quasibinomial(link=logit), data = faramea, na.action = na.exclude) Presabs.model4 <- glm(formula = Faramea.occidentalis>0 ~ Elevation, family = quasibinomial(link=logit), data = faramea, na.action = na.exclude) To calculate a generalised additive regression model (GAM): library(mgcv) Presabs.model5 <- gam(formula = Faramea.occidentalis>0 ~ s(precipitation) + Geology + Age.cat + s(elevation), family = quasibinomial(link=logit), data = faramea, na.action = na.exclude) summary(presabs.model5)

14 Chapter 8: Analysis of differences in species composition - Page 137 Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset - Page 138 Transformations of the species data community.hel <- disttransform(dune, method='hellinger') hellinger.distance <- vegdist(community.hel, method='euclidean')

15 Chapter 9: Analysis of ecological distance by clustering - Page 149 Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset - Page 161 Calculate and plot agglomerative clustering: library(cluster) distmatrix <- vegdist(dune, method='bray') distmatrix Cluster.1 <- agnes(distmatrix, method='single') summary(cluster.1) plot(cluster.1, which.plots=2) plot(cluster.1, which.plots=2, hang=-1) Cluster.2 <- agnes(distmatrix, method='single') summary(cluster.2) Cluster.3 <- agnes(distmatrix, method='complete') summary(cluster.1) Selecting cluster membership from a hierarchical clustering: cutree(cluster.1,k=4) plot(cluster.1, which.plots=2) rect.hclust(cluster.1, k=4)

16 Chapter 10: Analysis of ecological distance by ordination - Page 191 Select the species and environmental matrices: Select the dune.env dataset Select the dune dataset Calculating a Principal Component Analysis (PCA): BiodiversityR > Analysis of ecological distance > Unconstrained ordination Ordination method: PCA (or PCA (prcomp)) scaling: 1 Plot method: ordiplot Plot method: text sites Plot method: text species Plot method: ordiequilibriumcircle Calculating a Non-metric Multidimensional Scaling (NMS) Biodiversity > Analysis of ecological distance > Unconstrained ordination Ordination method: metamds (or NMS (standard)) Distance: bray NMS axes: 2 NMS permutations: 100 Plotting quantitative environmental characteristics onto an ordination graph: Biodiversity > Analysis of ecological distance > Unconstrained ordination Ordination method: PCoA Distance: bray Plot variable: A1 Plot method: ordiplot Plot method: envfit Plot method: ordibubble Plot method: ordisurf

17 - Page 191 (continued) Plotting qualitative environmental characteristics onto an ordination graph Biodiversity > Analysis of ecological distance > Unconstrained ordination Ordination method: PCoA Distance: bray Plot variable: Management Plot method: ordiplot Plot method: envfit Plot method: ordihull Plot method: ordispider Plot method: ordiellipse Plot method: ordisymbol - Page 194 Conducting a PCA on a transformed matrix Community.1 <- disttransform(dune, method='hellinger') Ordination.model2 <- rda(community.1) summary(ordination.model2, scaling=1) plot3 <- ordiplot(ordination.model2, scaling=1, type="text") - Page 196 Plotting clustering results onto an ordination graph distmatrix <- vegdist(dune, method='bray') cluster <- hclust(distmatrix, method='single') Ordination.model3 <- cmdscale(distmatrix, k=nrow(dune)-1, eig=t, add=f) plot4 <- ordiplot(ordination.model3, type='text') ordicluster(plot4, cluster)

18 - Page 197 (continued) Plotting quantitative environmental characteristics onto an ordination graph plot4 <- ordiplot(ordination.model3, type='text') fitted <- envfit(plot4, data.frame(a1), permutations=100) fitted plot(fitted, col='blue', cex=1) ordibubble(plot4,a1,fg='blue') ordisurf(plot4,a1,add=t) Plotting qualitative environmental characteristics onto an ordination graph plot4 <- ordiplot(ordination.model3, type='text') fitted <- envfit(plot4, data.frame(management), permutations=100) plot(fitted, col='blue', cex=1) fitted ordispider(plot4,management,col='blue') ordiellipse(plot4,management,col='blue') ordisymbol(plot4,dune.env,'management', legend=f, rainbow=t, cex=1)

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

diversity(datamatrix, index= shannon, base=exp(1))

diversity(datamatrix, index= shannon, base=exp(1)) Tutorial 11: Diversity, Indicator Species Analysis, Cluster Analysis Calculating Diversity Indices The vegan package contains the command diversity() for calculating Shannon and Simpson diversity indices.

More information

Multivariate Analysis of Ecological Data using CANOCO

Multivariate Analysis of Ecological Data using CANOCO Multivariate Analysis of Ecological Data using CANOCO JAN LEPS University of South Bohemia, and Czech Academy of Sciences, Czech Republic Universitats- uric! Lanttesbibiiothek Darmstadt Bibliothek Biologie

More information

Generalized Linear Models

Generalized Linear Models Generalized Linear Models Methods@Manchester Summer School Manchester University July 2 6, 2018 Generalized Linear Models: a generic approach to statistical modelling www.research-training.net/manchester2018

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

Analysis of community ecology data in R

Analysis of community ecology data in R Analysis of community ecology data in R Jinliang Liu ( 刘金亮 ) Institute of Ecology, College of Life Science Zhejiang University Email: jinliang.liu@foxmail.com http://jinliang.weebly.com R packages ###

More information

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Introduction Photometry is the measurement of the intensity or brightness of an astronomical

More information

HSC Chemistry 7.0 User's Guide

HSC Chemistry 7.0 User's Guide HSC Chemistry 7.0 47-1 HSC Chemistry 7.0 User's Guide Sim Flowsheet Module Experimental Mode Pertti Lamberg Outotec Research Oy Information Service P.O. Box 69 FIN - 28101 PORI, FINLAND Fax: +358-20 -

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

Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com)

Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com) Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com) Page 1 For the best results follow all of the instructions on the following pages to quickly access real-time

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

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

Using the Stock Hydrology Tools in ArcGIS

Using the Stock Hydrology Tools in ArcGIS Using the Stock Hydrology Tools in ArcGIS This lab exercise contains a homework assignment, detailed at the bottom, which is due Wednesday, October 6th. Several hydrology tools are part of the basic ArcGIS

More information

WMS 9.0 Tutorial GSSHA Modeling Basics Infiltration Learn how to add infiltration to your GSSHA model

WMS 9.0 Tutorial GSSHA Modeling Basics Infiltration Learn how to add infiltration to your GSSHA model v. 9.0 WMS 9.0 Tutorial GSSHA Modeling Basics Infiltration Learn how to add infiltration to your GSSHA model Objectives This workshop builds on the model developed in the previous workshop and shows you

More information

Task 1: Open ArcMap and activate the Spatial Analyst extension.

Task 1: Open ArcMap and activate the Spatial Analyst extension. Exercise 10 Spatial Analyst The following steps describe the general process that you will follow to complete the exercise. Specific steps will be provided later in the step-by-step instructions component

More information

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION In this lab you will learn how to use Excel to display the relationship between two quantitative variables, measure the strength and direction of the

More information

4/4/2018. Stepwise model fitting. CCA with first three variables only Call: cca(formula = community ~ env1 + env2 + env3, data = envdata)

4/4/2018. Stepwise model fitting. CCA with first three variables only Call: cca(formula = community ~ env1 + env2 + env3, data = envdata) 0 Correlation matrix for ironmental matrix 1 2 3 4 5 6 7 8 9 10 11 12 0.087451 0.113264 0.225049-0.13835 0.338366-0.01485 0.166309-0.11046 0.088327-0.41099-0.19944 1 1 2 0.087451 1 0.13723-0.27979 0.062584

More information

Reporting from DIMA Preparing for Data Analysis

Reporting from DIMA Preparing for Data Analysis Reporting from DIMA Preparing for Data Analysis After data collection and quality control, the next step in monitoring is extracting data for analysis. This document will guide you through extracting the

More information

DSP First. Laboratory Exercise #10. The z, n, and ˆω Domains

DSP First. Laboratory Exercise #10. The z, n, and ˆω Domains DSP First Laboratory Exercise #10 The z, n, and ˆω Domains 1 Objective The objective for this lab is to build an intuitive understanding of the relationship between the location of poles and zeros in the

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

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

Motion with Constant Acceleration

Motion with Constant Acceleration Motion with Constant Acceleration INTRODUCTION Newton s second law describes the acceleration of an object due to an applied net force. In this experiment you will use the ultrasonic motion detector to

More information

2/19/2018. Dataset: 85,122 islands 19,392 > 1km 2 17,883 with data

2/19/2018. Dataset: 85,122 islands 19,392 > 1km 2 17,883 with data The group numbers are arbitrary. Remember that you can rotate dendrograms around any node and not change the meaning. So, the order of the clusters is not meaningful. Taking a subset of the data changes

More information

Supplementary Material: A Guide for Using the Coupled SWAT MODSIM (SM) Model

Supplementary Material: A Guide for Using the Coupled SWAT MODSIM (SM) Model Supplementary Material: A Guide for Using the Coupled SWAT MODSIM (SM) Model Saeid Ashraf Vaghefi (saeedashrafv@gmail.com) The coupled SWAT MODSIM (SM) is a tool that can be used in integrated watershed

More information

Data Mining with the PDF-4 Databases. FeO Non-stoichiometric Oxides

Data Mining with the PDF-4 Databases. FeO Non-stoichiometric Oxides Data Mining with the PDF-4 Databases FeO Non-stoichiometric Oxides This is one of three example-based tutorials for using the data mining capabilities of the PDF-4+ database and it covers the following

More information

FireFamilyPlus Version 5.0

FireFamilyPlus Version 5.0 FireFamilyPlus Version 5.0 Working with the new 2016 NFDRS model Objectives During this presentation, we will discuss Changes to FireFamilyPlus Data requirements for NFDRS2016 Quality control for data

More information

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS Ground Temperature Measurements Computer P3 Throughout the daylight hours the sun heats up the air and the soil. Project 1 in this manual investigates the changes in air temperature during this process.

More information

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents

The OptiSage module. Use the OptiSage module for the assessment of Gibbs energy data. Table of contents The module Use the module for the assessment of Gibbs energy data. Various types of experimental data can be utilized in order to generate optimized parameters for the Gibbs energies of stoichiometric

More information

Photometry of Supernovae with Makali i

Photometry of Supernovae with Makali i Photometry of Supernovae with Makali i How to perform photometry specifically on supernovae targets using the free image processing software, Makali i This worksheet describes how to use photometry to

More information

GIS Software. Evolution of GIS Software

GIS Software. Evolution of GIS Software GIS Software The geoprocessing engines of GIS Major functions Collect, store, mange, query, analyze and present Key terms Program collections of instructions to manipulate data Package integrated collection

More information

Investigating Factors that Influence Climate

Investigating Factors that Influence Climate Investigating Factors that Influence Climate Description In this lesson* students investigate the climate of a particular latitude and longitude in North America by collecting real data from My NASA Data

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Basic Lesson 3: Using Microsoft Excel to Analyze Weather Data: Topography and Temperature This lesson uses NCDC data to compare

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

Newton s Second Law. Sample

Newton s Second Law. Sample Newton s Second Law Experiment 4 INTRODUCTION In your discussion of Newton s first law, you learned that when the sum of the forces acting on an object is zero, its velocity does not change. However, when

More information

Your work from these three exercises will be due Thursday, March 2 at class time.

Your work from these three exercises will be due Thursday, March 2 at class time. GEO231_week5_2012 GEO231, February 23, 2012 Today s class will consist of three separate parts: 1) Introduction to working with a compass 2) Continued work with spreadsheets 3) Introduction to surfer software

More information

Exercise 2: Working with Vector Data in ArcGIS 9.3

Exercise 2: Working with Vector Data in ArcGIS 9.3 Exercise 2: Working with Vector Data in ArcGIS 9.3 There are several tools in ArcGIS 9.3 used for GIS operations on vector data. In this exercise we will use: Analysis Tools in ArcToolbox Overlay Analysis

More information

Orbit Support Pack for Excel. user manual

Orbit Support Pack for Excel. user manual Orbit Support Pack for Excel user manual Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless noted otherwise. No part

More information

Session Objectives. Learn how to: Bring georeferenced aerial imagery into Civil 3D. Connect to and import GIS data using various tools and techniques.

Session Objectives. Learn how to: Bring georeferenced aerial imagery into Civil 3D. Connect to and import GIS data using various tools and techniques. GIS into Civil 3D Data 70th Annual Wisconsin Society of Land Surveyors' Institute January 24, 2019 1 Learn how to: Session Objectives Bring georeferenced aerial imagery into Civil 3D. Connect to and import

More information

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION

August 7, 2007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION August 7, 007 NUMERICAL SOLUTION OF LAPLACE'S EQUATION PURPOSE: This experiment illustrates the numerical solution of Laplace's Equation using a relaxation method. The results of the relaxation method

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

ICM-Chemist How-To Guide. Version 3.6-1g Last Updated 12/01/2009

ICM-Chemist How-To Guide. Version 3.6-1g Last Updated 12/01/2009 ICM-Chemist How-To Guide Version 3.6-1g Last Updated 12/01/2009 ICM-Chemist HOW TO IMPORT, SKETCH AND EDIT CHEMICALS How to access the ICM Molecular Editor. 1. Click here 2. Start sketching How to sketch

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

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

Lecture 2: Diversity, Distances, adonis. Lecture 2: Diversity, Distances, adonis. Alpha- Diversity. Alpha diversity definition(s)

Lecture 2: Diversity, Distances, adonis. Lecture 2: Diversity, Distances, adonis. Alpha- Diversity. Alpha diversity definition(s) Lecture 2: Diversity, Distances, adonis Lecture 2: Diversity, Distances, adonis Diversity - alpha, beta (, gamma) Beta- Diversity in practice: Ecological Distances Unsupervised Learning: Clustering, etc

More information

Technical Note Calculations of Orbital Overlap Range Function EDR( r ; d) and Overlap Distance D(r )using Multiwfn

Technical Note Calculations of Orbital Overlap Range Function EDR( r ; d) and Overlap Distance D(r )using Multiwfn Technical Note Calculations of Orbital Overlap Range Function EDR( r ; d) and Overlap Distance D(r )using Multiwfn Abstract The orbital overlap range function EDR( r; d) (J. Chem. Phys. 2014, 141, 144104)

More information

SIERRA ANALYTICS, INC. Version Polymerix Software User Manual

SIERRA ANALYTICS, INC. Version Polymerix Software User Manual SIERRA ANALYTICS, INC. Version 3.0.0 Polymerix Software User Manual V E R S I O N 3.0.0 M A R C H 2013 Polymerix Software User Manual Copyright 2010 to 2013 Sierra Analytics, Inc. 5815 Stoddard Road, Suite

More information

THE CRYSTAL BALL SCATTER CHART

THE CRYSTAL BALL SCATTER CHART One-Minute Spotlight THE CRYSTAL BALL SCATTER CHART Once you have run a simulation with Oracle s Crystal Ball, you can view several charts to help you visualize, understand, and communicate the simulation

More information

Calculating Bond Enthalpies of the Hydrides

Calculating Bond Enthalpies of the Hydrides Proposed Exercise for the General Chemistry Section of the Teaching with Cache Workbook: Calculating Bond Enthalpies of the Hydrides Contributed by James Foresman, Rachel Fogle, and Jeremy Beck, York College

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

Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates

Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates Chapter 9 Ingredients of Multivariable Change: Models, Graphs, Rates 9.1 Multivariable Functions and Contour Graphs Although Excel can easily draw 3-dimensional surfaces, they are often difficult to mathematically

More information

Tutorial 12 Excess Pore Pressure (B-bar method) Undrained loading (B-bar method) Initial pore pressure Excess pore pressure

Tutorial 12 Excess Pore Pressure (B-bar method) Undrained loading (B-bar method) Initial pore pressure Excess pore pressure Tutorial 12 Excess Pore Pressure (B-bar method) Undrained loading (B-bar method) Initial pore pressure Excess pore pressure Introduction This tutorial will demonstrate the Excess Pore Pressure (Undrained

More information

Interpolation Techniques

Interpolation Techniques Interpolation Techniques Using QGIS Tutorial ID: IGET_SA_002 This tutorial has been developed by BVIEER as part of the IGET web portal intended to provide easy access to geospatial education. This tutorial

More information

Other resources. Greengenes (bacterial) Silva (bacteria, archaeal and eukarya)

Other resources. Greengenes (bacterial)  Silva (bacteria, archaeal and eukarya) General QIIME resources http://qiime.org/ Blog (news, updates): http://qiime.wordpress.com/ Support/forum: https://groups.google.com/forum/#!forum/qiimeforum Citing QIIME: Caporaso, J.G. et al., QIIME

More information

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build a userdefined

OECD QSAR Toolbox v.3.3. Step-by-step example of how to build a userdefined OECD QSAR Toolbox v.3.3 Step-by-step example of how to build a userdefined QSAR Background Objectives The exercise Workflow of the exercise Outlook 2 Background This is a step-by-step presentation designed

More information

Using SkyTools to log Texas 45 list objects

Using SkyTools to log Texas 45 list objects Houston Astronomical Society Using SkyTools to log Texas 45 list objects You can use SkyTools to keep track of objects observed in Columbus and copy the output into the Texas 45 observation log. Preliminary

More information

85. Geo Processing Mineral Liberation Data

85. Geo Processing Mineral Liberation Data Research Center, Pori / Pertti Lamberg 15023-ORC-J 1 (23) 85. Geo Processing Mineral Liberation Data 85.1. Introduction The Mineral Liberation Analyzer, MLA, is an automated mineral analysis system that

More information

Project IV Fourier Series

Project IV Fourier Series Project IV Fourier Series Robert Jerrard Goal of the project To develop understanding of how many terms of a Fourier series are required in order to well-approximate the original function, and of the differences

More information

Automatic Watershed Delineation using ArcSWAT/Arc GIS

Automatic Watershed Delineation using ArcSWAT/Arc GIS Automatic Watershed Delineation using ArcSWAT/Arc GIS By: - Endager G. and Yalelet.F 1. Watershed Delineation This tool allows the user to delineate sub watersheds based on an automatic procedure using

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

PanosFX CALENDAR User guide. PanosFX CALENDAR. For Adobe Photoshop CC, CS6, CS5, CS4, CS3. PSD templates & language switcher actions.

PanosFX CALENDAR User guide. PanosFX CALENDAR. For Adobe Photoshop CC, CS6, CS5, CS4, CS3. PSD templates & language switcher actions. PanosFX CALENDAR For Adobe Photoshop CC, CS6, CS5, CS4, CS3 PSD templates & language switcher actions User Guide CONTENTS 1. THE BASICS... 1 1.1. Description... 1 1.2. How the files are organized... 2

More information

Using web-based Java pplane applet to graph solutions of systems of differential equations

Using web-based Java pplane applet to graph solutions of systems of differential equations Using web-based Java pplane applet to graph solutions of systems of differential equations Our class project for MA 341 involves using computer tools to analyse solutions of differential equations. This

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

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

FitPDF : a program to calculate and graph probability curves for data measurements with uncertainties

FitPDF : a program to calculate and graph probability curves for data measurements with uncertainties FitPDF : a program to calculate and graph probability curves for data measurements with uncertainties by Dr Bruce Eglington Saskatchewan Isotope Laboratory University of Saskatchewan Saskatoon Saskatchewan

More information

EasySDM: A Spatial Data Mining Platform

EasySDM: A Spatial Data Mining Platform EasySDM: A Spatial Data Mining Platform (User Manual) Authors: Amine Abdaoui and Mohamed Ala Al Chikha, Students at the National Computing Engineering School. Algiers. June 2013. 1. Overview EasySDM is

More information

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 A Brief Introduction To GRTensor On MAPLE Platform A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 March 2012 BY: ARSHDEEP SINGH BHATIA arshdeepsb@gmail.com

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

Creating Empirical Calibrations

Creating Empirical Calibrations 030.0023.01.0 Spreadsheet Manual Save Date: December 1, 2010 Table of Contents 1. Overview... 3 2. Enable S1 Calibration Macro... 4 3. Getting Ready... 4 4. Measuring the New Sample... 5 5. Adding New

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation.

ST-Links. SpatialKit. Version 3.0.x. For ArcMap. ArcMap Extension for Directly Connecting to Spatial Databases. ST-Links Corporation. ST-Links SpatialKit For ArcMap Version 3.0.x ArcMap Extension for Directly Connecting to Spatial Databases ST-Links Corporation www.st-links.com 2012 Contents Introduction... 3 Installation... 3 Database

More information

Geographical Information Systems

Geographical Information Systems Geographical Information Systems Geographical Information Systems (GIS) is a relatively new technology that is now prominent in the ecological sciences. This tool allows users to map geographic features

More information

DSP First Lab 11: PeZ - The z, n, and ωdomains

DSP First Lab 11: PeZ - The z, n, and ωdomains DSP First Lab : PeZ - The, n, and ωdomains The lab report/verification will be done by filling in the last page of this handout which addresses a list of observations to be made when using the PeZ GUI.

More information

TALLINN UNIVERSITY OF TECHNOLOGY, INSTITUTE OF PHYSICS 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE

TALLINN UNIVERSITY OF TECHNOLOGY, INSTITUTE OF PHYSICS 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE 6. THE TEMPERATURE DEPENDANCE OF RESISTANCE 1. Objective Determining temperature coefficient of metal and activation energy of self-conductance of semiconductor sample. 2. Equipment needed Metal and semiconductor

More information

MT-CLIM for Excel. William M. Jolly Numerical Terradynamic Simulation Group College of Forestry and Conservation University of Montana c 2003

MT-CLIM for Excel. William M. Jolly Numerical Terradynamic Simulation Group College of Forestry and Conservation University of Montana c 2003 MT-CLIM for Excel William M. Jolly Numerical Terradynamic Simulation Group College of Forestry and Conservation University of Montana c 2003 1 Contents 1 INTRODUCTION 3 2 MTCLIM for Excel (MTCLIM-XL) 3

More information

User Manual Software IT-Precipitation

User Manual Software IT-Precipitation CAPRAIT- 1 Precipitation IT-Precipitation Precipitation data analyzer V1.0.0 AUTHOR (S): Natalia León Laura López Juan Velandia PUBLICATION DATE: 24/05/2018 VERSION: 1.0.0 Copyright Copyright 2018 UNIVERSIDAD

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

Senior astrophysics Lab 2: Evolution of a 1 M star

Senior astrophysics Lab 2: Evolution of a 1 M star Senior astrophysics Lab 2: Evolution of a 1 M star Name: Checkpoints due: Friday 13 April 2018 1 Introduction This is the rst of two computer labs using existing software to investigate the internal structure

More information

St art. rp m. Km /h 1: : : : : : : : : : : : :5 2.5.

St art. rp m. Km /h 1: : : : : : : : : : : : :5 2.5. modified 22/05/14 t 3:5 2.5 3:5 5.0 3:5 7.5 4:0 0.0 4:0 2.5 4:0 5.0 4:0 7.5 4:1 0.0 4:1 2.5 4:1 5.0 4:1 7.5 4:2 0.0 Km /h 0 25 50 75 100 125 150 175 200 225 rp m 0 250 0 500 0 750 0 100 00 125 00 1 2 3

More information

85. Geo Processing Mineral Liberation Data

85. Geo Processing Mineral Liberation Data Research Center, Pori / Pertti Lamberg 14024-ORC-J 1 (23) 85. Geo Processing Mineral Liberation Data 85.1. Introduction The Mineral Liberation Analyzer, MLA, is an automated mineral analysis system that

More information

Multiple group models for ordinal variables

Multiple group models for ordinal variables Multiple group models for ordinal variables 1. Introduction In practice, many multivariate data sets consist of observations of ordinal variables rather than continuous variables. Most statistical methods

More information

ProMass Deconvolution User Training. Novatia LLC January, 2013

ProMass Deconvolution User Training. Novatia LLC January, 2013 ProMass Deconvolution User Training Novatia LLC January, 2013 Overview General info about ProMass Features Basics of how ProMass Deconvolution works Example Spectra Manual Deconvolution with ProMass Deconvolution

More information

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA

MERGING (MERGE / MOSAIC) GEOSPATIAL DATA This help guide describes how to merge two or more feature classes (vector) or rasters into one single feature class or raster dataset. The Merge Tool The Merge Tool combines input features from input

More information

Using the EartH2Observe data portal to analyse drought indicators. Lesson 4: Using Python Notebook to access and process data

Using the EartH2Observe data portal to analyse drought indicators. Lesson 4: Using Python Notebook to access and process data Using the EartH2Observe data portal to analyse drought indicators Lesson 4: Using Python Notebook to access and process data Preface In this fourth lesson you will again work with the Water Cycle Integrator

More information

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands.

The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. GIS LAB 7 The Geodatabase Working with Spatial Analyst. Calculating Elevation and Slope Values for Forested Roads, Streams, and Stands. This lab will ask you to work with the Spatial Analyst extension.

More information

Lasentec Product Group

Lasentec Product Group Document Number: 004-0043 Window Reference Procedure - M500/600 P Probes, version 6.0 and higher FBRM CI Software The Window Reference Procedure is the standard calibration procedure used to reference

More information

Logistic Regression Models to Integrate Actuarial and Psychological Risk Factors For predicting 5- and 10-Year Sexual and Violent Recidivism Rates

Logistic Regression Models to Integrate Actuarial and Psychological Risk Factors For predicting 5- and 10-Year Sexual and Violent Recidivism Rates Logistic Regression Models to Integrate Actuarial and Psychological Risk Factors For predicting 5- and 10-Year Sexual and Violent Recidivism Rates WI-ATSA June 2-3, 2016 Overview Brief description of logistic

More information

Signal Processing First Lab 11: PeZ - The z, n, and ˆω Domains

Signal Processing First Lab 11: PeZ - The z, n, and ˆω Domains Signal Processing First Lab : PeZ - The z, n, and ˆω Domains The lab report/verification will be done by filling in the last page of this handout which addresses a list of observations to be made when

More information

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica Installation SmartCAE`HeatTransmission` is delivered as either a Microsoft Windows Installer Package (SmartCAEHeatTransmission-1.0.msi) or a ZIP-File. If you have trouble installing the package, please

More information

Ratio of Polynomials Fit One Variable

Ratio of Polynomials Fit One Variable Chapter 375 Ratio of Polynomials Fit One Variable Introduction This program fits a model that is the ratio of two polynomials of up to fifth order. Examples of this type of model are: and Y = A0 + A1 X

More information

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6)

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V is a free, open source, visualization and data analysis software package that is the

More information

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Web Adams, GISP Data Dissemination Specialist U.S. Census Bureau New York Regional Office 1 What We Do Decennial Census Every

More information

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Thematic maps commonly deal with either of two kinds of data: Qualitative Data showing differences in kind or type (e.g.,

More information

DISCRETE RANDOM VARIABLES EXCEL LAB #3

DISCRETE RANDOM VARIABLES EXCEL LAB #3 DISCRETE RANDOM VARIABLES EXCEL LAB #3 ECON/BUSN 180: Quantitative Methods for Economics and Business Department of Economics and Business Lake Forest College Lake Forest, IL 60045 Copyright, 2011 Overview

More information

HEC-HMS Lab 2 Using Thiessen Polygon and Inverse Distance Weighting

HEC-HMS Lab 2 Using Thiessen Polygon and Inverse Distance Weighting HEC-HMS Lab 2 Using Thiessen Polygon and Inverse Distance Weighting Created by Venkatesh Merwade (vmerwade@purdue.edu) Learning outcomes The objective of this lab is to learn how to input data from multiple

More information

USER S MANUAL 1D Seismic Site Response Analysis Example University of California: San Diego August 30, 2017

USER S MANUAL 1D Seismic Site Response Analysis Example   University of California: San Diego August 30, 2017 USER S MANUAL 1D Seismic Site Response Analysis Example http://www.soilquake.net/ucsdsoilmodels/ University of California: San Diego August 30, 2017 Table of Contents USER'S MANUAL TABLE OF CONTENTS Page

More information

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE

EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE EXERCISE 12: IMPORTING LIDAR DATA INTO ARCGIS AND USING SPATIAL ANALYST TO MODEL FOREST STRUCTURE Document Updated: December, 2007 Introduction This exercise is designed to provide you with possible silvicultural

More information

Physics Lab #4: Citizen Science - The Milky Way Project

Physics Lab #4: Citizen Science - The Milky Way Project Physics 10263 Lab #4: Citizen Science - The Milky Way Project Introduction This lab is the first of several Citizen Science labs we will do together this semester as part of the zooniverse.org project

More information

2/7/2018. Strata. Strata

2/7/2018. Strata. Strata The strata option allows you to control how permutations are done. Specifically, to constrain permutations. Why would you want to do this? In this dataset, there are clear differences in area (A vs. B),

More information

Measuring earthquake-generated surface offsets from high-resolution digital topography

Measuring earthquake-generated surface offsets from high-resolution digital topography Measuring earthquake-generated surface offsets from high-resolution digital topography July 19, 2011 David E. Haddad david.e.haddad@asu.edu Active Tectonics, Quantitative Structural Geology, and Geomorphology

More information