Regression with Covariates Tutorial

Size: px
Start display at page:

Download "Regression with Covariates Tutorial"

Transcription

1 Regression with Covariates Tutorial Release 8.1 Golden Helix, Inc. March 18, 2014

2

3 Contents 1. Overview of the Project 2 A. Data preparation Controlling For Confounding Variables 3 A. Full Model Only B. Full vs. Reduced Model Accounting for SNP Correlation 8 A. Using a Moving Window Using the Regression Module for Model Comparison 10 i

4 ii

5 Regression with Covariates Tutorial, Release 8.1 Updated: March 6th, 2014 Level: Intermediate Packages: SNP Analysis, CNV Analysis, RNA-Seq Analysis, Power Seat This tutorial provides an in-depth look at the SVS 8 Regression Module. It will cover controlling for confounding variables, model comparison, and stepwise regression. The genotype spreadsheet included in the project file contains PCA-corrected numeric SNP columns for an additive model. The phenotype information is simulated. If you are interested in learning how to set up a linear regression model, please read our blog post on the topic. Requirements To complete this tutorial you will need to download and unzip the following file, which includes a Golden Helix Project File. Download Regression_Tutorial.zip File included in the above ZIP file: Regression_Tutorial - SVS Project file containing mapped genotype information and a phenotype spreadsheet. We hope you enjoy the experience and look forward to your feedback. Contents 1

6 1. Overview of the Project Regression analysis is a useful and necessary tool in any researcher s toolbox. This tutorial provides several workflows to showcase different ways to use regression analysis in a genotypic model assessment setting. Also included is an overview of how to interpret the Regression Results output. A. Data preparation Open the SVS Project available for download on the first page of this tutorial. You should see two spreadsheets: a phenotype spreadsheet (HM_Sim_Pheno... ) and a marker-mapped genotype spreadsheet (PCA-Corrected HM_500K_Geno... ). The genotype spreadsheet contains numeric values from chromosome 1 that have been corrected for 3 principle components. This data comes from HapMap samples and is thus tainted by population stratification. Open the HM_Sim_Pheno Dataset - Sheet 1. You will need to join this spreadsheet with the genotype spreadsheet in order to perform regression. Choose File >Join or Merge Spreadsheets. Select the PCA_Corrected HM_500K_Geno - Sheet 1 and click OK. After New dataset name: type Pheno + Geno and under Spreadsheet as Child of choose Current spreadsheet. Click OK. Now you should have the phenotypic and genotypic information in the same spreadsheet. First we will use the phenotypic and genotypic information to predict case/control status in the full model. SVS will recognize case/control status as a binary dependent variable and automatically perform logistic regression. Using a continuous dependent variable does not change the model building steps; you would perform linear regression instead of logistic regression and the output would change accordingly. Note: To perform regression analysis in SVS the genotype data must be encoded numerically. If necessary you can recode your data by going to Edit >Recode >Recode Genotypes and selecting the radio button Encode genotypes numerically based on genetic model: and choosing one of the provided numeric models. Currently, multivariate regression (more than one dependent variable in the model) is not supported. A single dependent column must be indicated and must contain real-, integer-, or binary-values. If you are interested in building a model to predict more than one variable, performing several simple regressions is recommended. A categorical variable must be converted into a binary- or integer-valued variable if you wish make it dependent in the model. 2

7 2. Controlling For Confounding Variables If you build a model and the response is highly correlated with one or more of the predictors (or confounded by one or more variables), these predictors can suppress possible real associations. For the regression model, the additive genetic model covariates will predict the case/control status which is known to be correlated with blood pressure. You will see that the log10 P-values when testing the relationship between the two blood pressure phenotypes (sbp and dbp) and case status are very high and could explain other possible significant associations. A. Full Model Only First we will perform regression on every column using a model with an intercept and one predictor, or covariate, represented by each column other than the column assigned as the dependent variable. This technique computes the significance of that predictor using the full model and a reduced model with just an intercept. This technique will individually assess the relationship between the dependent variable and the covariate (predictor). Open the Pheno + Geno - Sheet 1 spreadsheet. First you must indicate a dependent variable. To do this, leftclick once on the Case/Control column header (the column should turn magenta). Choose Numeric >Numeric Regression Analysis. Select Regress on each of the numeric columns. Open the Output Parameters tab and check Output data for P-P/Q-Q plots. This option includes several extra columns in the resulting spreadsheet, including a log10 P column which is useful for plotting. Confirm your options with Figure 1 and Figure 2 and click Run. After the regression runs, a Regression Results spreadsheet will appear. Because we will be doing several regression analyses, we will rename each node appropriately. From the Project Navigator, right click on the Regression Results node and select Rename Node. Rename Regression Results to Regression Results - All Columns. Open the Regression Results - All Columns spreadsheet again and take a look at the log10 Full-Model P column. The first row represents the blood pressure covariate (SBP) and as you can see, it has a very large log10 P value. Scroll over to the Odds Ratio column (column 10) and you will see that the odds of a case after an increase in 1 unit of SBP or DBP is about 1.1 times the odds before the increase. A 5 unit increase in blood pressure would correspond to a five-fold increase in the odds of that individual being a case. On closer inspection high blood pressure is very common among cases and is confounding the results A plot of the results will allow for comparison with the model that accounts for SBP, as we will see later. In the Regression Results - All Columns spreadsheet, right-click on the log10 Full-Model P column (column 2) and choose Plot Variable in GenomeBrowse. Zoom into chromosome 1 by double clicking on the cytoband track and the following plot (Figure 3) appears. 3

