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 Excel. Very important: Make sure your column headings do not have any spaces e.g., write soil_moisture instead of Soil Moisture since spaces confuse most statistics programs such as R. To be able to read your dataset into R Commander for statistical analysis, you have to save the data table as either a comma delimited (.csv file, see figure below) or tab delimited file (.txt file, see figure below) on your hard drive (To save the file as a.csv or.txt file in Excel, go to Save As/Other Formats and select CSV (Comma delimited)(*.csv) or Text (Tab delimited) (*.txt) from the Save as type pull down menu). Make 2

3 sure you remember where you save the data on your computer so you can navigate to the dataset later on. Now we are ready to read our data into R Commander. 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 either Commas (if you saved your file as a comma delimited (*.csv) file) or Tabs (if you saved your file as a tab delimited (*.txt) file). 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. 3

4 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 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: 4

5 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 is a good idea to first 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. Under x-axis label and y-axis label, label your x- and y-axis Cover (%) and Soil Moisture (%), respectively. Under Options, deselect Marginal boxplots, Smooth line, and Show spread. 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 (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 5

6 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. 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 that are available for download from our class website ( (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 section 2 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 called paired_t_test is available for download from our class websiste ( 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 for more detail on stacking, please refer to the Appendix of this tutorial) 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 dataset called ph that was collected is available for download from our class website ( 560/digital-library/data). 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

17 Appendix A) Data Stacking what s that? When you stack the data in R Commander, you are simply re-arranging the data so it can be properly read in by R. So what happens when you stack the data? Well, you simply re-arrange the data (e.g., in the example below dissolved oxygen, see Figure I) so all your data are within a single column (see Figure II) and you create a second column with factors (e.g., 1, 2 etc.) that let the R know where each of the observation originated from (e.g., in the example below, all data associated with 1 originated from plot 1, and all data associated with 2 originated from plot 2). Figure I. Unstacked data. Column one (entitled DO_oxygen_plot1 ) shows dissolved oxygen values collected at plot 1 and column two (entitled DO_oxygen_plot1 ) shows dissolved oxygen values collected at plot 2. Figure II. Stacked data. Column one (entitled Data ) shows all the collected dissolved oxygen data (here in this example from plot 1 and 2). Column two (entitled Factor ). 17

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

Introduction to Remote Sensing

Introduction to Remote Sensing Introduction to Remote Sensing Objective: The objective of this tutorial is to show you 1) how to create NDVI images to map the amount of green vegetation in an area 2) how to conduct a supervised classification

More information

An Introduction to the R Commander

An Introduction to the R Commander An Introduction to the R Commander BIO/MAT 460, Spring 2011 Christopher J. Mecklin Department of Mathematics & Statistics Biomathematics Research Group Murray State University Murray, KY 42071 christopher.mecklin@murraystate.edu

More information

LAB #1: DESCRIPTIVE STATISTICS WITH R

LAB #1: DESCRIPTIVE STATISTICS WITH R NAVAL POSTGRADUATE SCHOOL LAB #1: DESCRIPTIVE STATISTICS WITH R Statistics (OA3102) Lab #1: Descriptive Statistics with R Goal: Introduce students to various R commands for descriptive statistics. Lab

More information

Lab 1: Getting started with R and RStudio Questions? or

Lab 1: Getting started with R and RStudio Questions? or Lab 1: Getting started with R and RStudio Questions? david.montwe@ualberta.ca or isaacren@ualberta.ca 1. Installing R and RStudio To install R, go to https://cran.r-project.org/ and click on the Download

More information

Using the GLOBE Visualization System

Using the GLOBE Visualization System Using the GLOBE Visualization System Hold the mouse over the GLOBE Data menu, then click on Visualize and Retrieve Data. Or, use the quick link shown below. Click on Enter the Visualization System link.

More information

R for IR. Created by Narren Brown, Grinnell College, and Diane Saphire, Trinity University

R for IR. Created by Narren Brown, Grinnell College, and Diane Saphire, Trinity University R for IR Created by Narren Brown, Grinnell College, and Diane Saphire, Trinity University For presentation at the June 2013 Meeting of the Higher Education Data Sharing Consortium Table of Contents I.

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

ST Lab 1 - The basics of SAS

