Introduction to IgorPro

Size: px
Start display at page:

Download "Introduction to IgorPro"

Transcription

1 Introduction to IgorPro These notes provide an introduction to the software package IgorPro. For more details, see the Help section or the IgorPro online manual. [ 1. Entering Data Start Igor by double-clicking the icon or choose from Windows Start Menu. An empty grid will appear. As you type each number, press Enter, Return or Down Arrow to move to the next cell. Move to the next column by clicking the mouse in the first cell of the next blank column. The column headings are, by default, 'wave0', 'wave1', etc. You can change these by selecting Data > Rename. Click on `wave0' and the arrow icon and rename as desired. (for example x-value, but you can use any name except "time" because it is the name of a built-in function). Similarly, for "wave1". Then Do It. 1

2 Editing Data: You can change points by simply typing over the numbers in each cell. To add or delete points, use Data > Insert Points... or Data > Delete Points... The data table can be edited just like numbers in a spreadsheet. You can add, multiply, divide, etc., to generate a new column of numbers. For example, you might want to plot the resistance of a component from voltage and current data. This can be achieved using the Command window at the bottom of the screen. Below, we generate a new column of numbers called 'ohms', created by dividing the 'y- value' column by 'x-value'. Make /N =7 ohms ohms = 'y-value'/'x-value' AppendToTable ohms The table becomes: The /N flag ensures that the length of the new column is the same as the others (7, here). The single quotes are requires to prevent the hyphen being interpreted as a minus sign. Quote marks are not required if the column name does not contain non-alphanumeric characters. Most mathematical functions are included, such as sin(), cos() and exp(). Note that ln() is the natural logarithm, while log() is log (base 10). 2. Display the Graph Choose the Windows > New Graph. Highlight the items corresponding to the x and y axes (Xwave and Ywave) and click Do It. A simple graph will appear: 2

3 The graph can be modified by positioning the cursor directly over the trace and doubleclicking (or select Graph> Modify Trace Appearance). Adjust the Mode, Color, marker size, etc as desired. Then click Do It. It is recommended that you use solid black circular markers because you will usually be adding the line of best fit as part of your data analysis 3

4 To modify the axes, position the cursor over the bottom axis line. The cursor changes to this shape:. Double-click and the Modify Axis dialog box appears. Note the Live Update checkbox in the top/right corner. When checked, changes that you make are immediately reflected in the graph. When it is unchecked, the changes appear only when you click Do It. 4

5 Click the Axis tab. Choose On from the Mirror Axis pop-up. This will complete a frame around your graph. Click the Auto/Man Ticks tab to display the following: Click the Minor Ticks checkbox so it is checked. Click the Ticks and Grids tab: Choose Inside from the Location pop-up. Select left axis from the Axis pop-up menu in the top-left corner of the dialog and then repeat the above steps for the bottom axis. Then click Do It. [You can also adjust both axes together by choosing `Select All Axes ]. Your graph will now look like this: 5

6 You can adjust the positions of the markers by choosing Round to nice values from the pop-up menu that initially reads Use data limits. If it is important to include the origin as well, choose "Autoscale from Zero 6

7 Finally click on the Axis Label tab to add labels to your graph: You can add legends and other text to your graph, See the users manual for further details. 2. Regression When fitting data to a straight line, y=mx+b, we need to know the error in the slope and intercept in order to determine the overall uncertainty in the result from a laboratory experiment. Select Analysis> Quick Fit > line. 7

8 Igor will draw the best straight line to the points and generate some statistical information at the bottom of the screen. This says that the slope is 1.71 ± 0.31, while the intercept is 1.02 ± 1.14 (units will be determined from your experiment). To display the result of the fit on the graph itself, select Analysis> Quick Fit > Textbox Preferences. Check the appropriate boxes. 8

9 When you select Analysis > Quick Fit > line, the result will appear on the graph, which you can then move to any location on the plot. 9

