R Commander Tutorial

Size: px
Start display at page:

Download "R Commander Tutorial"

Transcription

1 R Commander Tutorial Introduction R is a powerful, freely available software package that allows analyzing and graphing data. However, for somebody who does not frequently use statistical software packages, the big drawback of R is that it is command line based and thus not very intuitive to use. For users who do not use statistical software very often, R commander might be a good alternative. The R commander is a software package that allows running R from a graphical user interface. This makes analyzing and graphing your data in R a lot easier. Objective The objective of this tutorial is to give you a basic introduction to R Commander and how to use it to run basic statistics and create graphs. 1. Start the R Commander Open R by either clicking on the R icon on your desktop or by navigating to R in your programs folder. Once you opened R, go to Packages/Load Packages on the R menu bar and find Rcmdr in the R packages list (R packages are similar to software programs that have been written by different contributors for R). Highlight Rcmdr by clicking on it and click OK. R might give you a warning message. If so, just ignore it and click No. The R Commander console should now appear on your screen and you are ready to run some statistics and make some graphs in R. 1

2 2. Reading your data into R After you come back from the field, your notebook shows the following data recordings: Now you want to create a digital copy of your data. To do this, start your computer and type the data table into notepad or another text editor of your choice and save the data table on your hard drive (Important: Data have to be separated by commas as shown below). Make sure you remember where you save it so you can navigate to the dataset later on. 2

3 On the R Commander menu bar, go to Data/Import data and select from text file, clipboard, or URL which should bring up the window below. Make the same selections as shown in the window below (e.g. name your data set cover_moisture and select Commas as your field separator since we separated our data by commas when we entered them into our text editor earlier). Click OK and a window appears that allows you to navigate to your data file. Once you navigated to your data file, highlight it by clicking on it and click Open. You can now view your data by clicking on View data set on the R Commander menu bar. You can also directly enter your data into R by selecting Data from the R Commander menu bar and clicking on New dataset.this will bring up the following window. The Data Editor window appears that allows you to directly enter your data into R. By clicking on the column header, you can change the variable name of each column (e.g. change var1 to location, var2 to 3

4 cover, and var3 to soil moisture). The variable editor also allows you to select the type of your variables you are entering. Since you are entering numeric values, select numeric under variable type. Type in your data as shown below. 3. Summary statistics To get some summary statistics of your data, go to Statistics/Summaries and select Numerical summaries. Now you should see the following window: Pick cover and soil.moisture (Note: to select more than one variable you have to hold down the Ctrl key) and click OK. A summary table will appear that shows the mean, standard deviation, and the 0, 0.25, 0.50, 0.75, 1 quantiles of the cover and soil.moisture data. 4. Scatterplot To see if there is a relationship between cover and soil moisture it might be a good idea to look at a scatterplot of the data. To create a scatterplot, go to Graphs on the R Commander menu bar and select Scatterplot. This will bring up a table. Select cover as you x-variable and soil moisture as your y- variable. Lable your x- and y-axis Cover (%) and Soil Moisture %, respectively. Next, click OK and a scatterplot will appear (Important: Make sure you highlight the R Console by clicking on it to be able to see the scatterplot). You can save the scatterplot (or any other plot you create) by clicking on the plot 4

5 (Important: if you do not select the plot you won t be able to save it) and on the R menu bar (Note: R menu bar and not the R commander menu bar) going to File/Save as/jpeg and click on 100% quality. This will bring up a window that allows you to specify the location on your computer where you want to save the plot as a Jpeg image. 5. Fitting a linear regression model The scatterplot above shows us that there is a positive relationship between soil moisture and cover. However, the scatterplot does not tell us how strong the relationship is, if the relationship is significant etc. To get this information we do have to fit a linear regression model. To fit a linear regression model go to Statistics/Fit models on the R Commander menu bar and select Linear model. Select soil moisture as your response variable (aka y- variable or dependent variable) and cover as your explanatory variable (aka x-variable or independent variable) and click OK. 5

6 The following output will appear in the Output Window of the R Commander: We will talk in class how to interpret the output table (e.g. what do those numbers mean).to check the basic model diagnostics for the linear model you just fit, go to Models/Graphs on the R Commander menu bar and select Basic diagnostic plots. This brings up the following window (We will discuss in class how to interpret the model diagnostic plot): 6