ST Lab 1 - The basics of SAS ST 512 - Lab 1 - The basics of SAS What is SAS? SAS is a programming language based in C. For the most part SAS works in procedures called proc s. For instance, to do a correlation analysis there is proc

More information

Printing Batch Unofficial Transcripts

Printing Batch Unofficial Transcripts Printing Batch Unofficial Transcripts On occasion, you may need to print unofficial transcripts for several students at one time. The Batch Transcripts process allows you to upload a text file containing

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

Excel Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Objectives: 1. To learn how to interpret scatterplots. Specifically you will investigate, using

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information

Introduction to R Commander

Introduction to R Commander Introduction to R Commander 1. Get R and Rcmdr to run 2. Familiarize yourself with Rcmdr 3. Look over Rcmdr metadata (Fox, 2005) 4. Start doing stats / plots with Rcmdr Tasks 1. Clear Workspace and History.

More information

Importing Local Contacts from Thunderbird

Importing Local Contacts from Thunderbird 1 Importing Local Contacts from Thunderbird Step 1, Export Contacts from Thunderbird In Thunderbird, select Address Book. In the Address Book, click on Personal Address Book and then select Export from

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Introduction This handout briefly outlines most of the basic uses and functions of Excel that we will be using in this course. Although Excel may be used for performing statistical

More information

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE If your buyers use PayPal to pay for their purchases, you can quickly export all names and addresses to a type of spreadsheet known as a

More information

1 All of this was put in tables to make it easier to control the layout and format.

1 All of this was put in tables to make it easier to control the layout and format. Page 1 of 6 1 All of this was put in tables to make it easier to control the layout and format. Click on StatDisk icon on the Desktop or Click Start, Programs, and StatDisk to Open the StatDisk program.

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

Import Data. Dataset. Comma-Separated Value File (.csv)

Import Data. Dataset. Comma-Separated Value File (.csv) Dataset Comma-Separated Value File (.csv) Event Study Metrics Copyright 2011 Event Study Metrics UG (haftungsbeschränkt) This software product, including program code and manual, is copyrighted, and all

More information

Code Plug Management: Contact List Import/Export. Version 1.0, Dec 16, 2015

Code Plug Management: Contact List Import/Export. Version 1.0, Dec 16, 2015 Code Plug Management: Contact List Import/Export Version 1.0, Dec 16, 2015 Background This presentation will show how to update and maintain contact lists in the CS750 The following applications will be

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

The R and R-commander software

The R and R-commander software The R and R-commander software This course uses the statistical package 'R' and the 'R-commander' graphical user interface (Rcmdr). Full details about these packages and the advantages associated with

More information

BIO 360: Vertebrate Physiology Lab 9: Graphing in Excel. Lab 9: Graphing: how, why, when, and what does it mean? Due 3/26

BIO 360: Vertebrate Physiology Lab 9: Graphing in Excel. Lab 9: Graphing: how, why, when, and what does it mean? Due 3/26 Lab 9: Graphing: how, why, when, and what does it mean? Due 3/26 INTRODUCTION Graphs are one of the most important aspects of data analysis and presentation of your of data. They are visual representations

More information

IN-CLASS EXERCISE: INTRODUCTION TO R

IN-CLASS EXERCISE: INTRODUCTION TO R NAVAL POSTGRADUATE SCHOOL IN-CLASS EXERCISE: INTRODUCTION TO R Survey Research Methods Short Course Marine Corps Combat Development Command Quantico, Virginia May 2013 In-class Exercise: Introduction to

More information

WinFlexOne - Importer MHM Resources LLC

WinFlexOne - Importer MHM Resources LLC WinFlexOne - Importer 2008 MHM Resources LLC WinFlexOne Importer - Employee 2 This module provides: Overview Log In Source File Importer Profile Download Activate Import Source File WinFlexOne Importer

More information

Working with Lists: Adding and Importing Addresses

Working with Lists: Adding and Importing  Addresses JangoMail Tutorial Working with Lists: Adding and Importing Email Addresses Overview: You store your email lists in JangoMail s database using the Lists tab. Here, you create your own Lists, each with

More information

USING SONRIS DATA ACCESS

USING SONRIS DATA ACCESS USING SONRIS DATA ACCESS SONRIS Data Access has been reconfigured to integrate Conservation Classic, SONRIS Lite, Reports and Reports on Demand (formerly Discoverer Reports) into one area where all are