10 Extrapolating a Fit to the edge of the frame In order to make the appearance of the graph more pleasing you may want to extrapolate the calculated straight line to the edge of the frame. When you used the Quick Fit menu, Igor created a wave named fit_y-values. This is called the "fit destination wave." It is just an ordinary wave whose X scaling is set to the extent of the X values used in the fit. To extrapolate, we simply change the X scaling of fit_y-values and re-execute the fit destination wave assignment statement which the CurveFit operation put in the history area. Choose the Data Change Wave Scaling menu item. From the SetScale Mode pop-up menu, choose Start and End. Double-click fit_yvalues in the list. This reads in the current X scaling values. The starting X value will be about 2.3 and the ending X will be about 4.8. In the Start box enter 0. In the End box enter 5. Click Do It. The fit_y-values trace is stretched out and now runs between 0 and 5. Now we need to calculate new Y values for fit_y-values using its new X values. In the history, find the line that starts fit_y-values= and click it. 10

11 The entire line is selected. Press Return or Enter once to copy the selection from the history to the command line and a second time to execute it. The fit_y_values wave now contains data between 1 and Error Bars: Unweighted and weighted Fit Consider the following data: 11

12 Tick the Error Bars box in the Modify Trace window. The errors are contained in the err_y column: 12

13 You can fit a straight line to this data using the Analysis > Quick fit > line menu as before. Alternately, you can use the Analysis > Curve Fitting menu item which gives more flexibility. Select the function and the names of the x and y columns. 13

14 Under Data Options set Weighting to _none_, (unweighted fit). Under Output Options check X Range Full Width of Graph. Add Textbox to Graph will display the fit on your graph as well as the command window. 14

15 Weighted Fit: When you include error bars, you expect data points with small errors to be more believable than data points with large errors. Thus you should expect the fit to follow the small error bars more closely than the larger ones. This is known as a weighted fit. The weight depends on the error associated with each data point and is proportional to 1/(error 2 ). Thus points with small error bars have a larger weight than points with large error bars. Choose err_y from the Weighting drop-down menu: 15

16 The weighted plot is shown below. Note that points with the largest error bars are almost ignored by the straight line. 4. Fitting Other Mathematical Functions Both Quick Fit and Curve Fitting allow you to fit other common mathematical functions to your data. These include: Polynomial: One of the most common functions you will use in the laboratory is a 2 quadratic function, of the form ax + bx +c. This is a second order polynomial, and you will be determining the three values of a, b and c. So to fit this function, select Analysis > Quick Fit > poly > 3 Consider the following data: 16

17 The resulting graph is shown below. The equation of the line of best fit is y = x 0.17 x 2 (where x represents time and y represents position). The errors in these coefficients are also calculated by IgorPro. Other functions include: Power Law Fit: Data which obeys a simple power law can be described by a function of the form y = yo+ax n. Analysis > Quick Fit > Power will give values for A and n. Alternately, taking the logarithm of each side gives log(y) = log(a) + n log(x) and a plot of log(y) versus log(x) will give a straight line of slope n. Exponential Functions: Exponential functions occur commonly in physics. Use exp or exp_xoffset You can define your own functions too. Use Analysis > Curve Fitting > New Fit Function. Consider the following data: 17

18 You can define your own function. Use Analysis > Curve Fitting > New Fit Function. Suppose you want to fit your data to the function Asin(Bx)+C, where A, B and C are to be determined. 1. Give the function a name (e.g., myfunc) 2. Enter A, B and C in the Fit Coefficients boxes and x as the independent variable. 3. Type the function in the Fit Expression box. 18

19 Select the columns corresponding to x and y data, and save the function. Enter initial guesses for the coefficients A, B and C. Often using "1" for each will do. Some functions may require more fine-tuning. 19

20 Click Do It to obtain the line of best fit. 20

21 5. Plotting Functions 1. Decide how many points you want to plot. 2. Make a wave with that many points. 3. Use the SetScale operation to set the wave s X scaling. This defines the domain over which you are going to plot the function. 4. Display the wave in a graph. 5. Execute a waveform assignment statement to set the data values of the wave. Example: Type these lines in the Command window. Make/O/N=500 wave0 SetScale/I x, 0, 4*PI, wave0 // plot function from x=0 to x=4π Display wave0 wave0 = 3*sin(x) + 1.5*sin(2*x + PI/6) To see the data generated by the function, choose Data > Data Browser. Clicking on wave0 (the default name of the data set) will display all 500 data points 21