7 6. Fitting multiple regression models In this part of the tutorial you learn how to fit a multiple regression model. Your hypothesis is that air temperature, solar radiation, and wind speed are significant predictors of ozone. To test this hypothesis, you collected the data called airquality.txt that are available in the class Dropbox folder (C:\...\Dropbox\Jan Teaching Files\CSS 560\Data\R Commander\airquality.txt) (Note: The data was taken from Daalgard, 2002). Let's import the data into R commander and call the dataset airquality (if you can't remember how to import data please refer to x.x in the document). Let's take a look at the data to familiarize ourselves with the data by selecting airquality from the Data set dropdown menu. Next, let's plot the relationships between the different variables in the dataset. To do this, make the R Console active by clicking on it and type the following command into the R Console command line prompt: pairs(airqualit). 7

8 Now you should see the following figure: This is how you read the figure: It looks like there is some sort of relationship between ozone and temperature and ozone and wind. However, there seems to be no relationship between ozone and solar radiation. OK - let's now fit a multiple regression model to test if solar radiation, wind, and temperature are significant predictors of ozone. To fit a multiple regression model let's go to Statistics/Fit models... on 8

9 the R Commander menu bar and select Linear model.... A window appears that should be somewhat familiar to you from section 5 of this tutorial. The model you want to fit basically says that ozone is a function of solar radiation, air temperature, and wind. Mathematically, we can write this model as follows: Ozone ~ Solar.R + Temp + Wind [1] After typing model [1] in the appropriate section of the linear model window (see above) click OK. You should now see the following output: 9

10 Let's also take a look at the model diagnostics: We will discuss the interpretation of the model output as well the interpretation of the model diagnostics in more detail in class. 7. Paired t-test Next, we will to conduct a paired t-test to see if there is a statistical significant difference in soil moisture before and after a rain event. The data for the paired t-test is in the class Dropbox folder (C:\Users\Jan\Dropbox\Jan Teaching Files\CSS 560\Data\R Commander\paired _t_test.txt). Import the data into R by following the steps you learned about at the beginning of this tutorial and name the dataset soil_moisture (Hint: Open the paired_t_test.txt file in a text editor. You will see that the paired_t_test.txt file is a tab delimited file and not comma delimited file. You need that information to properly import the data into R). Before conducting a paired t-test (and any other t-test) it might be a good idea to look at a boxplot of the data first. To do this you do have to stack your data first (you just re-arranging the data so they are in a format that can be used by the computer to create a boxplot of your data) by going to Data/Active data set on the R Commander menu bar and click on Stack variables in active data set. 10

11 You should now see the Stack Variables window shown below. Select both the soil.moisture.after and soil.moisture.before variables and name the stacked dataset stacked_soil_moisture. Keep the rest of the default settings as shown below and click OK. Next, go to Graphs/Boxplots on the R Commander menu bar. In the window that pops up select Plot by groups and group your variables by factor and click OK. Now you should see the following boxplot: Based on the boxplot, do you think the soil moisture changed significantly after the rain event? After visually looking at the data we are ready to run a paired t-test. To do this, let s go back to our original, unstacked dataset by going to Data set on the R Commander menu bar and selecting soil_moisture. Click OK. 11

12 Next, go to Statistics/Means on the R Commander menu bar and select Paired t-test. Next, select soil.moisture.before as your first variable and soil.moisture.after as you second variable. Keep the rest at the default settings as shown below. After clicking OK you should get the following output. We will discuss in class how to interpret the output. 8. Two-sample t-test In this section of the tutorial we will learn how to conduct a two sample t-test. We want to test the following hypothesis: soil ph of the non treated stand in the Ponderosa State Park is statistically 12

13 significantly different than the soil ph in the treated part of the Park. The hypothetical data that were collected are available in the class Dropbox folder (C:\...\Dropbox\Jan Teaching Files\CSS 560\Data\R Commander\ph.txt). Let's import the data into the R commander and create a boxplot of the data as we learned in section 7 of this tutorial (remember: you first have to stack the data in order to create the boxplot below. For more details please refer to section 7 of this tutorial). OK - it looks like the soil ph in the non treated part of the forest is lower than in the treated part. Let's now do a two-sample t-test to see if the soil ph are statistically significantly different from each other. To do this, keep your stacked ph dataset active and go to the R Commander menu bar and select Statistics/Means and select Independent samples t-test... (in case Independent samples t-test... option is greyed out make sure you i) stacked the ph dataset and ii) that the stacked ph dataset is the active dataset). 13