More information

Minitab 17 commands Prepared by Jeffrey S. Simonoff

Minitab 17 commands Prepared by Jeffrey S. Simonoff Minitab 17 commands Prepared by Jeffrey S. Simonoff Data entry and manipulation To enter data by hand, click on the Worksheet window, and enter the values in as you would in any spreadsheet. To then save

More information

NEOMIN Webmail Instructions

NEOMIN Webmail Instructions NEOMIN Webmail Instructions Lisa Collins Created: Nov 10 th, 2009 Revised: Jan 25 th, 2010 1 Table of Contents Logging In 3 Viewing your Inbox/Emails 4-5 Printing & Deleting Emails 5 Replying & Forwarding

More information

MeltLab Reporting Text, CSV or Excel

MeltLab Reporting Text, CSV or Excel MeltLab Reporting Text, CSV or Excel Graphic Statistical Process Control by MeltLab Systems 844-MeltLab www.meltlab.com Fast Accurate Comprehensive Setting up MeltLab Reporting for ASCII ASCII reporting

More information

Reporter Tutorial: Intermediate

Reporter Tutorial: Intermediate Reporter Tutorial: Intermediate Refer to the following sections for guidance on using these features of the Reporter: Lesson 1 Data Relationships in Reports Lesson 2 Create Tutorial Training Report Lesson

More information

Module 1: Introduction RStudio

Module 1: Introduction RStudio Module 1: Introduction RStudio Contents Page(s) Installing R and RStudio Software for Social Network Analysis 1-2 Introduction to R Language/ Syntax 3 Welcome to RStudio 4-14 A. The 4 Panes 5 B. Calculator

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

Section 4 General Factorial Tutorials

Section 4 General Factorial Tutorials Section 4 General Factorial Tutorials General Factorial Part One: Categorical Introduction Design-Ease software version 6 offers a General Factorial option on the Factorial tab. If you completed the One

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

I>clicker 7. Synchronization. Guide for Instructors

I>clicker 7. Synchronization. Guide for Instructors I>clicker 7 Synchronization Guide for Instructors What does synchronization mean? Why sync? How do I sync? These are questions instructors new with i>clicker often ask. As synchronization requires a number

More information

Using RExcel and R Commander

Using RExcel and R Commander Chapter 2 Using RExcel and R Commander Abstract We review the complete set of Rcmdr menu items, including both the action menu items and the active Dataset and model items. We illustrate the output graphs

More information

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21

Reference Guide. Adding a Generic File Store - Importing From a Local or Network ShipWorks Page 1 of 21 Reference Guide Adding a Generic File Store - Importing From a Local or Network Folder Page 1 of 21 Adding a Generic File Store TABLE OF CONTENTS Background First Things First The Process Creating the

More information

Introduction to R & R Commander

Introduction to R & R Commander Introduction to R & R Commander Alexander Ploner 2011-03-18 CONTENTS CONTENTS Contents 1 Getting started 3 1.1 First steps............................................ 3 1.2 A simple

More information

Recipe Costing: How To Import Your Supplier's Price Data - 1

Recipe Costing: How To Import Your Supplier's Price Data - 1 Recipe Costing: How To Import Your Supplier's Price Data This tutorial shows you how to import your supplier's price data into Shop'NCook Pro software and how to update the price information. Exporting

More information

Tutorial: SeqAPass Boxplot Generator

Tutorial: SeqAPass Boxplot Generator 1 Tutorial: SeqAPass Boxplot Generator 1. Access SeqAPASS by opening https://seqapass.epa.gov/seqapass/ using Mozilla Firefox web browser 2. Open the About link on the login page or upon logging in to

More information

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here:

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here: Lab 1. Introduction to R & SAS R is free, open-source software. Get it here: http://tinyurl.com/yfet8mj for your own computer. 1.1. Using R like a calculator Open R and type these commands into the R Console

More information

QUICKBOOKS TO ACCOUNTEDGE CONVERSION GUIDE

QUICKBOOKS TO ACCOUNTEDGE CONVERSION GUIDE QUICKBOOKS TO ACCOUNTEDGE CONVERSION GUIDE Our goal is to save you as much time as possible while you transition your business accounting software. While accounting is accounting, AccountEdge takes a very

More information

BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT

BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT BIOL 417: Biostatistics Laboratory #3 Tuesday, February 8, 2011 (snow day February 1) INTRODUCTION TO MYSTAT Go to the course Blackboard site and download Laboratory 3 MYSTAT Intro.xls open this file in

More information

Manual Physical Inventory Upload Created on 3/17/2017 7:37:00 AM

Manual Physical Inventory Upload Created on 3/17/2017 7:37:00 AM Created on 3/17/2017 7:37:00 AM Table of Contents... 1 Page ii Procedure After completing this topic, you will be able to manually upload physical inventory. Navigation: Microsoft Excel > New Workbook

More information

Question: How do I move my mobile account from the Corporate to my Personal Account?

Question: How do I move my mobile account from the Corporate to my Personal Account? Question: How do I move my mobile account from the Corporate to my Personal Account? Answer: A user leaving Nortel can move his/her account off of the corporate program and into a personal liable account.

More information

IDS 101 Introduction to Spreadsheets

IDS 101 Introduction to Spreadsheets IDS 101 Introduction to Spreadsheets A spreadsheet will be a valuable tool in our analysis of the climate data we will examine this year. The specific goals of this module are to help you learn: how to

More information

HOW TO USE THE EXPORT FEATURE IN LCL

HOW TO USE THE EXPORT FEATURE IN LCL HOW TO USE THE EXPORT FEATURE IN LCL In LCL go to the Go To menu and select Export. Select the items that you would like to have exported to the file. To select them you will click the item in the left

More information

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions...

TABLE OF CONTENTS. TECHNICAL SUPPORT APPENDIX Appendix A Formulas And Cell Links Appendix B Version 1.1 Formula Revisions... SPARC S INSTRUCTIONS For Version 1.1 UNITED STATES DEPARTMENT OF AGRICULTURE Forest Service By Todd Rivas December 29, 1999 TABLE OF CONTENTS WHAT IS SPARC S?... 1 Definition And History... 1 Features...

More information

Budget Reports for All Users

Budget Reports for All Users Budget Reports for All Users Table of Contents: How to Open the MBI - Budgeting Cost Center & Rollup Report..2 How to Open the MBI - Budget Excel Format Cost Center & Rollup Report...7 How to open a TSV

More information

Importing in Offertory Donations from Spreadsheets into Connect Now

Importing in Offertory Donations from Spreadsheets into Connect Now Importing in Offertory Donations from Spreadsheets into Connect Now When you have an excel spreadsheet that has donations in it, if you have a key identifier, such as an envelope number, then the spreadsheet

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

Using the WorldCat Digital Collection Gateway

Using the WorldCat Digital Collection Gateway Using the WorldCat Digital Collection Gateway This tutorial leads you through the steps for configuring your CONTENTdm collections for use with the Digital Collection Gateway and using the Digital Collection

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SAS SAS (originally Statistical Analysis Software ) is a commercial statistical software package based on a powerful programming

More information

TAI Indicator Database User Instructions for Version 1.0

TAI Indicator Database User Instructions for Version 1.0 TAI Indicator Database User Instructions for Version 1.0 Table of Contents QUICK HELP... 4 How do I get started?...4 Where can I find research guidelines and background information for this assessment?...5

More information

Working with Standards and Duplicates in Geochemistry for ArcGIS

Working with Standards and Duplicates in Geochemistry for ArcGIS Working with Standards and Duplicates in Geochemistry for ArcGIS After you have merged your locations and assay results, you may want to extract your control values (standards and duplicates). This process

More information

Overview. Experiment Specifications. This tutorial will enable you to

Overview. Experiment Specifications. This tutorial will enable you to Defining a protocol in BioAssay Overview BioAssay provides an interface to store, manipulate, and retrieve biological assay data. The application allows users to define customized protocol tables representing

More information

Textbook Inventory Cycle

Textbook Inventory Cycle 2016-17 Textbook Inventory Cycle How to check your progress and generate Destiny reports: Once inside Destiny, the go-to report is going to be the Lost Textbooks and Fines report. This can be found under

More information

EXST 7014, Lab 1: Review of R Programming Basics and Simple Linear Regression

EXST 7014, Lab 1: Review of R Programming Basics and Simple Linear Regression EXST 7014, Lab 1: Review of R Programming Basics and Simple Linear Regression OBJECTIVES 1. Prepare a scatter plot of the dependent variable on the independent variable 2. Do a simple linear regression