8 Regression with Covariates Tutorial, Release 8.1 Figure 1. Regression window A Figure 2. Regression window B 4 2. Controlling For Confounding Variables

9 Regression with Covariates Tutorial, Release 8.1 Figure 3. P-value plot all columns Notice that there are two areas of possible interest. Keep these in mind when we look at the p-values, after correcting for SBP. B. Full vs. Reduced Model The next step is to correct for the confounding variables and compare to the results from the Full Model. Correcting for a confounding variable adds this covariate to both the reduced and full models. Then for all of the other covariates, the full model contains an intercept, the SBP predictor and that covariate. The reduced model contains only the intercept and SBP. The comparison between the full and reduced models allows for individual assessment of each covariate after accounting for SBP. Open the Pheno + Geno - Sheet 1 spreadsheet. The Case/Control column should still be selected as the dependent variable. Select Numeric >Numeric Regression Analysis to bring up the Regression Analysis window. This time choose Correct for covariate(s) underneath Regress on each of the numeric columns. The Reduced Model Covariates section should activate. Next to the Reduced Model Covariates box, click Add Covariate. From the resulting list check SBP and click Add and then Close to close this window. The rest of the options should have remained the same from the last analysis. Confirm that your parameters match those in Figure 4 and click Run. From the Project Navigator rename the Regression Results to Regression Results Corrected for SBP. Notice in the resulting spreadsheet that since SBP has been corrected for, it is no longer listed in the results spreadsheet as a covariate. Next, add these results to our first plot to compare the two analyses. Open the Plot of Column -log10 Full-Model P from Regression Results - All Columns plot. B. Full vs. Reduced Model 5

10 Regression with Covariates Tutorial, Release 8.1 Figure 4. Regression window Click the top -log10 Full-Model P node in the Plot Tree, then under the Controls window on the Add tab click Add Item. From the Add Data Sources dialog, click the Project button and select the Regression Results - Corrected for SBP spreadsheet and click -log10 FvR Model P. It should look like Figure 5 then press Plot & Close. Now change the color of the new data points by clicking the -log10 FvR Model P node and under the Display tab click the blue box under Style* and change it to green. Now we only see one area of interest in green compared to the two blue regions that showed high log10 P values. The genetic region that was significant in the previous analysis is probably also associated with high blood pressure and was thus confounding the results. The region that shows an association has even larger log10 P values after correcting for this confounding variable Controlling For Confounding Variables

11 Regression with Covariates Tutorial, Release 8.1 Figure 5. Add Data Sources window Figure 6. P-value plot comparison B. Full vs. Reduced Model 7

12 3. Accounting for SNP Correlation If the regression analysis uses the entire genome as predictors, then it is recommended that the Use a moving window of regressors option is selected. A moving window tries to incorporate consecutive SNPs, which might be in high linkage disequilibrium, providing information not captured with single variable regression. This can also be accomplished by detecting Haplotype blocks to use for regression. For this analysis, we will use a dynamic moving window size with a fixed number of base pairs. A. Using a Moving Window As SBP is a known confounding variable, it is included as a reduced model regressor for this analysis. Open the Pheno + Geno - Sheet 1 spreadsheet. The Case/Control column should still be selected as the dependent variable. Select Numeric >Numeric Regression Analysis to bring up the Regression window. This time choose Regress on a moving window with parameters: radio button under Selection Parameters. Then choose Dynamic window over mapped numeric columns with size kb and with max markers: 20. Add SBP as a Reduced Model Regressor in the same manner as before. Confirm that your parameters match those in Figure 7 and click Run. From the Project Navigator rename the Regression Results to Regression Results Moving Window as before. In the Regression Results Moving Window spreadsheet, right-click on the log10 FvR Model P column (column 2) and choose Plot Variable in GenomeBrowse. Then once again zoom into chromosome 1. As you can see from Figure 8, this plot is similar to the previously corrected regression, however the peak around 1q32.2 has a maximum log10 P-value of around 8 on the y-axis, compared to before when it had a maximum of around 10. 8