14 The window that now appears should look similar to the one below: Keep the default settings and click OK. Now you should see the following output: We will discuss in the class how to interpret the output. 9. Customize your graphs If you want to customize your figures, you do have to do a little bit of programming. For example, the boxplot you creaed in section 8 of this tutorial is associated with the following line of code in your R Commander script window: boxplot(variable ~ factor, ylab = "ph", xlab="factor", data = ph_stacked) 14

15 We can now change this line of code some to make the boxplot a little nicer. For example, we could type the following into the R Console: boxplot(variable ~ factor, ylab = "Soil ph", xlab = "", names = c("treated Forest", "Untreated Forest"), data = ph_stacked) If you write the code above into the R Console and hit enter you should see the following boxplot: It becomes clear that you need some R programming experience and knowledge to change the appearance of the figure beyond what the R Commander allows you to do. If you do want to learn more about how to program in R, the R website is a good starting point ( ) as well as Peter Dalgaard's book "Introductory Statistics in R". 10. Closing R Commander and R To close the R Commander and R, go to File/Exit and select From Commander and R. 15

16 Next, the R Commander will ask you if you want to exit the program. Click OK. Next it will ask you if you want to save the script file and the output file. Click No in both cases. Congratulations - you successfully finished the R Commander tutorial. Other resources Getting started with the R Commander. You can find a pdf of this tutorial on our class website ( If you want to learn more about the R commander I recommend you working through this tutorial. Literature cited Dalgaard, Peter Introductory Statistics in R. Springer Science and Business Media, Inc. Important: If you used a MOSS computer for this tutorial, please make sure you delete all the files you created from the computer after you are done with the tutorial. Thanks! Disclaimer Always consult a trained statistician to validate the correctness of the statistical approach you are taking. Please any suggestions of how to potentially improve this document to Jan Eitel (jeitel@ uidaho.edu). Use of trade names does not constitute an official endorsement by the McCall Outdoor Science School. 16

Introduction to GIS software

Introduction to GIS software Introduction to GIS software There are a wide variety of GIS software packages available. Some of these software packages are freely available for you to download and could be used in your classroom. ArcGIS

More information

R with Rcmdr: BASIC INSTRUCTIONS

R with Rcmdr: BASIC INSTRUCTIONS R with Rcmdr: BASIC INSTRUCTIONS Contents 1 RUNNING & INSTALLATION R UNDER WINDOWS 2 1.1 Running R and Rcmdr from CD........................................ 2 1.2 Installing from CD...............................................

More information

MetroBoston DataCommon Training

MetroBoston DataCommon Training MetroBoston DataCommon Training Whether you are a data novice or an expert researcher, the MetroBoston DataCommon can help you get the information you need to learn more about your community, understand

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

R and Rcmdr : Basic Functions for Managing Data

R and Rcmdr : Basic Functions for Managing Data Jaila Page 1 R and Rcmdr : Basic Functions for Managing Data Key issues in using R for a data analysis: Difference between numeric variables and factors in R/Rcmdr Load data either by entering manually,

More information

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller

Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Tutorial 2: Reading and Manipulating Files Jason Pienaar and Tom Miller Most of you want to use R to analyze data. However, while R does have a data editor, other programs such as excel are often better

More information

Introduction to SPSS 16.0

Introduction to SPSS 16.0 Introduction to SPSS 16.0 Edited by Emily Blumenthal Center for Social Science Computation and Research 110 Savery Hall University of Washington Seattle, WA 98195 USA (206) 543-8110 November 2010 http://julius.csscr.washington.edu/pdf/spss.pdf

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

FIRST STEPS WITH SCILAB

FIRST STEPS WITH SCILAB powered by FIRST STEPS WITH SCILAB The purpose of this tutorial is to get started using Scilab, by discovering the environment, the main features and some useful commands. Level This work is licensed under

More information

4 Other useful features on the course web page. 5 Accessing SAS

4 Other useful features on the course web page. 5 Accessing SAS 1 Using SAS outside of ITCs Statistical Methods and Computing, 22S:30/105 Instructor: Cowles Lab 1 Jan 31, 2014 You can access SAS from off campus by using the ITC Virtual Desktop Go to https://virtualdesktopuiowaedu

More information

Doing Multiple Regression with SPSS. In this case, we are interested in the Analyze options so we choose that menu. If gives us a number of choices:

Doing Multiple Regression with SPSS. In this case, we are interested in the Analyze options so we choose that menu. If gives us a number of choices: Doing Multiple Regression with SPSS Multiple Regression for Data Already in Data Editor Next we want to specify a multiple regression analysis for these data. The menu bar for SPSS offers several options:

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

Migrating to Azure SQL Database

Migrating to Azure SQL Database Migrating to Azure SQL Database Contents Azure account required for lab... 3 SQL Azure Migration Wizard Overview... 3 Provisioning an Azure SQL Database... 4 Exercise 1: Analyze and resolve... 8 Exercise

More information

SPSS Manual for Introductory Applied Statistics: A Variable Approach

SPSS Manual for Introductory Applied Statistics: A Variable Approach SPSS Manual for Introductory Applied Statistics: A Variable Approach John Gabrosek Department of Statistics Grand Valley State University Allendale, MI USA August 2013 2 Copyright 2013 John Gabrosek. All

More information

Using SPSS, Chapter 2: Descriptive Statistics

Using SPSS, Chapter 2: Descriptive Statistics 1 Using SPSS, Chapter 2: Descriptive Statistics Chapters 2.1 & 2.2 Descriptive Statistics 2 Mean, Standard Deviation, Variance, Range, Minimum, Maximum 2 Mean, Median, Mode, Standard Deviation, Variance,

More information

Module 5: Statistical Analysis

Module 5: Statistical Analysis Module 5: Statistical Analysis To answer more complex questions using your data, or in statistical terms, to test your hypothesis, you need to use more advanced statistical tests. This module reviews the

More information

WHAT YOU OWN HOME INVENTORY SOFTWARE

WHAT YOU OWN HOME INVENTORY SOFTWARE WHAT YOU OWN HOME INVENTORY Version 4.19 Copyright 2013 M- One Studio, LLC www.m-onestudio.com Contents Getting Started... 1 About WHAT YOU OWN HOME INVENTORY SOFTWARE... 1 Download and Install the Software...

More information

File Storage. This is a manual that contains pertinent information about your File Storage space at SLC.

File Storage. This is a manual that contains pertinent information about your File Storage space at SLC. File Storage This is a manual that contains pertinent information about your File Storage space at SLC. About All students at SLC are provided with an allotment of secure storage space to save and store

More information

Excel Reports and Macros

Excel Reports and Macros Excel Reports and Macros Within Microsoft Excel it is possible to create a macro. This is a set of commands that Excel follows to automatically make certain changes to data in a spreadsheet. By adding

More information

PubMed My NCBI: Saving Searches & Creating Email Alerts

PubMed My NCBI: Saving Searches & Creating Email Alerts PubMed My NCBI: Saving Searches & Creating Email Alerts My NCBI feature of PubMed allows you to: Save and rerun your search strategies Create an automatic e-mail notification of new articles Build a bibliography

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR

CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR Drupal Website CKeditor Tutorials - Adding Blog Posts, Images & Web Pages with the CKeditor module The Drupal CKEditor Interface CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR "FINDING

More information

Getting started manual

Getting started manual Getting started manual XLSTAT Getting started manual Addinsoft 1 Table of Contents Install XLSTAT and register a license key... 4 Install XLSTAT on Windows... 4 Verify that your Microsoft Excel is up-to-date...

More information

Chapter 4: Website Basics

Chapter 4: Website Basics 1 Chapter 4: In its most basic form, a website is a group of files stored in folders on a hard drive that is connected directly to the internet. These files include all of the items that you see on your

More information

Configure Single Sign on Between Domino and WPS

Configure Single Sign on Between Domino and WPS Configure Single Sign on Between Domino and WPS What we are doing here? Ok now we have the WPS server configured and running with Domino as the LDAP directory. Now we are going to configure Single Sign

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller

Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Tutorial 3: Graphics and Exploratory Data Analysis in R Jason Pienaar and Tom Miller Getting to know the data An important first step before performing any kind of statistical analysis is to familiarize

More information

Introduction to Exploratory Data Analysis

Introduction to Exploratory Data Analysis Introduction to Exploratory Data Analysis A SpaceStat Software Tutorial Copyright 2013, BioMedware, Inc. (www.biomedware.com). All rights reserved. SpaceStat and BioMedware are trademarks of BioMedware,

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

Data exploration with Microsoft Excel: analysing more than one variable

Data exploration with Microsoft Excel: analysing more than one variable Data exploration with Microsoft Excel: analysing more than one variable Contents 1 Introduction... 1 2 Comparing different groups or different variables... 2 3 Exploring the association between categorical

More information

Free Excel add-in for linear regression and multivariate data analysis

Free Excel add-in for linear regression and multivariate data analysis Free Excel add-in for linear regression and multivariate data analysis INSTALLATION INSTRUCTIONS The RegressIt add-in for regression analysis operates under Excel 2007, 2010, and 2013 and either Windows

More information

How To Create A Hyperlink In Publisher On Pc Or Macbookpress.Com (Windows) On Pc/Apple) On A Pc Or Apple Powerbook (Windows 7) On Macbook Pressbook (Apple) Or Macintosh (Windows 8

How To Create A Hyperlink In Publisher On Pc Or Macbookpress.Com (Windows) On Pc/Apple) On A Pc Or Apple Powerbook (Windows 7) On Macbook Pressbook (Apple) Or Macintosh (Windows 8 PUBLISHER-HYPERLINKS When a hyperlink in Publisher is clicked it can open another Web page, a picture, an email message, or another program. This feature works for documents that will be saved as a PDF

More information

Shasta College SharePoint Tutorial. Create an HTML Form

Shasta College SharePoint Tutorial. Create an HTML Form Create an HTML Form SharePoint HTML forms are based on Lists. Lists are like mini-databases inside of SharePoint that define the form s fields and stores the data submitted from the form. Before you can

More information

Figure 1: Saving Project

Figure 1: Saving Project VISAN Introduction............................... 1 Data Visualization........................... 4 Classification.............................. 7 LDF and QDF.......................... 7 Neural Networks.........................

More information

Chapter 4 Creating Charts and Graphs

Chapter 4 Creating Charts and Graphs Calc Guide Chapter 4 OpenOffice.org Copyright This document is Copyright 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify it under the terms of either

More information

Using Microsoft Office to Manage Projects

Using Microsoft Office to Manage Projects (or, Why You Don t Need MS Project) Using Microsoft Office to Manage Projects will explain how to use two applications in the Microsoft Office suite to document your project plan and assign and track tasks.

More information

SPSS Explore procedure

SPSS Explore procedure SPSS Explore procedure One useful function in SPSS is the Explore procedure, which will produce histograms, boxplots, stem-and-leaf plots and extensive descriptive statistics. To run the Explore procedure,

More information

InfiniteInsight 6.5 sp4

InfiniteInsight 6.5 sp4 End User Documentation Document Version: 1.0 2013-11-19 CUSTOMER InfiniteInsight 6.5 sp4 Toolkit User Guide Table of Contents Table of Contents About this Document 3 Common Steps 4 Selecting a Data Set...

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3 Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org

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

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

Rational Quality Manager. Quick Start Tutorial

Rational Quality Manager. Quick Start Tutorial Rational Quality Manager Quick Start Tutorial 1 Contents 1. Introduction... 2 2. Terminology... 3 3. Project Area Preparation... 4 3.1 Adding Users and specifying Roles... 4 3.2 Managing Tool Associations...

More information

introduction to emarketing

introduction to emarketing introduction to emarketing emarketing is typically used for promotional campaigns for attendee generation and for attendee communication. It works closely with ereg which also includes email capabilities

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

How To Connect Your Cloud

How To Connect Your Cloud How To Connect Your Cloud This tutorial will show you how to connect ncrypted Cloud to multiple cloud storage accounts after installation. This will allow you to apply privacy to all cloud data right from

More information

MicroStrategy Analytics Express User Guide

MicroStrategy Analytics Express User Guide MicroStrategy Analytics Express User Guide Analyzing Data with MicroStrategy Analytics Express Version: 4.0 Document Number: 09770040 CONTENTS 1. Getting Started with MicroStrategy Analytics Express Introduction...

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

The Dummy s Guide to Data Analysis Using SPSS

The Dummy s Guide to Data Analysis Using SPSS The Dummy s Guide to Data Analysis Using SPSS Mathematics 57 Scripps College Amy Gamble April, 2001 Amy Gamble 4/30/01 All Rights Rerserved TABLE OF CONTENTS PAGE Helpful Hints for All Tests...1 Tests

More information

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

Quickstart for Desktop Version

Quickstart for Desktop Version Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,

More information

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 Program Services Office & Decision Support Group Table of Contents Create New Analysis... 4 Criteria Tab... 5 Key Fact (Measurement) and Dimension

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

Fountas & Pinnell Benchmark Assessment System Data Management Software (DMS) User s Guide

Fountas & Pinnell Benchmark Assessment System Data Management Software (DMS) User s Guide Fountas & Pinnell Benchmark Assessment System Data Management Software (DMS) User s Guide Preface Welcome to the Fountas & Pinnell (F&P) Benchmark Assessment System Data Management Software (DMS). This

More information

Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different)

Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets are computer programs that allow the user to enter and manipulate numbers. They are capable

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