More information

STATS PAD USER MANUAL

STATS PAD USER MANUAL STATS PAD USER MANUAL For Version 2.0 Manual Version 2.0 1 Table of Contents Basic Navigation! 3 Settings! 7 Entering Data! 7 Sharing Data! 8 Managing Files! 10 Running Tests! 11 Interpreting Output! 11

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 10/15/00 Contents Introduction 3 1. SimSphere Modeling Tool Overview 4 System Requirements 4 Your User Status 4 Main

More information

How to import text files to Microsoft Excel 2016:

How to import text files to Microsoft Excel 2016: How to import text files to Microsoft Excel 2016: You would use these directions if you get a delimited text file from a government agency (or some other source). This might be tab-delimited, comma-delimited

More information

What s New in Spotfire DXP 1.1. Spotfire Product Management January 2007

What s New in Spotfire DXP 1.1. Spotfire Product Management January 2007 What s New in Spotfire DXP 1.1 Spotfire Product Management January 2007 Spotfire DXP Version 1.1 This document highlights the new capabilities planned for release in version 1.1 of Spotfire DXP. In this

More information

Week - 01 Lecture - 04 Downloading and installing Python

Week - 01 Lecture - 04 Downloading and installing Python Programming, Data Structures and Algorithms in Python Prof. Madhavan Mukund Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 04 Downloading and

More information

Microarray Excel Hands-on Workshop Handout