13 Regression with Covariates Tutorial, Release 8.1 Figure 7. Regression Options (Moving Window) Figure 8. P-value plot (Moving Window) A. Using a Moving Window 9

14 4. Using the Regression Module for Model Comparison The SVS 8 regression module can also be used for model selection. This is a more classical way of thinking about regression, comparing the added effect of full model regressors with a full vs. reduced model test. For this demonstration we will subset out the non-genetic information and only use the phenotypes as covariates. Open the Pheno + Geno - Sheet 1 spreadsheet and choose Select >Activate by Chromosomes, then uncheck 1 and click OK. This will create Pheno + Geno Sheet 2. Select Numeric >Numeric Regression Analysis to bring up the Regression window. This time choose Perform single regression with selected covariates under Selection Parameters. The covariates that are added as reduced model covariates are automatically included in the full model. Therefore to test for the effect of a regressor after correcting for the covariates selected for the reduced model, add the additional full model regressors to the Full model covariates: box. Check Correct for Covariate(s) and then under Reduced Model Covariates choose Add Covariate. Check both SBP and Previous Event and then click Add. Click Close to close the window. Next, add Chng in Dbp in the same manner under Full Model Covariates. Make sure the window looks like Figure 9 and click Run. This will test whether Chng in Dbp improves the fit of the model by explaining more of the dependent variable response after accounting for SBP and Previous Event. More specifically, the following models are used in the test: Full Model: Reduced Model: Case/Control i β 0 + β 1 * (SBP) + β 2 * (Previous Event) + β 3 * (Chng in Dbp) + ε i Case/Control i β 0 + β 1 * (SBP) + β 2 * (Previous Event) + ε i And the hypotheses are: H0: β 3 = 0 and Ha: β 3 0 The Regression Statistics Viewer shows a P-value of about for the full vs. reduced model (Figure 10). This means that Chng in Dbp is useful in predicting Case/Control status after accounting for SBP and Previous Event. For more information about the additional outputs in the Regression Statistics Viewer, see the Regression Analysis chapter in the SVS manual. 10

15 Regression with Covariates Tutorial, Release 8.1 Figure 9. Regression Options (perform regression with selected covariates only) 11

16 Regression with Covariates Tutorial, Release 8.1 Figure 10. Regression Statistics Viewer Using the Regression Module for Model Comparison

CNV Univariate Analysis Tutorial

CNV Univariate Analysis Tutorial CNV Univariate Analysis Tutorial Release 8.1 Golden Helix, Inc. March 18, 2014 Contents 1. Overview 2 2. CNAM Optimal Segmenting 4 A. Performing CNAM Optimal Segmenting..................................

More information

Prism 6 Step-by-Step Example Linear Standard Curves Interpolating from a standard curve is a common way of quantifying the concentration of a sample.

Prism 6 Step-by-Step Example Linear Standard Curves Interpolating from a standard curve is a common way of quantifying the concentration of a sample. Prism 6 Step-by-Step Example Linear Standard Curves Interpolating from a standard curve is a common way of quantifying the concentration of a sample. Step 1 is to construct a standard curve that defines

More information

Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2014/11/6) The numbers of figures in the SPSS_screenshot.pptx are shown in red.

Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2014/11/6) The numbers of figures in the SPSS_screenshot.pptx are shown in red. Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2014/11/6) The numbers of figures in the SPSS_screenshot.pptx are shown in red. 1. How to display English messages from IBM SPSS Statistics

More information

Step by Step Guide to Importing Genetic Data into JMP Genomics

Step by Step Guide to Importing Genetic Data into JMP Genomics Step by Step Guide to Importing Genetic Data into JMP Genomics Page 1 Introduction Data for genetic analyses can exist in a variety of formats. Before this data can be analyzed it must imported into one

More information

SeattleSNPs Interactive Tutorial: Web Tools for Site Selection, Linkage Disequilibrium and Haplotype Analysis

SeattleSNPs Interactive Tutorial: Web Tools for Site Selection, Linkage Disequilibrium and Haplotype Analysis SeattleSNPs Interactive Tutorial: Web Tools for Site Selection, Linkage Disequilibrium and Haplotype Analysis Goal: This tutorial introduces several websites and tools useful for determining linkage disequilibrium

More information