CHARTS AND GRAPHS INTRODUCTION USING SPSS TO DRAW GRAPHS SPSS GRAPH OPTIONS CAG08

CHARTS AND GRAPHS INTRODUCTION USING SPSS TO DRAW GRAPHS SPSS GRAPH OPTIONS CAG08 CHARTS AND GRAPHS INTRODUCTION SPSS and Excel each contain a number of options for producing what are sometimes known as business graphics - i.e. statistical charts and diagrams. This handout explores

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Microsoft Excel Tutorial

Microsoft Excel Tutorial Microsoft Excel Tutorial by Dr. James E. Parks Department of Physics and Astronomy 401 Nielsen Physics Building The University of Tennessee Knoxville, Tennessee 37996-1200 Copyright August, 2000 by James

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

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

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions 2010 Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions This document describes how to perform some basic statistical procedures in Microsoft Excel. Microsoft Excel is spreadsheet

More information

Data Analysis Tools. Tools for Summarizing Data

Data Analysis Tools. Tools for Summarizing Data Data Analysis Tools This section of the notes is meant to introduce you to many of the tools that are provided by Excel under the Tools/Data Analysis menu item. If your computer does not have that tool

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

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

January 26, 2009 The Faculty Center for Teaching and Learning

January 26, 2009 The Faculty Center for Teaching and Learning THE BASICS OF DATA MANAGEMENT AND ANALYSIS A USER GUIDE January 26, 2009 The Faculty Center for Teaching and Learning THE BASICS OF DATA MANAGEMENT AND ANALYSIS Table of Contents Table of Contents... i