22 6. Plotting Multiple Curves on the same Axes Consider the following data with common x-values, but two different y-values. Select Windows > New Graph as before and highlight the x and y columns. Click Do It and adjust the markers as desired, for example: 22

23 The data sets do not need to contain the same number of points. Select Windows > New Graph to plot the first set of data: 23

24 Tidy the graph as desired. The text "Plotting two graphs together" was created using the Graph > Add Annotation menu. 24

25 The same technique can be used to plot functions and data on the same axes. For example, here is a plot of the function y = 4 x 2 3x + 8 and some data: 25

26 Plotting Different Functions on the same Axes The procedure is the same as for one function, except you need to associate a wave with each function. For example; Make/O/N=500 wave0 wave1 // make space for 2 functions (500 points each) SetScale/I x, 0, 200, wave0 // plot function from x=0 to x=200 wave0=sqrt(x) wave1=x/10 Display wave0 wave1 26

27 7. Fitting a function to selected data points. Consider the following data: Rather than trying to fit this data to a single function, we shall fit the first eight points to a straight line, and the last seven points to a different straight line function. Press Ctrl-I to bring up the plot information window. A small frame will appear just below the graph: 27

28 Use the mouse to drag the cursor labeled 'A' to the first point of your chosen region and drag the cursor labeled 'B' to the second point To fit the points between the cursors, select Analysis-Quick Fit. 28

29 Note the check mark at 'Fit Between Cursors'. For this straight line fit the result is displayed in the Command window: And the line of best fit is drawn between the points. Likewise for the second set of points, we obtain the result: with the corresponding plot: 29

30 You can, of course, use the Curve Fitting menu to control the fit. Here, both fits are displayed on the same axes. 30

31 8. Importing Data from an Experiment Often you will need to load data from a file created by another program. The process of loading a file creates new waves which contain this data. Text files generated by scientific instruments or custom programs often have header information at the start of the file. The header is not part of the block of data but contains information associated with it. Igor s text loading routines are designed to load the block of data, but not the header. Consider the following data file: (which we will call Test_Data_Import.txt) Start IgorPro and select Data - Load Waves - Load General Text: 31

32 The You will be prompted for the name of the file, and the following window will appear: 32