Tutorial on gplink. http://pngu.mgh.harvard.edu/~purcell/plink/gplink.shtml. PLINK tutorial, December 2006; Shaun Purcell, shaun@pngu.mgh.harvard.

Tutorial on gplink. http://pngu.mgh.harvard.edu/~purcell/plink/gplink.shtml. PLINK tutorial, December 2006; Shaun Purcell, shaun@pngu.mgh.harvard. Tutorial on gplink http://pngu.mgh.harvard.edu/~purcell/plink/gplink.shtml Basic gplink analyses Data management Summary statistics Association analysis Population stratification IBD-based analysis gplink

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Pie Charts or Bubble Maps This TIPS&TRICKS is intended to aid a person working in Petrel who needs to make a display showing the relative proportion

More information

Step-by-Step Guide to Bi-Parental Linkage Mapping WHITE PAPER

Step-by-Step Guide to Bi-Parental Linkage Mapping WHITE PAPER Step-by-Step Guide to Bi-Parental Linkage Mapping WHITE PAPER JMP Genomics Step-by-Step Guide to Bi-Parental Linkage Mapping Introduction JMP Genomics offers several tools for the creation of linkage maps

More information

Stepwise Regression. Chapter 311. Introduction. Variable Selection Procedures. Forward (Step-Up) Selection

Stepwise Regression. Chapter 311. Introduction. Variable Selection Procedures. Forward (Step-Up) Selection Chapter 311 Introduction Often, theory and experience give only general direction as to which of a pool of candidate variables (including transformed variables) should be included in the regression model.

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

STATISTICA Formula Guide: Logistic Regression. Table of Contents

STATISTICA Formula Guide: Logistic Regression. Table of Contents : Table of Contents... 1 Overview of Model... 1 Dispersion... 2 Parameterization... 3 Sigma-Restricted Model... 3 Overparameterized Model... 4 Reference Coding... 4 Model Summary (Summary Tab)... 5 Summary

More information

Hierarchical Clustering Analysis

Hierarchical Clustering Analysis Hierarchical Clustering Analysis What is Hierarchical Clustering? Hierarchical clustering is used to group similar objects into clusters. In the beginning, each row and/or column is considered a cluster.

More information

Analyzing the Effect of Treatment and Time on Gene Expression in Partek Genomics Suite (PGS) 6.6: A Breast Cancer Study

Analyzing the Effect of Treatment and Time on Gene Expression in Partek Genomics Suite (PGS) 6.6: A Breast Cancer Study Analyzing the Effect of Treatment and Time on Gene Expression in Partek Genomics Suite (PGS) 6.6: A Breast Cancer Study The data for this study is taken from experiment GSE848 from the Gene Expression

More information

Adobe Acrobat X Pro Creating & Working with PDF Documents

Adobe Acrobat X Pro Creating & Working with PDF Documents Adobe Acrobat X Pro Creating & Working with PDF Documents Overview Creating PDF documents is useful when you want to maintain the format of your document(s). As a PDF document, your file maintains its

More information

Statistical Analysis for Genetic Epidemiology (S.A.G.E.) Version 6.2 Graphical User Interface (GUI) Manual

Statistical Analysis for Genetic Epidemiology (S.A.G.E.) Version 6.2 Graphical User Interface (GUI) Manual Statistical Analysis for Genetic Epidemiology (S.A.G.E.) Version 6.2 Graphical User Interface (GUI) Manual Department of Epidemiology and Biostatistics Wolstein Research Building 2103 Cornell Rd Case Western

More information

Excel 2003: Ringtones Task

Excel 2003: Ringtones Task Excel 2003: Ringtones Task 1. Open up a blank spreadsheet 2. Save the spreadsheet to your area and call it Ringtones.xls 3. Add the data as shown here, making sure you keep to the cells as shown Make sure

More information

Analyzing microrna Data and Integrating mirna with Gene Expression Data in Partek Genomics Suite 6.6

Analyzing microrna Data and Integrating mirna with Gene Expression Data in Partek Genomics Suite 6.6 Analyzing microrna Data and Integrating mirna with Gene Expression Data in Partek Genomics Suite 6.6 Overview This tutorial outlines how microrna data can be analyzed within Partek Genomics Suite. Additionally,

More information

RuleBender 1.1.415 Tutorial

RuleBender 1.1.415 Tutorial RuleBender 1.1.415 Tutorial Installing and Launching RuleBender Requirements OSX Getting Started Linux Getting Started Windows Getting Started Using the Editor The Main Window Creating and Opening Files

More information

Scatter Plots with Error Bars