More information

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide Revision 11/1/00 Contents Introduction 3 1. SimSphere Modeling Tool Overview 4 System Requirements 4 Your User Status 4 Main Menu

More information

Introduction to the use of the environment of Microsoft Visual Studio 2008

Introduction to the use of the environment of Microsoft Visual Studio 2008 Steps to work with Visual Studio 2008 1) Start Visual Studio 2008. To do this you need to: a) Activate the Start menu by clicking the Start button at the lower-left corner of your screen. b) Set the mouse

More information

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task.

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task. Lab 8 User name: Administrator Password: Password1 Contents Exercise 8-1: Assigning a Custom Load Evaluator... 1 Scenario... 1 Configuring a Custom Load Evaluator... 1 Assigning a Load Evaluator to a Server...

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Summary of important mathematical operations and formulas (from first tutorial):

Summary of important mathematical operations and formulas (from first tutorial): EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a

More information

Four Ways to Search in QuickBooks to Find What You Need

Four Ways to Search in QuickBooks to Find What You Need Four Ways to Search in QuickBooks to Find What You Need Over time, your QuickBooks company file can grow in size to the point that it becomes difficult to find specific transactions. For instance, let

More information

An introduction to using Microsoft Excel for quantitative data analysis

An introduction to using Microsoft Excel for quantitative data analysis Contents An introduction to using Microsoft Excel for quantitative data analysis 1 Introduction... 1 2 Why use Excel?... 2 3 Quantitative data analysis tools in Excel... 3 4 Entering your data... 6 5 Preparing