Microarray Excel Hands-on Workshop Handout Microarray Excel Hands-on Workshop Handout Piali Mukherjee (pim2001@med.cornell.edu; http://icb.med.cornell.edu/) Importing Data Excel allows you to import data in tab, comma or space delimited text formats.

More information

Creating a Website Using Weebly.com (July 2012 Update)

Creating a Website Using Weebly.com (July 2012 Update) Creating a Website Using Weebly.com (July 2012 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields.

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. In This Chapter Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. Adding help text to any field to assist users as they fill

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Fitting data with Matlab

Fitting data with Matlab Fitting data with Matlab 1. Generate a delimited text file (from LabVIEW, a text editor, Excel, or another spreadsheet application) with the x values (time) in the first column and the y values (temperature)

More information

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper HP StorageWorks Command View TL TapeAssure Analysis Template White Paper Part Number: AD560-96083 1 st edition: November 2010 HP StorageWorks Command View TL TapeAssure Analysis Template The TapeAssure

More information

Lab 1 Introduction to R

Lab 1 Introduction to R Lab 1 Introduction to R Date: August 23, 2011 Assignment and Report Due Date: August 30, 2011 Goal: The purpose of this lab is to get R running on your machines and to get you familiar with the basics

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Advisor Workstation Training Manual: Working in the Research Module

Advisor Workstation Training Manual: Working in the Research Module Advisor Workstation Training Manual: Working in the Research Module Overview of the Research module - - - - - - - - - - - - - - - - 1 What you will learn in this section - - - - - - - - - - - - - - - -

More information

Statistics for Biologists: Practicals

Statistics for Biologists: Practicals Statistics for Biologists: Practicals Peter Stoll University of Basel HS 2012 Peter Stoll (University of Basel) Statistics for Biologists: Practicals HS 2012 1 / 22 Outline Getting started Essentials of

More information

HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009

HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009 HERA and FEDRA Software User Notes: General guide for all users Version 7 Jan 2009 1 Educational Competencies Consortium Ltd is a not-for-profit, member-driven organisation, offering a unique mix of high

More information

Chapter A8: Scheduled reports

Chapter A8: Scheduled reports Chapter A8: Scheduled reports This chapter is aimed at BankLink Administrators All users can set up a report schedule for a client (see Chapter A5). However, only BankLink Administrators can actually generate

More information

Using Large Data Sets Workbook Version A (MEI)

Using Large Data Sets Workbook Version A (MEI) Using Large Data Sets Workbook Version A (MEI) 1 Index Key Skills Page 3 Becoming familiar with the dataset Page 3 Sorting and filtering the dataset Page 4 Producing a table of summary statistics with

More information

Data Analysis Through Modeling: Thinking and Writing in Context Supplement: Using R and R Commander

Data Analysis Through Modeling: Thinking and Writing in Context Supplement: Using R and R Commander Data Analysis Through Modeling: Thinking and Writing in Context Supplement: Using R and R Commander Kris Green and Allen Emerson Fall 2014 Edition 1 1 c 2014 Kris H. Green ii Contents 1 Downloading and

More information

Transitioning Teacher Websites

Transitioning Teacher Websites Transitioning Teacher Websites Google sites is an online web building tool that can be accessed and updated from anywhere there is an internet connection. Here is a brief video introduction of Google sites.

More information

Chapter 1 Introduction to using R with Mind on Statistics

Chapter 1 Introduction to using R with Mind on Statistics Chapter 1 Introduction to using R with Mind on Statistics Manual overview The purpose of this manual is to help you learn how to use the free R software to perform the graphs, simulations, and data analyses

More information

HPHConnect for Providers. Member Roster User Guide

HPHConnect for Providers. Member Roster User Guide HPHConnect for Providers Member Roster User Guide March 2015 HPHCONNECT MEMBER ROSTER Table of Contents A. OVERVIEW Introduction................................................................. 1 Member

More information

N2KExtractor. Maretron Data Extraction Software User s Manual

N2KExtractor. Maretron Data Extraction Software User s Manual N2KExtractor Maretron Data Extraction Software User s Manual Revision 3.1.6 Copyright 2017 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS.

Depending on the computer you find yourself in front of, here s what you ll need to do to open SPSS. 1 SPSS 13.0 for Windows Introductory Assignment Material covered: Creating a new SPSS data file, variable labels, value labels, saving data files, opening an existing SPSS data file, generating frequency

More information

How to Remove Duplicate Rows in Excel

How to Remove Duplicate Rows in Excel How to Remove Duplicate Rows in Excel http://www.howtogeek.com/198052/how-to-remove-duplicate-rows-in-excel/ When you are working with spreadsheets in Microsoft Excel and accidentally copy rows, or if

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Introduction to R. UCLA Statistical Consulting Center R Bootcamp. Irina Kukuyeva September 20, 2010

Introduction to R. UCLA Statistical Consulting Center R Bootcamp. Irina Kukuyeva September 20, 2010 UCLA Statistical Consulting Center R Bootcamp Irina Kukuyeva ikukuyeva@stat.ucla.edu September 20, 2010 Outline 1 Introduction 2 Preliminaries 3 Working with Vectors and Matrices 4 Data Sets in R 5 Overview

More information

The Survey System Tutorial. CATI Surveys

The Survey System Tutorial. CATI Surveys The Survey System Tutorial CATI Surveys The Survey System offers two kinds of telephone interviewing: desktop CATI, in which interviewers are in a central location using PC software to connect to a local

More information

QUEEN MARY, UNIVERSITY OF LONDON. Introduction to Statistics

QUEEN MARY, UNIVERSITY OF LONDON. Introduction to Statistics QUEEN MARY, UNIVERSITY OF LONDON MTH 4106 Introduction to Statistics Practical 1 10 January 2012 In this practical you will be introduced to the statistical computing package called Minitab. You will use

More information

Step-By-Step Instructions for Using InDesign

Step-By-Step Instructions for Using InDesign Step-By-Step Instructions for Using InDesign Before you even start a new document in InDesign, you will need to think about the size of your book as well as the number of pages you want to include (not

More information

Import/Export Options

Import/Export Options Import/Export Options Contents IMPORT/EXPORT OPTIONS... 1 OVERVIEW OF IMPORT AND EXPORT OPTIONS... 1 PRINT PREVIEW... 2 OPENING PROJECTS FROM EARLIER VERSIONS (MAXQDA 11 OR OLDER)... 2 OPENING MAXQDA PROJECTS

More information

Expedient User Manual Getting Started

Expedient User Manual Getting Started Volume 1 Expedient User Manual Getting Started Gavin Millman & Associates Pty Ltd 281 Buckley Street Essendon VIC 3040 Phone 03 9331 3944 Web www.expedientsoftware.com.au Table of Contents Logging In...

More information

sohodox Quick Start Guide

sohodox Quick Start Guide sohodox Quick Start Guide Starting Sohodox Click on Start > All Programs > Sohodox or double click Sohodox icon desktop to run Sohodox. Login as Superadmin. Username: superadmin Password: superadmin Sohodox

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information