Scatter Plots with Error Bars Chapter 165 Scatter Plots with Error Bars Introduction The procedure extends the capability of the basic scatter plot by allowing you to plot the variability in Y and X corresponding to each point. Each

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Tutorial for proteome data analysis using the Perseus software platform

Tutorial for proteome data analysis using the Perseus software platform Tutorial for proteome data analysis using the Perseus software platform Laboratory of Mass Spectrometry, LNBio, CNPEM Tutorial version 1.0, January 2014. Note: This tutorial was written based on the information

More information

Doña Ana County, NM Interactive Zoning Map

Doña Ana County, NM Interactive Zoning Map Doña Ana County, NM Interactive Zoning Map Users Guide Basic Map Navigation Zoom Control The most efficient way of zooming, or changing the scale of the map is with the use of a mouse with a scroll wheel.

More information

Analysis of FFPE DNA Data in CNAG 2.0 A Manual

Analysis of FFPE DNA Data in CNAG 2.0 A Manual Analysis of FFPE DNA Data in CNAG 2.0 A Manual Table of Contents: I. Background P.2 II. Installation and Setup a. Download/Install CNAG 2.0 P.3 b. Setup P.4 III. Extract Mapping 500K FFPE Data P.7 IV.

More information

IGSS. Interactive Graphical SCADA System. Quick Start Guide

IGSS. Interactive Graphical SCADA System. Quick Start Guide IGSS Interactive Graphical SCADA System Quick Start Guide Page 2 of 26 Quick Start Guide Introduction This guide is intended to get you up and running with the IGSS FREE50 license as fast as possible.

More information

Getting Started With SPSS

Getting Started With SPSS Getting Started With SPSS To investigate the research questions posed in each section of this site, we ll be using SPSS, an IBM computer software package specifically designed for use in the social sciences.

More information

Lesson 3 - Processing a Multi-Layer Yield History. Exercise 3-4

Lesson 3 - Processing a Multi-Layer Yield History. Exercise 3-4 Lesson 3 - Processing a Multi-Layer Yield History Exercise 3-4 Objective: Develop yield-based management zones. 1. File-Open Project_3-3.map. 2. Double click the Average Yield surface component in the

More information

Instructions for creating a data entry form in Microsoft Excel

Instructions for creating a data entry form in Microsoft Excel 1 of 5 You have several options when you want to enter data manually in Excel. You can enter data in one cell, in several cells at the same time, or on more than one worksheet (worksheet/spreadsheet: The

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

New Work Item for ISO 3534-5 Predictive Analytics (Initial Notes and Thoughts) Introduction

New Work Item for ISO 3534-5 Predictive Analytics (Initial Notes and Thoughts) Introduction Introduction New Work Item for ISO 3534-5 Predictive Analytics (Initial Notes and Thoughts) Predictive analytics encompasses the body of statistical knowledge supporting the analysis of massive data sets.

More information

Budget Process using PeopleSoft Financial 9.1

Budget Process using PeopleSoft Financial 9.1 Section 14 Budget 14.1 Budget Overview Each council must prepare a yearly operating budget and, in many cases, multiple budgets to respond to the needs of the council and the legal requirement to expend

More information

Interactive Excel Spreadsheets:

Interactive Excel Spreadsheets: Interactive Excel Spreadsheets: Constructing Visualization Tools to Enhance Your Learner-centered Math and Science Classroom Scott A. Sinex Department of Physical Sciences and Engineering Prince George

More information

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your

More information

Linear Referencing Tutorial

Linear Referencing Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents An overview of the linear referencing tutorial........................ 3 Exercise 1: Organizing your linear referencing data in ArcCatalog...............

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2).

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2). Assignment 1 Introduction to Excel and SPSS Graphing and Data Manipulation Part 1 Graphing (worksheet 1) 1. Download the BHM excel data file from the course website. 2. Save it to the desktop as an excel

More information

Applicant Workflow Hiring Managers

Applicant Workflow Hiring Managers Applicant Workflow Hiring Managers Below is a visual diagram for the staff applicant flows and statuses in the Santa Clara University Online Recruitment System. The applicant workflow process: 1. The Applicant

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Histograms and SGS Modeling Histograms are used daily for interpretation, quality control, and modeling in Petrel. This TIPS&TRICKS document briefly

More information

SPSS Resources. 1. See website (readings) for SPSS tutorial & Stats handout

SPSS Resources. 1. See website (readings) for SPSS tutorial & Stats handout Analyzing Data SPSS Resources 1. See website (readings) for SPSS tutorial & Stats handout Don t have your own copy of SPSS? 1. Use the libraries to analyze your data 2. Download a trial version of SPSS

More information

Create a Pipe Network with Didger & Voxler