More information

UCINET Visualization and Quantitative Analysis Tutorial

UCINET Visualization and Quantitative Analysis Tutorial UCINET Visualization and Quantitative Analysis Tutorial Session 1 Network Visualization Session 2 Quantitative Techniques Page 2 An Overview of UCINET (6.437) Page 3 Transferring Data from Excel (From

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

Novell Filr. Windows Client

Novell Filr. Windows Client Novell Filr Windows Client 0 Table of Contents Supported Environments 2 Supported Languages 2 Getting Started 3 Which Folders Are Synchronized 3 What Actions Are Supported 4 Configuring Folders to Synchronize

More information

7-zip Encryption Instructions

7-zip Encryption Instructions 1. In a simple text editor (Notepad, Notepad++, jedit, etc.) create a text file (SendToTAP) that contains your sensitive data information. [Note the location where the file is stored on your computer.]

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL

ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL MENU OPTION CLASSIFICATION MANAGER Creating a new classification / menu 1. Click Classification manager 2. Click on the plus sign beside WWW to expand the folders

More information

Please note that a username and password will be made available upon request. These are necessary to transfer files.

Please note that a username and password will be made available upon request. These are necessary to transfer files. Transferring Data Using Secure File Transfer Process ASU Center for Health Information and Research (CHiR) data partners can now securely electronically send their data submissions by means of Secure File

More information

CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON:

CREATING AN IMAGE FROM AUTOCAD CADD NOTE 16. MENU: AutoCAD, File, Plot COMMAND: plot ICON: CADD NOTE 16 This CADD Note provides instructions on creating an image from an AutoCAD drawing that can be pasted into another application (e.g., Word, Powerpoint, etc.). These instructions assume the

More information

How To Manage Your Email Storage In Outlook On A Pc Or Macintosh Outlook On Pc Or Pc Or Ipa On A Macintosh Or Ipad On A Computer Or Ipo On A Laptop Or Ipod On A Desktop Or Ipoo On A

How To Manage Your Email Storage In Outlook On A Pc Or Macintosh Outlook On Pc Or Pc Or Ipa On A Macintosh Or Ipad On A Computer Or Ipo On A Laptop Or Ipod On A Desktop Or Ipoo On A ITS Computing Guide IT Services www.its.salford.ac.uk Outlook Email Management Use of the University s electronic storage areas is increasing at a greater rate than ever before. In order to keep systems

More information

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server How to Setup and Connect to an FTP Server Using FileZilla The ability to store data on a server and being able to access the data from anywhere in the world has allowed us to get rid of external flash

More information

MS Word 2007. Microsoft Outlook 2010 Mailbox Maintenance

MS Word 2007. Microsoft Outlook 2010 Mailbox Maintenance MS Word 2007 Microsoft Outlook 2010 Mailbox Maintenance INTRODUCTION... 1 Understanding the MS Outlook Mailbox... 1 BASIC MAILBOX MAINTENANCE... 1 Mailbox Cleanup... 1 Check Your Mailbox Size... 1 AutoDelete

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook USING OUTLOOK WITH ENTERGROUP In this tutorial you will learn how to use Outlook with your EnterGroup account. You will learn how to setup an IMAP or POP account, and also how to move your emails and contacts

More information

Getting started with the Stata

Getting started with the Stata Getting started with the Stata 1. Begin by going to a Columbia Computer Labs. 2. Getting started Your first Stata session. Begin by starting Stata on your computer. Using a PC: 1. Click on start menu 2.

More information

Using R for Windows and Macintosh

Using R for Windows and Macintosh 2010 Using R for Windows and Macintosh R is the most commonly used statistical package among researchers in Statistics. It is freely distributed open source software. For detailed information about downloading

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet

More information

Introduction to RStudio

Introduction to RStudio Introduction to RStudio (v 1.3) Oscar Torres-Reyna otorres@princeton.edu August 2013 http://dss.princeton.edu/training/ Introduction RStudio allows the user to run R in a more user-friendly environment.

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

A Guide to Using Excel in Physics Lab

A Guide to Using Excel in Physics Lab A Guide to Using Excel in Physics Lab Excel has the potential to be a very useful program that will save you lots of time. Excel is especially useful for making repetitious calculations on large data sets.

More information

How to Configure Windows 8.1 to run ereports on IE11

How to Configure Windows 8.1 to run ereports on IE11 How to Configure Windows 8.1 to run ereports on IE11 Description: Windows 8.1 ships with IE10, but can be updated to IE11. There is a special mode in IE11 called Enterprise Mode that can be used to emulate

More information

Microsoft Word 2011: Create a Table of Contents

Microsoft Word 2011: Create a Table of Contents Microsoft Word 2011: Create a Table of Contents Creating a Table of Contents for a document can be updated quickly any time you need to add or remove details for it will update page numbers for you. A

More information