33 33 Note that the header has been skipped, and the data columns have been labelled wave0 and wave1, which you are free to change. Check the Make Table box and ensure that the Column Format drop-down box is set to Number. Clicking Load produces the familiar data window. Sometimes you may need to use the Load Delimited Text routine. This needs to be told where the block of data starts if it is not at the start of the file. Columns may be equal or unequal in length. Using the Command Line Simply type `LoadWave /J' into the command line. The flag '/J' forces the data to be numeric.

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data The following table shows the raw data which you need to fit to an appropriate equation k (s -1 ) T (K) 0.00043 312.5 0.00103 318.47 0.0018

More information

Microsoft Word for Report-Writing (2016 Version)

Microsoft Word for Report-Writing (2016 Version) Microsoft Word for Report-Writing (2016 Version) Microsoft Word is a versatile, widely-used tool for producing presentation-quality documents. Most students are well-acquainted with the program for generating

More information

Experiment 1 CH Fall 2004 INTRODUCTION TO SPREADSHEETS

Experiment 1 CH Fall 2004 INTRODUCTION TO SPREADSHEETS Experiment 1 CH 222 - Fall 2004 INTRODUCTION TO SPREADSHEETS Introduction Spreadsheets are valuable tools utilized in a variety of fields. They can be used for tasks as simple as adding or subtracting

More information

Reference and Style Guide for Microsoft Excel

Reference and Style Guide for Microsoft Excel Reference and Style Guide for Microsoft Excel TABLE OF CONTENTS Getting Acquainted 2 Basic Excel Features 2 Writing Cell Equations Relative and Absolute Addresses 3 Selecting Cells Highlighting, Moving

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

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

Dealing with Data in Excel 2013/2016

Dealing with Data in Excel 2013/2016 Dealing with Data in Excel 2013/2016 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for

More information

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0 SciGraphica Tutorial Manual - Tutorials 1and 2 Version 0.8.0 Copyright (c) 2001 the SciGraphica documentation group Permission is granted to copy, distribute and/or modify this document under the terms

More information

Excel Spreadsheets and Graphs

Excel Spreadsheets and Graphs Excel Spreadsheets and Graphs Spreadsheets are useful for making tables and graphs and for doing repeated calculations on a set of data. A blank spreadsheet consists of a number of cells (just blank spaces

More information

Graphical Analysis. for Windows. COPYRIGHT 1995 Vernier Software ISBN # X. User's Manual. Teacher's Guide.

Graphical Analysis. for Windows. COPYRIGHT 1995 Vernier Software ISBN # X. User's Manual. Teacher's Guide. Graphical Analysis for Windows COPYRIGHT 1995 Vernier Software ISBN #0-918731-81-X User's Manual Teacher's Guide Reference Section Version 12/6/00 Vernier Software & Technology 13979 SW Millikan Way Beaverton,

More information

Pre-Lab Excel Problem

Pre-Lab Excel Problem Pre-Lab Excel Problem Read and follow the instructions carefully! Below you are given a problem which you are to solve using Excel. If you have not used the Excel spreadsheet a limited tutorial is given

More information

Plotting Graphs. Error Bars

Plotting Graphs. Error Bars E Plotting Graphs Construct your graphs in Excel using the method outlined in the Graphing and Error Analysis lab (in the Phys 124/144/130 laboratory manual). Always choose the x-y scatter plot. Number

More information

Scientific Graphing in Excel 2007

Scientific Graphing in Excel 2007 Scientific Graphing in Excel 2007 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

ENV Laboratory 2: Graphing

ENV Laboratory 2: Graphing Name: Date: Introduction It is often said that a picture is worth 1,000 words, or for scientists we might rephrase it to say that a graph is worth 1,000 words. Graphs are most often used to express data

More information

Sketching graphs of polynomials

Sketching graphs of polynomials Sketching graphs of polynomials We want to draw the graphs of polynomial functions y = f(x). The degree of a polynomial in one variable x is the highest power of x that remains after terms have been collected.

More information

Lab1: Use of Word and Excel

Lab1: Use of Word and Excel Dr. Fritz Wilhelm; physics 230 Lab1: Use of Word and Excel Page 1 of 9 Lab partners: Download this page onto your computer. Also download the template file which you can use whenever you start your lab

More information

Microsoft Excel 2007 Creating a XY Scatter Chart

Microsoft Excel 2007 Creating a XY Scatter Chart Microsoft Excel 2007 Creating a XY Scatter Chart Introduction This document will walk you through the process of creating a XY Scatter Chart using Microsoft Excel 2007 and using the available Excel features

More information

Chemistry Excel. Microsoft 2007

Chemistry Excel. Microsoft 2007 Chemistry Excel Microsoft 2007 This workshop is designed to show you several functionalities of Microsoft Excel 2007 and particularly how it applies to your chemistry course. In this workshop, you will

More information

Graphing Calculator Tutorial

Graphing Calculator Tutorial Graphing Calculator Tutorial This tutorial is designed as an interactive activity. The best way to learn the calculator functions will be to work the examples on your own calculator as you read the tutorial.

More information

8/20/2012 Getting Started.ihf 1

8/20/2012 Getting Started.ihf 1 8/20/2012 Getting Started.ihf 1 Getting Started This help file contains overview and guided tour material and constitutes an essential introduction to Igor Pro. The main sections are: Introduction to Igor

More information

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors:

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors: The goal of this technology assignment is to graph several formulas in Excel. This assignment assumes that you using Excel 2007. The formula you will graph is a rational function formed from two polynomials,

More information

Capstone Appendix. A guide to your lab computer software

Capstone Appendix. A guide to your lab computer software Capstone Appendix A guide to your lab computer software Important Notes Many of the Images will look slightly different from what you will see in lab. This is because each lab setup is different and so

More information

Total Number of Students in US (millions)

Total Number of Students in US (millions) The goal of this technology assignment is to graph a formula on your calculator and in Excel. This assignment assumes that you have a TI 84 or similar calculator and are using Excel 2007. The formula you

More information

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center June 6, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the row-column

More information

Spreadsheet View and Basic Statistics Concepts

Spreadsheet View and Basic Statistics Concepts Spreadsheet View and Basic Statistics Concepts GeoGebra 3.2 Workshop Handout 9 Judith and Markus Hohenwarter www.geogebra.org Table of Contents 1. Introduction to GeoGebra s Spreadsheet View 2 2. Record

More information

W7 DATA ANALYSIS 2. Your graph should look something like that in Figure W7-2. It shows the expected bell shape of the Gaussian distribution.

W7 DATA ANALYSIS 2. Your graph should look something like that in Figure W7-2. It shows the expected bell shape of the Gaussian distribution. Drawing Simple Graphs W7 DATA ANALYSIS 2 In some experiments, large amounts of data may be recorded and manipulation is performed using computer software. Although sophisticated, specialist software exists

More information

Physics 211 E&M and Modern Physics Spring Lab #1 (to be done at home) Plotting with Excel. Good laboratory practices

Physics 211 E&M and Modern Physics Spring Lab #1 (to be done at home) Plotting with Excel. Good laboratory practices NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 211 E&M and Modern Physics Spring 2018 Lab #1 (to be done at home) Lab Writeup Due: Mon/Wed/Thu/Fri, Jan. 22/24/25/26, 2018 Read Serway & Vuille:

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

Tips and Guidance for Analyzing Data. Executive Summary

Tips and Guidance for Analyzing Data. Executive Summary Tips and Guidance for Analyzing Data Executive Summary This document has information and suggestions about three things: 1) how to quickly do a preliminary analysis of time-series data; 2) key things to

More information

Getting Started With Excel

Getting Started With Excel Chapter 1 Getting Started With Excel This chapter will familiarize you with various basic features of Excel. Specific features which you need to solve a problem will be introduced as the need arises. When

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data Using Excel for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters. Graphs are

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Microsoft Excel Using Excel in the Science Classroom

Microsoft Excel Using Excel in the Science Classroom Microsoft Excel Using Excel in the Science Classroom OBJECTIVE Students will take data and use an Excel spreadsheet to manipulate the information. This will include creating graphs, manipulating data,

More information

Managing the Displays in IX1D v 3 A Tutorial

Managing the Displays in IX1D v 3 A Tutorial Managing the Displays in IX1D v 3 A Tutorial Version 1.0 2006 Interpex Limited All rights reserved Adjusting Display Parameters IX1D v 3 has several commands and dialogs that are used to manage the views

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

Simulink Basics Tutorial

Simulink Basics Tutorial Simulink Basics Tutorial Simulink is a graphical extension to MATLAB for modeling and simulation of systems. One of the main advantages of Simulink is the ability to model a nonlinear system, which a transfer

More information

You are to turn in the following three graphs at the beginning of class on Wednesday, January 21.

You are to turn in the following three graphs at the beginning of class on Wednesday, January 21. Computer Tools for Data Analysis & Presentation Graphs All public machines on campus are now equipped with Word 2010 and Excel 2010. Although fancier graphical and statistical analysis programs exist,

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

Standardized Tests: Best Practices for the TI-Nspire CX

Standardized Tests: Best Practices for the TI-Nspire CX The role of TI technology in the classroom is intended to enhance student learning and deepen understanding. However, efficient and effective use of graphing calculator technology on high stakes tests

More information

1. What specialist uses information obtained from bones to help police solve crimes?

1. What specialist uses information obtained from bones to help police solve crimes? Mathematics: Modeling Our World Unit 4: PREDICTION HANDOUT VIDEO VIEWING GUIDE H4.1 1. What specialist uses information obtained from bones to help police solve crimes? 2.What are some things that can

More information

Logger Pro Resource Sheet

Logger Pro Resource Sheet Logger Pro Resource Sheet Entering and Editing Data Data Collection How to Begin How to Store Multiple Runs Data Analysis How to Scale a Graph How to Determine the X- and Y- Data Points on a Graph How

More information

J. La Favre Calibrating Sharp Distance Sensors July 18, 2018

J. La Favre Calibrating Sharp Distance Sensors July 18, 2018 GEAR has a number of Sharp brand IR distance sensors that can be used to determine distance to a target object. This type of sensor can be useful for maze robot projects as well as others. Sharp offers

More information

MOVING FROM CELL TO CELL

MOVING FROM CELL TO CELL VCAE: EXCEL Lesson 1 Please send comments to Author: Zahra Siddiqui at zed_ess@hotmail.com Concepts Covered: Cell Address; Cell Pointer; Moving across Cells Constants: Entering, Editing, Formatting Using

More information

Technology Assignment: Scatter Plots

Technology Assignment: Scatter Plots The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. You

More information

Ancient Cell Phone Tracing an Object and Drawing with Layers

Ancient Cell Phone Tracing an Object and Drawing with Layers Ancient Cell Phone Tracing an Object and Drawing with Layers 1) Open Corel Draw. Create a blank 8.5 x 11 Document. 2) Go to the Import option and browse to the Graphics 1 > Lessons folder 3) Find the Cell

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data EXERCISE Using Excel for Graphical Analysis of Data Introduction In several upcoming experiments, a primary goal will be to determine the mathematical relationship between two variable physical parameters.

More information

Green Globs And Graphing Equations

Green Globs And Graphing Equations Green Globs And Graphing Equations Green Globs and Graphing Equations has four parts to it which serve as a tool, a review or testing device, and two games. The menu choices are: Equation Plotter which

More information

Using Graphical Analysis This exercise will familiarize you with using Graphical Analysis in Beer s Law and kinetics.

Using Graphical Analysis This exercise will familiarize you with using Graphical Analysis in Beer s Law and kinetics. Using Graphical Analysis 3.1.1 This exercise will familiarize you with using Graphical Analysis in Beer s Law and kinetics. Beer s Law In this exercise you will plot a calibration curve of absorbance versus

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

Microsoft Excel Lab: Data Analysis

Microsoft Excel Lab: Data Analysis 1 Microsoft Excel Lab: The purpose of this lab is to prepare the student to use Excel as a tool for analyzing data taken in other courses. The example used here comes from a Freshman physics lab with measurements

More information

Excel for Gen Chem General Chemistry Laboratory September 15, 2014

Excel for Gen Chem General Chemistry Laboratory September 15, 2014 Excel for Gen Chem General Chemistry Laboratory September 15, 2014 Excel is a ubiquitous data analysis software. Mastery of Excel can help you succeed in a first job and in your further studies with expertise

More information

Technical Documentation Version 7.3 Output

Technical Documentation Version 7.3 Output Technical Documentation Version 7.3 Output These documents are copyrighted by the Regents of the University of Colorado. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

Creating Interactive Workbooks Using MS Excel Sarah Mabrouk, Framingham State College

Creating Interactive Workbooks Using MS Excel Sarah Mabrouk, Framingham State College Creating Interactive Workbooks Using MS Excel Sarah Mabrouk, Framingham State College Overview: MS Excel provides powerful calculation, statistical, graphing, and general data analysis and organizational

More information

Labview. Masood Ejaz

Labview. Masood Ejaz Labview A Tutorial By Masood Ejaz Note: This tutorial is a work in progress and written specially for CET 3464 Software Applications in Engineering Technology, a course offered as part of BSECET program

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

Math 2524: Activity 1 (Using Excel) Fall 2002

Math 2524: Activity 1 (Using Excel) Fall 2002 Math 2524: Activity 1 (Using Excel) Fall 22 Often in a problem situation you will be presented with discrete data rather than a function that gives you the resultant data. You will use Microsoft Excel

More information

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7)

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) Graph as a XY Scatter Chart, add titles for chart and axes, remove gridlines. A. Select

More information

Appendix B: Using Graphical Analysis

Appendix B: Using Graphical Analysis Appendix B: Using Graphical Analysis Graphical Analysis (GA) is a program by Vernier Software. This program is loaded on all of the Physics 170A computers as well as all of the regular Physics 170 computers.

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Spectroscopic Analysis: Peak Detector

Spectroscopic Analysis: Peak Detector Electronics and Instrumentation Laboratory Sacramento State Physics Department Spectroscopic Analysis: Peak Detector Purpose: The purpose of this experiment is a common sort of experiment in spectroscopy.

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology February 25, 2014 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a

More information

Using DataQuest on a Handheld

Using DataQuest on a Handheld Using DataQuest on a Handheld Appendix B This appendix gives an overview of using the Vernier DataQuest application on a TI-Nspire handheld. It includes information on accessing the common tools in the

More information

Activity Graphical Analysis with Excel and Logger Pro

Activity Graphical Analysis with Excel and Logger Pro Activity Graphical Analysis with Excel and Logger Pro Purpose Vernier s Logger Pro is a graphical analysis software that will allow you to collect, graph and manipulate data. Microsoft s Excel is a spreadsheet

More information

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties 252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. You will learn

More information

An Introduction to Graphing Calculator Basics: Graphing Functions and Solving Equations

An Introduction to Graphing Calculator Basics: Graphing Functions and Solving Equations An Introduction to Graphing Calculator Basics: Graphing Functions and Solving Equations Audience: Teachers of mathematics who have little or no experience with graphing calculators. Required Technology:

More information

II-13Category Plots. Chapter II-13

II-13Category Plots. Chapter II-13 Chapter II-13 II-13Category Plots Overview... 268 Creating a Category Plot... 268 Category Plot Commands... 269 Combining Category Plots and XY Plots... 269 Modifying a Category Plot... 269 Bar and Category

More information

Computer Data Analysis and Plotting

Computer Data Analysis and Plotting Phys 122 February 6, 2006 quark%//~bland/docs/manuals/ph122/pcintro/pcintro.doc Computer Data Analysis and Plotting In this lab we will use Microsot EXCEL to do our calculations. This program has been

More information

Introduction to creating and working with graphs

Introduction to creating and working with graphs Introduction to creating and working with graphs In the introduction discussed in week one, we used EXCEL to create a T chart of values for a function. Today, we are going to begin by recreating the T

More information

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout, MS Excel 2010 offers a large set of graphs and plots for data visualization. For those who are familiar with older version of Excel, the layout is completely different. The following exercises demonstrate

More information

Graphical Analysis of Data using Microsoft Excel [2016 Version]

Graphical Analysis of Data using Microsoft Excel [2016 Version] Graphical Analysis of Data using Microsoft Excel [2016 Version] Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters.

More information

Getting Started with LabVIEW Virtual Instruments

Getting Started with LabVIEW Virtual Instruments Getting Started with LabVIEW Virtual Instruments Approximate Time You can complete this exercise in approximately 30 minutes. Background LabVIEW programs are called virtual instruments, or VIs, because

More information

Getting Started with DADiSP

Getting Started with DADiSP Section 1: Welcome to DADiSP Getting Started with DADiSP This guide is designed to introduce you to the DADiSP environment. It gives you the opportunity to build and manipulate your own sample Worksheets

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

Exercise: Graphing and Least Squares Fitting in Quattro Pro

Exercise: Graphing and Least Squares Fitting in Quattro Pro Chapter 5 Exercise: Graphing and Least Squares Fitting in Quattro Pro 5.1 Purpose The purpose of this experiment is to become familiar with using Quattro Pro to produce graphs and analyze graphical data.

More information

II-12Graphs. Chapter II-12

II-12Graphs. Chapter II-12 Chapter II-12 II-12Graphs Overview... 212 Graph Features... 212 The Graph Menu... 213 Typing in Graphs... 213 Graph Names... 213 Creating Graphs... 213 Waves and Axes... 215 Types of Axes... 215 Appending

More information

0 Graphical Analysis Use of Excel

0 Graphical Analysis Use of Excel Lab 0 Graphical Analysis Use of Excel What You Need To Know: This lab is to familiarize you with the graphing ability of excels. You will be plotting data set, curve fitting and using error bars on the

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

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW Objectives: The goal of this exercise is to introduce the Laboratory Virtual Instrument Engineering Workbench, or LabVIEW software. LabVIEW is the primary software

More information

Computer Data Analysis and Use of Excel

Computer Data Analysis and Use of Excel Computer Data Analysis and Use o Excel I. Theory In this lab we will use Microsot EXCEL to do our calculations and error analysis. This program was written primarily or use by the business community, so

More information

Excel 2003 Tutorial II

Excel 2003 Tutorial II This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial II Charts Chart Wizard Chart toolbar Resizing a chart

More information

Physics 251 Laboratory Introduction to Spreadsheets

Physics 251 Laboratory Introduction to Spreadsheets Physics 251 Laboratory Introduction to Spreadsheets Pre-Lab: Please do the lab-prep exercises on the web. Introduction Spreadsheets have a wide variety of uses in both the business and academic worlds.

More information

Chapter 4 Determining Cell Size

Chapter 4 Determining Cell Size Chapter 4 Determining Cell Size Chapter 4 Determining Cell Size The third tutorial is designed to give you a demonstration in using the Cell Size Calculator to obtain the optimal cell size for your circuit

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

Describe the Squirt Studio

Describe the Squirt Studio Name: Recitation: Describe the Squirt Studio This sheet includes both instruction sections (labeled with letters) and problem sections (labeled with numbers). Please work through the instructions and answer

More information

Practical 1P1 Computing Exercise

Practical 1P1 Computing Exercise Practical 1P1 Computing Exercise What you should learn from this exercise How to use the teaching lab computers and printers. How to use a spreadsheet for basic data analysis. How to embed Excel tables

More information

Introduction to Geogebra

Introduction to Geogebra Aims Introduction to Geogebra Using Geogebra in the A-Level/Higher GCSE Classroom To provide examples of the effective use of Geogebra in the teaching and learning of mathematics at A-Level/Higher GCSE.

More information

Module 1: Basics of Solids Modeling with SolidWorks

Module 1: Basics of Solids Modeling with SolidWorks Module 1: Basics of Solids Modeling with SolidWorks Introduction SolidWorks is the state of the art in computer-aided design (CAD). SolidWorks represents an object in a virtual environment just as it exists

More information

Intro To Excel Spreadsheet for use in Introductory Sciences

Intro To Excel Spreadsheet for use in Introductory Sciences INTRO TO EXCEL SPREADSHEET (World Population) Objectives: Become familiar with the Excel spreadsheet environment. (Parts 1-5) Learn to create and save a worksheet. (Part 1) Perform simple calculations,

More information

Galaxie Report Editor

Galaxie Report Editor Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Galaxie Report Editor User s Guide Varian, Inc. 2008 Printed in U.S.A. 03-914949-00: Rev 6 Galaxie Report Editor i Table of Contents Introduction...

More information

Here is the data collected.

Here is the data collected. Introduction to Scientific Analysis of Data Using Spreadsheets. Computer spreadsheets are very powerful tools that are widely used in Business, Science, and Engineering to perform calculations and record,

More information

Introduction to Simulink

Introduction to Simulink Introduction to Simulink Mikael Manngård Process Control Laboratory, Åbo Akademi University February 27, 2014 Simulink is an extension to MATLAB that is used for modeling and simulation of dynamic systems.

More information

The Mathcad Workspace 7

The Mathcad Workspace 7 For information on system requirements and how to install Mathcad on your computer, refer to Chapter 1, Welcome to Mathcad. When you start Mathcad, you ll see a window like that shown in Figure 2-1. By

More information

SystemVue 2011 Fundamentals (version ) LAB EXERCISE 1. SystemVue Basics

SystemVue 2011 Fundamentals (version ) LAB EXERCISE 1. SystemVue Basics SystemVue 2011 Fundamentals (version 1-2012) LAB EXERCISE 1 SystemVue Basics This lab exercise introduces the basic use model of SystemVue, including using the built-in templates, running analyses and

More information

Chapter 10 Working with Graphs and Charts

Chapter 10 Working with Graphs and Charts Chapter 10: Working with Graphs and Charts 163 Chapter 10 Working with Graphs and Charts Most people understand information better when presented as a graph or chart than when they look at the raw data.

More information

SciGraphica. Tutorial Manual - Tutorial 3 Version 0.8.0

SciGraphica. Tutorial Manual - Tutorial 3 Version 0.8.0 SciGraphica Tutorial Manual - Tutorial 3 Version 0.8.0 Copyright (c) 2001 The SciGraphica documentation group Permission is granted to copy, distribute and/or modify this document under the terms of the

More information