Create a Pipe Network with Didger & Voxler Create a Pipe Network with Didger & Voxler Over the past few years, Golden Software s technical support team has been contacted a few times with user questions about using Voxler s WellRender module to

More information

http://bco-dmo.org Go to: http://usjgofs.whoi.edu/jg/dir/jgofs/ URL: http://usjgofs.whoi.edu/jg/serv/jgofs/arabian/inventory.html0

http://bco-dmo.org Go to: http://usjgofs.whoi.edu/jg/dir/jgofs/ URL: http://usjgofs.whoi.edu/jg/serv/jgofs/arabian/inventory.html0 http://bco-dmo.org DATA ACCESS TUTORIAL 2012 OCB PI Summer Workshop Data access: catalog browse scenario 1: you are a former US JGOFS or US GLOBEC researcher, and you know what data you are looking for

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Data analysis process

Data analysis process Data analysis process Data collection and preparation Collect data Prepare codebook Set up structure of data Enter data Screen data for errors Exploration of data Descriptive Statistics Graphs Analysis

More information

Creating a Table of Contents in Microsoft Word 2011

Creating a Table of Contents in Microsoft Word 2011 1 Creating a Table of Contents in Microsoft Word 2011 Sections and Pagination in Long Documents When creating a long document like a dissertation, which requires specific formatting for pagination, there

More information

Binary Logistic Regression

Binary Logistic Regression Binary Logistic Regression Main Effects Model Logistic regression will accept quantitative, binary or categorical predictors and will code the latter two in various ways. Here s a simple model including

More information

Visualization of Phylogenetic Trees and Metadata

Visualization of Phylogenetic Trees and Metadata Visualization of Phylogenetic Trees and Metadata November 27, 2015 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com

More information

Instructions to view & create.kmz/.kml files from Google Earth

Instructions to view & create.kmz/.kml files from Google Earth Page 1 of 6 Instructions to view & create.kmz/.kml files from Google Earth Make sure you have Google Earth downloaded on your computer. If you don t, please visit this link to download Google Earth http://www.google.com/earth/download/ge.

More information

Downloading RIT Account Analysis Reports into Excel

Downloading RIT Account Analysis Reports into Excel Downloading RIT Account Analysis Reports into Excel In the last lesson you learned how to access the Account Analysis detail and export it to Excel through the Account Analysis function. Another way to

More information

How to Download Census Data from American Factfinder and Display it in ArcMap

How to Download Census Data from American Factfinder and Display it in ArcMap How to Download Census Data from American Factfinder and Display it in ArcMap Factfinder provides census and ACS (American Community Survey) data that can be downloaded in a tabular format and joined with

More information

GlobiLab 1.0 App for Android Quick Start Guide

GlobiLab 1.0 App for Android Quick Start Guide GlobiLab 1.0 App for Android Quick Start Guide Contents GlobiLab overview... 1 Getting started establishing communication. 2 Working with the different display types... 3 Graph and Labdisc controls...

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Metadata Import Plugin User manual

Metadata Import Plugin User manual Metadata Import Plugin User manual User manual for Metadata Import Plugin 1.0 Windows, Mac OS X and Linux August 30, 2013 This software is for research purposes only. CLC bio Silkeborgvej 2 Prismet DK-8000

More information

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

SPSS Introduction. Yi Li

SPSS Introduction. Yi Li SPSS Introduction Yi Li Note: The report is based on the websites below http://glimo.vub.ac.be/downloads/eng_spss_basic.pdf http://academic.udayton.edu/gregelvers/psy216/spss http://www.nursing.ucdenver.edu/pdf/factoranalysishowto.pdf

More information

Aspen Gradebook - Teacher

Aspen Gradebook - Teacher Aspen Gradebook - Teacher Gradebook Setup You can use the teacher Gradebook in Staff View to enter and track assignments, and grades in your course sections. To begin using the gradebook you ll need to

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

Microsoft Excel 2013: Charts June 2014

Microsoft Excel 2013: Charts June 2014 Microsoft Excel 2013: Charts June 2014 Description We will focus on Excel features for graphs and charts. We will discuss multiple axes, formatting data, choosing chart type, adding notes and images, and

More information

ASSIGNMENT 4 PREDICTIVE MODELING AND GAINS CHARTS

ASSIGNMENT 4 PREDICTIVE MODELING AND GAINS CHARTS DATABASE MARKETING Fall 2015, max 24 credits Dead line 15.10. ASSIGNMENT 4 PREDICTIVE MODELING AND GAINS CHARTS PART A Gains chart with excel Prepare a gains chart from the data in \\work\courses\e\27\e20100\ass4b.xls.

More information

Replacing TaqMan SNP Genotyping Assays that Fail Applied Biosystems Manufacturing Quality Control. Begin

Replacing TaqMan SNP Genotyping Assays that Fail Applied Biosystems Manufacturing Quality Control. Begin User Bulletin TaqMan SNP Genotyping Assays May 2008 SUBJECT: Replacing TaqMan SNP Genotyping Assays that Fail Applied Biosystems Manufacturing Quality Control In This Bulletin Overview This user bulletin

More information

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

--Verity Software House, ModFit for Proliferation http://www.vsh.com/ offers online tutorials

--Verity Software House, ModFit for Proliferation http://www.vsh.com/ offers online tutorials Customers may want to use another analysis software package with data collected on Attune. Reason for this include: they already have the SW and are confortable with using it, their institution may provide

More information

Creating Pivot Tables

Creating Pivot Tables Creating Pivot Tables Example Using CIA Inspection Information This is a step by step guide of how to create pivot tables using Microsoft Excel. You can create a pivot tables from any database you have

More information

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

ImageNow Document Management Created on Friday, October 01, 2010

ImageNow Document Management Created on Friday, October 01, 2010 ImageNow Document Management Created on Friday, October 01, 2010 Table of Contents Training Guide ImageNow Document Management...1 Document Processing...1 Editing Document Keys Manually... 1 Using Annotations...

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Lab 11: Budgeting with Excel

Lab 11: Budgeting with Excel Lab 11: Budgeting with Excel This lab exercise will have you track credit card bills over a period of three months. You will determine those months in which a budget was met for various categories. You

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Import and Digitize from a Bitmap Using Petrel Often a map with culture lines, contours or well spots is provided in paper form and must be entered into

More information

NICK COLLIER - REPAST DEVELOPMENT TEAM

NICK COLLIER - REPAST DEVELOPMENT TEAM DATA COLLECTION FOR REPAST SIMPHONY JAVA AND RELOGO NICK COLLIER - REPAST DEVELOPMENT TEAM 0. Before We Get Started This document is an introduction to the data collection system introduced in Repast Simphony

More information

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro.

Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Microsoft Excel 2013: Macro to apply Custom Margins, Titles, Gridlines, Autofit Width & Add Macro to Quick Access Toolbar & How to Delete a Macro. Do you need to always add gridlines, bold the heading

More information

Data Analysis Stata (version 13)

Data Analysis Stata (version 13) Data Analysis Stata (version 13) There are many options for learning Stata (www.stata.com). Stata s help facility (accessed by a pull-down menu or by command or by clicking on?) consists of help files

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Microsoft Excel Tutorial

Microsoft Excel Tutorial Microsoft Excel Tutorial Microsoft Excel spreadsheets are a powerful and easy to use tool to record, plot and analyze experimental data. Excel is commonly used by engineers to tackle sophisticated computations

More information

Company Setup 401k Tab

Company Setup 401k Tab Reference Sheet Company Setup 401k Tab Use this page to define company level 401(k) information, including employee status codes, 401(k) sources, and 401(k) funds. The definitions you create here become

More information

Rational DOORS Next Generation. Quick Start Tutorial

Rational DOORS Next Generation. Quick Start Tutorial Rational DOORS Next Generation Quick Start Tutorial 1 Contents 1. Introduction... 2 2. Terminology... 3 3. Project Area Preparation... 3 3.1 Creating the project area... 3 4 Browsing Artifacts and Modules...

More information

Formatting Report Output to MS Excel

Formatting Report Output to MS Excel Digital Innovation Users Conference 2013 Formatting Report Output to MS Excel Kansas City, MO October 2-4 Copyright 2013 Digital Innovation, Inc. All Rights Reserved Proprietary Rights Notice Revision

More information

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide March 2013 Education Solutions Development, Inc. What s Inside The information in this reference

More information

MultiExperiment Viewer Quickstart Guide

MultiExperiment Viewer Quickstart Guide MultiExperiment Viewer Quickstart Guide Table of Contents: I. Preface - 2 II. Installing MeV - 2 III. Opening a Data Set - 2 IV. Filtering - 6 V. Clustering a. HCL - 8 b. K-means - 11 VI. Modules a. T-test

More information

NOTE: Flex Funding and Renewal Account Reports are available in Web CRD.

NOTE: Flex Funding and Renewal Account Reports are available in Web CRD. IARD Reports About Reports The Reports feature enables firms to request standard reports generated from data stored in Web CRD and IARD. Requested reports are available online for viewing or downloading.

More information

PowerWorld Simulator

PowerWorld Simulator PowerWorld Simulator Quick Start Guide 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com Purpose This quick start guide is intended to

More information

"Excel with Excel 2013: Pivoting with Pivot Tables" by Venu Gopalakrishna Remani. October 28, 2014

Excel with Excel 2013: Pivoting with Pivot Tables by Venu Gopalakrishna Remani. October 28, 2014 Teaching Excellence and Innovation 1 Pivot table Pivot table does calculations with criteria Data should be arranged as : Field names in the first rows, records in rows No blank rows or blank columns should

More information

Website Builder Overview

Website Builder Overview Website Builder Overview The Website Builder tool gives users the ability to create and manage their own website, which can be used to communicate with students and parents outside of the classroom. Users

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

Globally, about 9.7% of cancers in men are prostate cancers, and the risk of developing the

Globally, about 9.7% of cancers in men are prostate cancers, and the risk of developing the Chapter 5 Analysis of Prostate Cancer Association Study Data 5.1 Risk factors for Prostate Cancer Globally, about 9.7% of cancers in men are prostate cancers, and the risk of developing the disease has

More information

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

SAP FI - Automatic Payment Program (Configuration and Run)

SAP FI - Automatic Payment Program (Configuration and Run) SAP FI - Automatic Payment Program (Configuration and Run) Applies to: SAP ECC 6.0. For more information, visit the Financial Excellence homepage. Summary This document helps you to configure and run Automatic

More information

User Manual. Transcriptome Analysis Console (TAC) Software. For Research Use Only. Not for use in diagnostic procedures. P/N 703150 Rev.

User Manual. Transcriptome Analysis Console (TAC) Software. For Research Use Only. Not for use in diagnostic procedures. P/N 703150 Rev. User Manual Transcriptome Analysis Console (TAC) Software For Research Use Only. Not for use in diagnostic procedures. P/N 703150 Rev. 1 Trademarks Affymetrix, Axiom, Command Console, DMET, GeneAtlas,

More information

Two Correlated Proportions (McNemar Test)

Two Correlated Proportions (McNemar Test) Chapter 50 Two Correlated Proportions (Mcemar Test) Introduction This procedure computes confidence intervals and hypothesis tests for the comparison of the marginal frequencies of two factors (each with

More information

Chapter 4 Displaying and Describing Categorical Data

Chapter 4 Displaying and Describing Categorical Data Chapter 4 Displaying and Describing Categorical Data Chapter Goals Learning Objectives This chapter presents three basic techniques for summarizing categorical data. After completing this chapter you should

More information

DeCyder Extended Data Analysis module Version 1.0

DeCyder Extended Data Analysis module Version 1.0 GE Healthcare DeCyder Extended Data Analysis module Version 1.0 Module for DeCyder 2D version 6.5 User Manual Contents 1 Introduction 1.1 Introduction... 7 1.2 The DeCyder EDA User Manual... 9 1.3 Getting

More information

HOW TO CREATE AN HTML5 JEOPARDY- STYLE GAME IN CAPTIVATE

HOW TO CREATE AN HTML5 JEOPARDY- STYLE GAME IN CAPTIVATE HOW TO CREATE AN HTML5 JEOPARDY- STYLE GAME IN CAPTIVATE This document describes the steps required to create an HTML5 Jeopardy- style game using an Adobe Captivate 7 template. The document is split into

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC)

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC) Creating an Excel Database for a Mail Merge on a PC Excel Spreadsheet Mail Merge 0 of 8 Creating an Excel Database for a Mail Merge on a PC 1. To create a database for a mail merge you will first need

More information

ECLT5810 E-Commerce Data Mining Technique SAS Enterprise Miner -- Regression Model I. Regression Node

ECLT5810 E-Commerce Data Mining Technique SAS Enterprise Miner -- Regression Model I. Regression Node Enterprise Miner - Regression 1 ECLT5810 E-Commerce Data Mining Technique SAS Enterprise Miner -- Regression Model I. Regression Node 1. Some background: Linear attempts to predict the value of a continuous

More information

SAP Predictive Analysis Installation

SAP Predictive Analysis Installation SAP Predictive Analysis Installation SAP Predictive Analysis is the latest addition to the SAP BusinessObjects suite and introduces entirely new functionality to the existing Business Objects toolbox.

More information

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data)

DATA VISUALIZATION WITH TABLEAU PUBLIC. (Data for this tutorial at www.peteraldhous.com/data) DATA VISUALIZATION WITH TABLEAU PUBLIC (Data for this tutorial at www.peteraldhous.com/data) Tableau Public allows you to create a wide variety of interactive graphs, maps and tables and organize them

More information