Stata version 12. Lab Session 1 February Preliminary: How to Screen Capture.. 2. Preliminary: How to Keep a Log of Your Stata Session..

Size: px
Start display at page:

Download "Stata version 12. Lab Session 1 February Preliminary: How to Screen Capture.. 2. Preliminary: How to Keep a Log of Your Stata Session.."

Transcription

1 Stata version 12 Lab Session 1 February Preliminary: How to Screen Capture.. 2. Preliminary: How to Keep a Log of Your Stata Session.. 3. Preliminary: How to Save a Stata Graph Enter Data: How to Create a New Data Set in Stata. 5. Enter Data: How to Import an Excel Data Set Enter Data: How to Import a Stata Data Set from the Internet 7. Describe Your Data Numerical Descriptions 8. Describe Your Data Graphical Descriptions. 9. One and Two Sample Inference. 10. Simple and Multiple Linear Regression \stata v 12 lab session 1.doc 2/18/2013 Page 1 of 22

2 1. Preliminary: How to Screen Capture When to Screen Capture Screen capture is useful when you want to capture a picture to be pasted elsewhere. The picture might be what is on your screen following a google image search. Or it might be what is on your screen after obtaining an error message. There are two steps: (1) capturing the picture, followed by (2) pasting the picture elsewhere. Step 1 Capture the Picture (PC Users) \stata v 12 lab session 1.doc 2/18/2013 Page 2 of 22

3 Step 1 Capture the Picture (for MAC Users) Step 2 Paste the Picture 1. Launch WORD 2. Scroll to the location where the picture is to be placed. Tip Make sure there is a blank line above this location. 3. Use the TABLE commands to create a table that has 1 row and 1 column 4. Position the cursor inside your table. Tip Center the cursor so that your picture will be centered. 5. Use INSERT > PICTURE > FROM FILE to insert your picture. YOUR TURN: a. Create a word document called lab1.doc b. Using your browser, go to the welcome page for PubHlth 640 c. Capture the picture of the lighthouse d. Paste into lab1.doc \stata v 12 lab session 1.doc 2/18/2013 Page 3 of 22

4 2. Preliminary: How to Keep a Log of Your Stata Session When to Keep a Log of Your Stata Session The short answer is: ALWAYS! This is both an archive of your work that can be reproduced later and a record of what you have learned how to do (thus, saving you having to re-learn it later!). It is also useful in report writing. You can import sections of your log, results mostly, into the report that you write. A Stata log can be saved in either of two formats: smcl or log.smcl smcl stands for stata markup and control language. This format preserves all the Stata formatting and controls..log This is a plain text format. This format is easily imported into MS Word or Notepad. Tip Save your log in format.log Step 1: From the main menu at upper left: FILE > LOG > BEGIN \stata v 12 lab session 1.doc 2/18/2013 Page 4 of 22

5 Step 2: Click on drop down menu at right of FILE FORMAT: Step 3: Choose Stata Log Step 4: Enter name at SAVE AS: Then click SAVE YOUR TURN: a. Launch Stata b. Start a log of your lab session that you name feb20_lab \stata v 12 lab session 1.doc 2/18/2013 Page 5 of 22

6 3. Preliminary: How to Save a Stata Graph When to Save a Stata Graph Again, the short answer is: ALWAYS! Surely you will want to display your graph somewhere, yes? Step 1: Create your graph (for now just follow along by typing the following in the command window) use clear graph twoway (scatter boiling temp, symbol(d)) (lfit boiling temp), title( Simple Linear Regression ) subtitle( Y=boiling on X=temp ) caption( boiling.png, size(vsmall)) \stata v 12 lab session 1.doc 2/18/2013 Page 6 of 22

7 Step 2: With the graph window still active, click on the SAVE icon. Step 3: From drop down menu for File format: Choose PORTABLE NETWORK GRAPHICS (*.png) Step 4: Enter your choices at SAVE AS and at WHERE. Then click on the SAVE icon. YOUR TURN: a. Launch Stata. b. In the command window, type: use clear c. In the command window, type: histogram hyp, discrete d. Save the graph to your desktop under the name hypertension_bar.png \stata v 12 lab session 1.doc 2/18/2013 Page 7 of 22

8 4. Enter Data How to Create a New Data Set in Stata Using the Data Editor Icon When to Create a New Data Set in Stata Most of the time, you will not create a data set in Stata. Instead, you will import it from Excel (described next) or access an existing Stata data set (described later). Still, it s good to know how to do this. YOUR TURN Create a Stata Data Set Containing the Following Data Follow the commands below to create a data set containing n=4 observations on the variables id, dob, gender, and weight. Tip This illustration utilizes the different types of variables! Before you begin, type the following two commands into the command window: clear set more off id type: numeric dob type: date gender type: string/character 1 3/26/1926 male /9/1956 female /1/1954 male /4/1951 female weight type: numeric Tip The following pertains to step 2 on the next page - how to find the data editor icon \stata v 12 lab session 1.doc 2/18/2013 Page 8 of 22

9 . * STEP 1: Define your variables (lower case recommended), set type, and intialize. generate id=.. generate str8 dob_string="". generate str8 gender="". generate weight=.. * STEP 2: Click on DATA EDITOR icon to access an initially empty spreadsheet. * ---- See picture on page 8. Enter the data. Then close the data editor window ---*. * STEP 3: Create dob (date of birth) that is a Stata date variable. generate dob=date(dob_string, "MDY"). format dob %tdnn/dd/ccyy. drop dob_string. list. * STEP 4: Create 0/1 indicator of female gender. generate female=(gender=="female"). list. * STEP 5: Attach labels to variable names. label variable id "Subject id". label variable weight "weight (lbs)". label variable dob "Date of birth". label variable female "0/1 female". * STEP 6: Define dictionary of discrete variable values. label define femalef 0 "male" 1 "female". * STEP 7: Attach coding labels to discrete variable values. label values female femalef. list. * To see data with numeric labels provided. numlabel, add. list. * To drop display of numeric labels. numlabel, remove. list. * STEP 8 - Save data set using FILE > SAVE AS \stata v 12 lab session 1.doc 2/18/2013 Page 9 of 22

10 When to Import an Excel Data Set 5. Enter Data How to Import an Excel Data Set There may be many occasions where you have an excel file and you want to look at it or analyze it in Stata. There are two ways to import an excel data set: (1) copy and paste; and (2) FILE > IMPORT in Stata. Tip Take care that you have saved each variable type correctly. METHOD 1 Copy and Paste Step 1 While still in Excel, use FORMAT > CELLS to format each column of data (text, date, numeric, as appropriate) Step 2 While still in Excel, select the data to be copied, including row headings with variable names. Use EDIT > COPY to complete selection. \stata v 12 lab session 1.doc 2/18/2013 Page 10 of 22

11 Step 3 Launch Stata. From tool bar, click on the icon DATA EDITOR Step 4 Position cursor in cell A1. From the STATA tool bar, use EDIT > PASTE to paste data here. \stata v 12 lab session 1.doc 2/18/2013 Page 11 of 22

12 Step 5 TIP! Be sure to click on VARIABLE NAMES so that Stata knows first row is variable names You should now see the following \stata v 12 lab session 1.doc 2/18/2013 Page 12 of 22

13 Step 6 Close the DATA EDITOR window Tip Don t worry; data is not lost. You will save it next Step 7 SAVE your imported data using FILE > SAVE AS \stata v 12 lab session 1.doc 2/18/2013 Page 13 of 22

14 METHOD 2 FILE > IMPORT in Stata Step 1 Launch Stata. Click on FILE > IMPORT > EXCEL SPREADSHEET (*.xls, *.xlsx) Step 2 Take care to complete the dialog boxes: (a) BROWSE to locate file and (b) IMPORT 1 st row as variable names. Now you can click on the OK icon \stata v 12 lab session 1.doc 2/18/2013 Page 14 of 22

15 You should see the following (but with your path and name, not mine) in your results window Step 3 In the command window, type the following: describe You should now see the following in your results window Step 4 From the menu bar, save your data using FILE > SAVE AS Complete dialog boxes. \stata v 12 lab session 1.doc 2/18/2013 Page 15 of 22

16 YOUR TURN Create an Excel Data set. Bring it into Stata by method 1 or 2. Save. 1. Launch Excel. 2. Create an Excel data set called stata_lab1.xls 3. Create a Stata data set stata_lab1.dta using your excel data. 4. Save your Stata data set. Here is the excel data for you: id type: numeric dob type: date gender type: string/character 1 3/26/1926 male /9/1956 female /1/1954 male /4/1951 female weight type: numeric \stata v 12 lab session 1.doc 2/18/2013 Page 16 of 22

17 6. Enter Data How to Import a Stata Data Set from the Internet When to Import a Stata Data Set You will do this often for class and perhaps not so often in your work. Tips (1) Be sure to enclose the url in quotes, (2) Be sure to use the option clear after the comma; and (3) Be sure to save the data onto your computer so that you have it for your use later. The basic command is of the following form and is issued in the command window use clear To save the data onto your computer, from the top menu bar issue: FILE > SAVE AS.. Examples - use clear use clear use clear Tip The extension.dta is optional. I recommend using it. YOUR TURN Import ivf.dta from the internet 1. Launch Stata (if you have not already done so) 2. In the command window, type: set more off 3. In the command window, type: use clear 4. Use FILE > SAVE AS to save it to your computer \stata v 12 lab session 1.doc 2/18/2013 Page 17 of 22

18 7. Describe Your Data - Numerical Descriptions YOUR TURN The following is a session that you can duplicate on your own. Tip - Commands that begin with an asterisk (*) are comments. The highlights in blue are my doing not Stata.. * Use the command USE to access data set from the internet, if you don t already have it.. use clear. * Use the command aorder to reorder variables in alphabetic order. aorder. * Descriptives for dicrete variable - Use the command tab1. tab1 sex, missing. * Descriptives again, this time with the labels and missing values. numlabel, add. tab1 sex, missing. * Descriptives for continuous variable - Use either tabstat or summarize. summarize bweight. summarize bweight, detail. tabstat bweight, stat(n, mean sd sem min q max cv) missing. * Descriptives for TWO dicrete variables - Use the command tab2. * tab2 rowvariable columnvariable, options. tab2 sex hyp. tab2 sex hyp, row. tab2 sex hyp, row column cell exact chi2. * Descriptives for ONE continuous variable, by groups defined by a dicrete variable. * Must sort by the discrete variable first. sort sex. tabstat bweight, by(sex) col(stat) stat(n mean sd sem min q max). * use option LONGSTUB if you want to be reminded of the variable you are summarizing. tabstat bweight, by(sex) col(stat) stat(n mean sd sem min q max) longstub \stata v 12 lab session 1.doc 2/18/2013 Page 18 of 22

19 8. Describe Your Data Graphical Descriptions YOUR TURN Again, follow along. * Tell Stata what graph scheme you want to use. I like the scheme s1color. set scheme s1color. * BAR GRAPH - Use the command histogram with the option discrete. histogram hyp, discrete percent addlabels ylabel(0(20)100) xlabel(0 "Normotensive" 1 "Hypertensive") gap(50) title("bar Graph -Hyp") subtitle("n=639") caption("hyp_barchart.png"). * DOT PLOT Use the command dotplot. dotplot matage, center msize(vsmall) xlabel(1 "All") title("distribution of Maternal Age") subtitle("n=641") caption("dot_matage.png", size(vsmall)). DOT PLOT for more than 1 group Use the command dot plot with option over( ). Sort first.. sort sex. dotplot matage, over(sex) title("distribution of Maternal Age") subtitle("by infant sex") caption("dot2_matage.png", size(vsmall)). * BOX PLOT for more than 1 group Use the command graph box with option over( ).. sort sex. graph box matage, over(sex) title("distribution of Maternal Age") subtitle("by infant sex") caption("box2_matage.png", size(vsmall)).* HORIZONTAL BOX PLOT for more than 1 group Use the command graph hbox. graph hbox matage, over(sex) title("distribution of Maternal Age") subtitle("by infant sex") caption("hbox2_matage.png", size(vsmall)) \stata v 12 lab session 1.doc 2/18/2013 Page 19 of 22

20 . * HISTOGRAM Preliminary: It s a good idea to obtain min and max. tabstat matage, stat(min max). * HISTOGRAM Use the command histogram. histogram matage, width(5) start(20) percent ylabel(0(10)50) addlabels title("distribution of Maternal Age") subtitle("n=641") caption("histogram_matage.png", size(vsmall)). * X-Y SCATTERPLOT - Preliminary: Obtain min and max of the X and Y variables. tabstat matage gestwks, stat(min max).* X-Y SCATTERPLOT. graph twoway (scatter gestwks matage, msymbol(d) msize(vsmall)), xlabel(20(5)45) ylabel(20(5)45) title("scatterplot") ytitle("weeks Gestation",size(small)) caption("scatter.png", size(vsmall)).* X-Y SCATTERPLOT WITH OVERLAY LINEAR FIT. graph twoway (scatter gestwks matage, msymbol(d) msize(vsmall)) (lfit gestwks matage), xlabel(20(5)45) ylabel(20(5)45) legend(off) title("scatterplot") subtitle("with overlay linear fit") ytitle("weeks Gestation",size(small)) caption("lfit.png", size(vsmall)). * X_Y SCATTERPLOT WITH OVERLAY FIT AND 95% CI. graph twoway (scatter gestwks matage, msymbol(d) msize(vsmall)) (lfitci gestwks matage), xlabel(20(5)45) ylabel(20(5)45) legend(off) title("scatterplot") subtitle("with overlay linear fit and 95% CI") ytitle("weeks Gestation",size(small)) caption("lfitci.png", size(vsmall)) \stata v 12 lab session 1.doc 2/18/2013 Page 20 of 22

21 9. One and Two Sample Inference YOUR TURN Again, follow along!. ** ONE CONTINUOUS VARIABLE - 99% CI for mean using command ci. ci gestwks, level(99). ** ONE CONTINUOUS VARIABLE - Test of null: mean = 40 using command ttest. ttest gestwks=40. ** ONE CONTINUOUS VARIABLE - Test of null: standard deviation = 1 using command sdtest. sdtest gestwks=1. ** TWO CONTINUOUS VARIABLES - Test of null: Equality of 2 INDEPENDENT means using ttest. sort sex. ttest gestwks, by(sex). ttest gestwks, by(sex) unequal. ** TWO CONTINUOUS VARIABLES - Test of equality of 2 independent variances using sdtest. sdtest gestwks, by(sex). ** 1 DISCRETE (0/1)VARIABLE - Test of binomial proportion using command bitest and prtest. ** Test of null: proportion of female births =.50. generate female=(sex==2). bitest female=.50. prtest female=.50. ** 1 DISCRETE (0/1)VARIABLE - 95% CI for event probability using ci with option binomial. ci female, binomial level(95). ** 2 DISCRETE (0/1)VARIABLES - Test of equality of probabilities prtest with option by( ). sort sex. prtest hyp, by(sex). ** 2 DISCRETE VARIABLES (any # rows and # columns) - chi square test: tab2 with option chi2. tab2 sex hyp, row column chi2. ** 2 DISCRETE VARIABLES (any # rows and # columns) -fisher exact test: tab2 with option exact. tab2 sex hyp, row column exact \stata v 12 lab session 1.doc 2/18/2013 Page 21 of 22

22 10. Simple and Multiple Linear Regression. clear. * Data are from Vittinghoff et al. Regression Methods in Biostatistics. * Y=glucose X=physact (5 levels), BMI. use " ** descriptives of glucose, by levels of physical activity. sort physact. tabstat glucose, by(physact) col(stat) stat(n mean sd min p50 max) format(%8.2f) longstub.** descriptive graphs. dotplot glucose, over(physact) center msymbol(d) msize(tiny) xlabel(1 "1" 2 "2" 3 "3" 4 "4" 5 "5") subtitle("y=glucose by Physical Activity") note("dot_glucose.png"). graph matrix glucose age BMI, half msize(tiny) subtitle("y=glucose v Predictors") note("scattermatrix.png", size(vsmall)). ** Assessment of normality of Y=glucose. swilk glucose. sfrancia glucose. tabstat glucose, stat(min max). histogram glucose, start(0) width(25) percent addlabels normal ylabel(0(20)100) title("y=glucose") note("histogram_glucose.png", size(vsmall)). ** One predictor - continuous. regress glucose BMI. ** One predictor - nominal physical activity with design variables. xi: regress glucose i.physact. ** multiple predictor model with both BMI and physact. xi: regress glucose BMI i.physact. ** Partial F test of BMI controlling for physact: 1 df Partial F. testparm BMI. ** Partial F test of physical activity controlling for BMI: 4 df Partial F. testparm _Iphysact* \stata v 12 lab session 1.doc 2/18/2013 Page 22 of 22

Stata version 14 Also works for versions 13 & 12. Lab Session 1 February Preliminary: How to Screen Capture..

Stata version 14 Also works for versions 13 & 12. Lab Session 1 February Preliminary: How to Screen Capture.. Stata version 14 Also works for versions 13 & 12 Lab Session 1 February 2016 1. Preliminary: How to Screen Capture.. 2. Preliminary: How to Keep a Log of Your Stata Session.. 3. Preliminary: How to Save

More information

Stata versions 12 & 13 Week 4 - Practice Problems

Stata versions 12 & 13 Week 4 - Practice Problems Stata versions 12 & 13 Week 4 - Practice Problems DUE: Monday February 24, 2014 Last submission date for credit: Monday March 3, 2014 1 Practice Screen Capture a Create a word document Name it using the

More information

Stata versions 12 & 13 Week 4 Practice Problems

Stata versions 12 & 13 Week 4 Practice Problems Stata versions 12 & 13 Week 4 Practice Problems SOLUTIONS 1 Practice Screen Capture a Create a word document Name it using the convention lastname_lab1docx (eg bigelow_lab1docx) b Using your browser, go

More information

Stata v 12 Illustration. First Session

Stata v 12 Illustration. First Session Launch Stata PC Users Stata v 12 Illustration Mac Users START > ALL PROGRAMS > Stata; or Double click on the Stata icon on your desktop APPLICATIONS > STATA folder > Stata; or Double click on the Stata

More information

Stata version 13. First Session. January I- Launching and Exiting Stata Launching Stata Exiting Stata..

Stata version 13. First Session. January I- Launching and Exiting Stata Launching Stata Exiting Stata.. Stata version 13 January 2015 I- Launching and Exiting Stata... 1. Launching Stata... 2. Exiting Stata.. II - Toolbar, Menu bar and Windows.. 1. Toolbar Key.. 2. Menu bar Key..... 3. Windows..... III -...

More information

Introduction to Stata First Session. I- Launching and Exiting Stata Launching Stata Exiting Stata..

Introduction to Stata First Session. I- Launching and Exiting Stata Launching Stata Exiting Stata.. Introduction to Stata 2016-17 01. First Session I- Launching and Exiting Stata... 1. Launching Stata... 2. Exiting Stata.. II - Toolbar, Menu bar and Windows.. 1. Toolbar Key.. 2. Menu bar Key..... 3.

More information

Introduction to Stata Getting Data into Stata. 1. Enter Data: Create a New Data Set in Stata...

Introduction to Stata Getting Data into Stata. 1. Enter Data: Create a New Data Set in Stata... Introduction to Stata 2016-17 02. Getting Data into Stata 1. Enter Data: Create a New Data Set in Stata.... 2. Enter Data: How to Import an Excel Data Set.... 3. Import a Stata Data Set Directly from the

More information

I Launching and Exiting Stata. Stata will ask you if you would like to check for updates. Update now or later, your choice.

I Launching and Exiting Stata. Stata will ask you if you would like to check for updates. Update now or later, your choice. I Launching and Exiting Stata 1. Launching Stata Stata can be launched in either of two ways: 1) in the stata program, click on the stata application; or 2) double click on the short cut that you have

More information

Introduction to Stata Toy Program #1 Basic Descriptives

Introduction to Stata Toy Program #1 Basic Descriptives Introduction to Stata 2018-19 Toy Program #1 Basic Descriptives Summary The goal of this toy program is to get you in and out of a Stata session and, along the way, produce some descriptive statistics.

More information

1. Creating a data set using the data editor 2. Importing an Excel data file

1. Creating a data set using the data editor 2. Importing an Excel data file Introduction This illustration describes two ways to enter data into Stata 1. Creating a data set using the data editor 2. Importing an Excel data file Example -. This data set has n=4 observations on

More information

Stata: A Brief Introduction Biostatistics

Stata: A Brief Introduction Biostatistics Stata: A Brief Introduction Biostatistics 140.621 2005-2006 1. Statistical Packages There are many statistical packages (Stata, SPSS, SAS, Splus, etc.) Statistical packages can be used for Analysis Data

More information

International Graduate School of Genetic and Molecular Epidemiology (GAME) Computing Notes and Introduction to Stata

International Graduate School of Genetic and Molecular Epidemiology (GAME) Computing Notes and Introduction to Stata International Graduate School of Genetic and Molecular Epidemiology (GAME) Computing Notes and Introduction to Stata Paul Dickman September 2003 1 A brief introduction to Stata Starting the Stata program

More information

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva

Econ Stata Tutorial I: Reading, Organizing and Describing Data. Sanjaya DeSilva Econ 329 - Stata Tutorial I: Reading, Organizing and Describing Data Sanjaya DeSilva September 8, 2008 1 Basics When you open Stata, you will see four windows. 1. The Results window list all the commands

More information

STATA 13 INTRODUCTION

STATA 13 INTRODUCTION STATA 13 INTRODUCTION Catherine McGowan & Elaine Williamson LONDON SCHOOL OF HYGIENE & TROPICAL MEDICINE DECEMBER 2013 0 CONTENTS INTRODUCTION... 1 Versions of STATA... 1 OPENING STATA... 1 THE STATA

More information

Introduction to Minitab 1

Introduction to Minitab 1 Introduction to Minitab 1 We begin by first starting Minitab. You may choose to either 1. click on the Minitab icon in the corner of your screen 2. go to the lower left and hit Start, then from All Programs,

More information

A Simple Guide to Using SPSS (Statistical Package for the. Introduction. Steps for Analyzing Data. Social Sciences) for Windows

A Simple Guide to Using SPSS (Statistical Package for the. Introduction. Steps for Analyzing Data. Social Sciences) for Windows A Simple Guide to Using SPSS (Statistical Package for the Social Sciences) for Windows Introduction ٢ Steps for Analyzing Data Enter the data Select the procedure and options Select the variables Run the

More information

Unit 1 Review of BIOSTATS 540 Practice Problems SOLUTIONS - Stata Users

Unit 1 Review of BIOSTATS 540 Practice Problems SOLUTIONS - Stata Users BIOSTATS 640 Spring 2018 Review of Introductory Biostatistics STATA solutions Page 1 of 13 Key Comments begin with an * Commands are in bold black I edited the output so that it appears here in blue Unit

More information

TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT

TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT PRIMER FOR ACS OUTCOMES RESEARCH COURSE: TYPES OF VARIABLES, STRUCTURE OF DATASETS, AND BASIC STATA LAYOUT STEP 1: Install STATA statistical software. STEP 2: Read through this primer and complete the

More information

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING

INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING APPENDIX INSTRUCTIONS FOR USING MICROSOFT EXCEL PERFORMING DESCRIPTIVE AND INFERENTIAL STATISTICS AND GRAPHING (Developed by Dr. Dale Vogelien, Kennesaw State University) ** For a good review of basic

More information

ECO375 Tutorial 1 Introduction to Stata

ECO375 Tutorial 1 Introduction to Stata ECO375 Tutorial 1 Introduction to Stata Matt Tudball University of Toronto Mississauga September 14, 2017 Matt Tudball (University of Toronto) ECO375H5 September 14, 2017 1 / 25 What Is Stata? Stata is

More information

You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables

You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables Jennie Murack You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables How to conduct basic descriptive statistics

More information

8. MINITAB COMMANDS WEEK-BY-WEEK

8. MINITAB COMMANDS WEEK-BY-WEEK 8. MINITAB COMMANDS WEEK-BY-WEEK In this section of the Study Guide, we give brief information about the Minitab commands that are needed to apply the statistical methods in each week s study. They are

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

Doctoral Program in Epidemiology for Clinicians, April 2001 Computing notes

Doctoral Program in Epidemiology for Clinicians, April 2001 Computing notes Doctoral Program in Epidemiology for Clinicians, April 2001 Computing notes Paul Dickman, Rino Bellocco April 18, 2001 We will be using the computer teaching room located on the second floor of Norrbacka,

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

Week 1: Introduction to Stata

Week 1: Introduction to Stata Week 1: Introduction to Stata Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ALL RIGHTS RESERVED 1 Outline Log

More information

BIOSTATS 640 Spring 2018 Introduction to R Data Description. 1. Start of Session. a. Preliminaries... b. Install Packages c. Attach Packages...

BIOSTATS 640 Spring 2018 Introduction to R Data Description. 1. Start of Session. a. Preliminaries... b. Install Packages c. Attach Packages... BIOSTATS 640 Spring 2018 Introduction to R and R-Studio Data Description Page 1. Start of Session. a. Preliminaries... b. Install Packages c. Attach Packages... 2. Load R Data.. a. Load R data frames...

More information

INTRODUCTION to. Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010

INTRODUCTION to. Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010 INTRODUCTION to Program in Statistics and Methodology (PRISM) Daniel Blake & Benjamin Jones January 15, 2010 While we are waiting Everyone who wishes to work along with the presentation should log onto

More information

PubHlth 640 Intermediate Biostatistics Unit 2 - Regression and Correlation. Simple Linear Regression Software: Stata v 10.1

PubHlth 640 Intermediate Biostatistics Unit 2 - Regression and Correlation. Simple Linear Regression Software: Stata v 10.1 PubHlth 640 Intermediate Biostatistics Unit 2 - Regression and Correlation Simple Linear Regression Software: Stata v 10.1 Emergency Calls to the New York Auto Club Source: Chatterjee, S; Handcock MS and

More information

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file 1 SPSS Guide 2009 Content 1. Basic Steps for Data Analysis. 3 2. Data Editor. 2.4.To create a new SPSS file 3 4 3. Data Analysis/ Frequencies. 5 4. Recoding the variable into classes.. 5 5. Data Analysis/

More information

STATA Version 9 10/05/2012 1

STATA Version 9 10/05/2012 1 INTRODUCTION TO STATA PART I... 2 INTRODUCTION... 2 Background... 2 Starting STATA... 3 Window Orientation... 4 Command Structure... 4 The Help Menu... 4 Selecting a Subset of the Data... 5 Inputting Data...

More information

After opening Stata for the first time: set scheme s1mono, permanently

After opening Stata for the first time: set scheme s1mono, permanently Stata 13 HELP Getting help Type help command (e.g., help regress). If you don't know the command name, type lookup topic (e.g., lookup regression). Email: tech-support@stata.com. Put your Stata serial

More information

API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0

API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0 API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0 Course materials and data sets will assume that you are using Stata to complete the analysis. Stata is available on all of the

More information

Introduction. About this Document. What is SPSS. ohow to get SPSS. oopening Data

Introduction. About this Document. What is SPSS. ohow to get SPSS. oopening Data Introduction About this Document This manual was written by members of the Statistical Consulting Program as an introduction to SPSS 12.0. It is designed to assist new users in familiarizing themselves

More information

17 - VARIABLES... 1 DOCUMENT AND CODE VARIABLES IN MAXQDA Document Variables Code Variables... 1

17 - VARIABLES... 1 DOCUMENT AND CODE VARIABLES IN MAXQDA Document Variables Code Variables... 1 17 - Variables Contents 17 - VARIABLES... 1 DOCUMENT AND CODE VARIABLES IN MAXQDA... 1 Document Variables... 1 Code Variables... 1 The List of document variables and the List of code variables... 1 Managing

More information

Introduction to SPSS

Introduction to SPSS Introduction to SPSS Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data file and calculate

More information

SPSS. (Statistical Packages for the Social Sciences)

SPSS. (Statistical Packages for the Social Sciences) Inger Persson SPSS (Statistical Packages for the Social Sciences) SHORT INSTRUCTIONS This presentation contains only relatively short instructions on how to perform basic statistical calculations in SPSS.

More information

A Short Guide to Stata 10 for Windows

A Short Guide to Stata 10 for Windows A Short Guide to Stata 10 for Windows 1. Introduction 2 2. The Stata Environment 2 3. Where to get help 2 4. Opening and Saving Data 3 5. Importing Data 4 6. Data Manipulation 5 7. Descriptive Statistics

More information

A Quick Guide to Stata 8 for Windows

A Quick Guide to Stata 8 for Windows Université de Lausanne, HEC Applied Econometrics II Kurt Schmidheiny October 22, 2003 A Quick Guide to Stata 8 for Windows 2 1 Introduction A Quick Guide to Stata 8 for Windows This guide introduces the

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

Excel 2010 with XLSTAT

Excel 2010 with XLSTAT Excel 2010 with XLSTAT J E N N I F E R LE W I S PR I E S T L E Y, PH.D. Introduction to Excel 2010 with XLSTAT The layout for Excel 2010 is slightly different from the layout for Excel 2007. However, with

More information

A quick introduction to STATA:

A quick introduction to STATA: 1 Revised September 2008 A quick introduction to STATA: (by E. Bernhardsen, with additions by H. Goldstein) 1. How to access STATA from the pc s at the computer lab After having logged in you have to log

More information

Checking whether the protocol was followed: gender and age 51

Checking whether the protocol was followed: gender and age 51 Checking whether the protocol was followed: gender and age 51 Session 4: Checking whether the protocol was followed: gender and age In the data cleaning workbook there are two worksheets which form the

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

OneView. User s Guide

OneView. User s Guide OneView User s Guide Welcome to OneView. This user guide will show you everything you need to know to access and utilize the wealth of information available from OneView. The OneView program is an Internet-based

More information

CSV Roll Documentation

CSV Roll Documentation CSV Roll Documentation Version 1.1 March 2015 INTRODUCTION The CSV Roll is designed to display the contents of a Microsoft Excel worksheet in a Breeze playlist. The Excel worksheet must be exported as

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

KINETICS CALCS AND GRAPHS INSTRUCTIONS

KINETICS CALCS AND GRAPHS INSTRUCTIONS KINETICS CALCS AND GRAPHS INSTRUCTIONS 1. Open a new Excel or Google Sheets document. I will be using Google Sheets for this tutorial, but Excel is nearly the same. 2. Enter headings across the top as

More information

User Services Spring 2008 OBJECTIVES Introduction Getting Help Instructors

User Services Spring 2008 OBJECTIVES  Introduction Getting Help  Instructors User Services Spring 2008 OBJECTIVES Use the Data Editor of SPSS 15.0 to to import data. Recode existing variables and compute new variables Use SPSS utilities and options Conduct basic statistical tests.

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

BIOSTATISTICS LABORATORY PART 1: INTRODUCTION TO DATA ANALYIS WITH STATA: EXPLORING AND SUMMARIZING DATA

BIOSTATISTICS LABORATORY PART 1: INTRODUCTION TO DATA ANALYIS WITH STATA: EXPLORING AND SUMMARIZING DATA BIOSTATISTICS LABORATORY PART 1: INTRODUCTION TO DATA ANALYIS WITH STATA: EXPLORING AND SUMMARIZING DATA Learning objectives: Getting data ready for analysis: 1) Learn several methods of exploring the

More information

Studying in the Sciences

Studying in the Sciences Organising data and creating figures (charts and graphs) in Excel What is in this guide Familiarisation with Excel (for beginners) Setting up data sheets Creating a chart (graph) Formatting the chart Creating

More information

ACER Online Assessment and Reporting System (OARS) User Guide

ACER Online Assessment and Reporting System (OARS) User Guide ACER Online Assessment and Reporting System (OARS) User Guide January 2015 Contents Quick guide... 3 Overview... 4 System requirements... 4 Account access... 4 Account set up... 5 Create student groups

More information

MINITAB 17 BASICS REFERENCE GUIDE

MINITAB 17 BASICS REFERENCE GUIDE MINITAB 17 BASICS REFERENCE GUIDE Dr. Nancy Pfenning September 2013 After starting MINITAB, you'll see a Session window above and a worksheet below. The Session window displays non-graphical output such

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

For many people, learning any new computer software can be an anxietyproducing

For many people, learning any new computer software can be an anxietyproducing 1 Getting to Know Stata 12 For many people, learning any new computer software can be an anxietyproducing task. When that computer program involves statistics, the stress level generally increases exponentially.

More information

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition

Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Bluman & Mayer, Elementary Statistics, A Step by Step Approach, Canadian Edition Online Learning Centre Technology Step-by-Step - Minitab Minitab is a statistical software application originally created

More information

Math 227 EXCEL / MEGASTAT Guide

Math 227 EXCEL / MEGASTAT Guide Math 227 EXCEL / MEGASTAT Guide Introduction Introduction: Ch2: Frequency Distributions and Graphs Construct Frequency Distributions and various types of graphs: Histograms, Polygons, Pie Charts, Stem-and-Leaf

More information

Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia.

Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia. Introduction to SPSS Dr Wan Nor Arifin Unit of Biostatistics and Research Methodology, Universiti Sains Malaysia. wnarifin@usm.my Outlines Introduction Data Editor Data View Variable View Menus Shortcut

More information

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone:

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone: INTRODUCTION TO SPSS Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN-0-024 Phone: 89287269 E-mail: mujibur@uniten.edu.my OUTLINE About the four-windows in SPSS The basics of managing data files The basic

More information

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables Select Cases GRAPHS The Select Cases command excludes from further analysis all those cases that do not meet specified selection criteria. Select Cases For a subset of the datafile, use Select Cases. In

More information

Using Excel to produce graphs - a quick introduction:

Using Excel to produce graphs - a quick introduction: Research Skills -Using Excel to produce graphs: page 1: Using Excel to produce graphs - a quick introduction: This handout presupposes that you know how to start Excel and enter numbers into the cells

More information

Homework 1 Excel Basics

Homework 1 Excel Basics Homework 1 Excel Basics Excel is a software program that is used to organize information, perform calculations, and create visual displays of the information. When you start up Excel, you will see the

More information

Google FusionTables for Global Health User Manual

Google FusionTables for Global Health User Manual Google FusionTables for Global Health User Manual Version: January 2015 1 1. Introduction... 3 Use Requirements... 3 Video Tutorials... 3 2. Getting started with Google FusionTables... 4 2.1. Setup...

More information

Make sure to keep all graphs in same excel file as your measures.

Make sure to keep all graphs in same excel file as your measures. Project Part 2 Graphs. I. Use Excel to make bar graph for questions 1, and 5. II. Use Excel to make histograms for questions 2, and 3. III. Use Excel to make pie graphs for questions 4, and 6. IV. Use

More information

Brief Guide on Using SPSS 10.0

Brief Guide on Using SPSS 10.0 Brief Guide on Using SPSS 10.0 (Use student data, 22 cases, studentp.dat in Dr. Chang s Data Directory Page) (Page address: http://www.cis.ysu.edu/~chang/stat/) I. Processing File and Data To open a new

More information

Introduction to STATA

Introduction to STATA Introduction to STATA Duah Dwomoh, MPhil School of Public Health, University of Ghana, Accra July 2016 International Workshop on Impact Evaluation of Population, Health and Nutrition Programs Learning

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SPSS SPSS (originally Statistical Package for the Social Sciences ) is a commercial statistical software package with an easy-to-use

More information

Chapter One: Getting Started With IBM SPSS for Windows

Chapter One: Getting Started With IBM SPSS for Windows Chapter One: Getting Started With IBM SPSS for Windows Using Windows The Windows start-up screen should look something like Figure 1-1. Several standard desktop icons will always appear on start up. Note

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

Let s use Technology Use Data from Cycle 14 of the General Social Survey with Fathom for a data analysis project

Let s use Technology Use Data from Cycle 14 of the General Social Survey with Fathom for a data analysis project Let s use Technology Use Data from Cycle 14 of the General Social Survey with Fathom for a data analysis project Data Content: Example: Who chats on-line most frequently? This Technology Use dataset in

More information

CS130/230 Lecture 6 Introduction to StatView

CS130/230 Lecture 6 Introduction to StatView Thursday, January 15, 2004 Intro to StatView CS130/230 Lecture 6 Introduction to StatView StatView is a statistical analysis program that allows: o Data management in a spreadsheet-like format o Graphs

More information

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975.

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. SPSS Statistics were designed INTRODUCTION TO SPSS Objective About the

More information

INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0

INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0 INTRODUCTORY LAB INTRODUCTION TO STATCRUNCH 5.0 StatCrunch is a free web-based statistical software package containing all statistical features covered in introductory statistics courses. It is very easy

More information

Minitab Study Card J ENNIFER L EWIS P RIESTLEY, PH.D.

Minitab Study Card J ENNIFER L EWIS P RIESTLEY, PH.D. Minitab Study Card J ENNIFER L EWIS P RIESTLEY, PH.D. Introduction to Minitab The interface for Minitab is very user-friendly, with a spreadsheet orientation. When you first launch Minitab, you will see

More information

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus

Introduction (SPSS) Opening SPSS Start All Programs SPSS Inc SPSS 21. SPSS Menus Introduction (SPSS) SPSS is the acronym of Statistical Package for the Social Sciences. SPSS is one of the most popular statistical packages which can perform highly complex data manipulation and analysis

More information

Importing a Table into Excel

Importing a Table into Excel Importing a Table into Excel This guide will show you step by step how to copy a table into notepad, create a CSV file and then import it into Microsoft Excel. This is a very basic guide but will cover

More information

Getting started with Minitab 14 for Windows

Getting started with Minitab 14 for Windows INFORMATION SYSTEMS SERVICES Getting started with Minitab 14 for Windows This document provides an introduction to the Minitab (Version 14) statistical package. AUTHOR: Information Systems Services, University

More information

Enterprise Portal Train the Trainer User Manual WEB PARTS

Enterprise Portal Train the Trainer User Manual WEB PARTS Enterprise Portal Train the Trainer User Manual WEB PARTS Version 1.2.1 Date: January 31, 2012 Table of Contents Table of Contents... 2 1 I Need To... 3 2 Media Web Part... 10 3 Content Editor... 15 4

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Opening a Data File in SPSS. Defining Variables in SPSS

Opening a Data File in SPSS. Defining Variables in SPSS Opening a Data File in SPSS To open an existing SPSS file: 1. Click File Open Data. Go to the appropriate directory and find the name of the appropriate file. SPSS defaults to opening SPSS data files with

More information

Math 263 Excel Assignment 3

Math 263 Excel Assignment 3 ath 263 Excel Assignment 3 Sections 001 and 003 Purpose In this assignment you will use the same data as in Excel Assignment 2. You will perform an exploratory data analysis using R. You shall reproduce

More information

Dr. Barbara Morgan Quantitative Methods

Dr. Barbara Morgan Quantitative Methods Dr. Barbara Morgan Quantitative Methods 195.650 Basic Stata This is a brief guide to using the most basic operations in Stata. Stata also has an on-line tutorial. At the initial prompt type tutorial. In

More information

A QUICK INTRODUCTION TO STATA

A QUICK INTRODUCTION TO STATA A QUICK INTRODUCTION TO STATA This module provides a quick introduction to STATA. After completing this module you will be able to input data, save data, transform data, create basic tables, create basic

More information

Instructions for Numbering and/or Reordering a Bibliography Roberta E. Sonnino, M.D., Judy Roberts, M.A.

Instructions for Numbering and/or Reordering a Bibliography Roberta E. Sonnino, M.D., Judy Roberts, M.A. Instructions for Numbering and/or Reordering a Bibliography Roberta E. Sonnino, M.D., Judy Roberts, M.A. STEP 1 CLEAN UP PARAGRAPHS IN YOUR CURRENT DOCUMENT Open the Word file that contains your bibliography

More information

Exercise 1: Introduction to Stata

Exercise 1: Introduction to Stata Exercise 1: Introduction to Stata New Stata Commands use describe summarize stem graph box histogram log on, off exit New Stata Commands Downloading Data from the Web I recommend that you use Internet

More information

Lab 3 - Introduction to Graphics

Lab 3 - Introduction to Graphics Lab 3 - Introduction to Graphics Spring 2018 Contents 1 Graphics 2 1.1 Plots in one dimension................................... 2 1.2 Plots in two dimensions: two-way plots.......................... 5

More information

Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records

Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records Lab 19: Excel Formatting, Using Conditional Formatting and Sorting Records () CONTENTS 1 Lab Topic... 2 1.1 In-Lab... 2 1.1.1 In-Lab Materials... 2 1.1.2 In-Lab Instructions... 2 1.2 Out-Lab... 9 1.2.1

More information

Chapter 2 Assignment (due Thursday, April 19)

Chapter 2 Assignment (due Thursday, April 19) (due Thursday, April 19) Introduction: The purpose of this assignment is to analyze data sets by creating histograms and scatterplots. You will use the STATDISK program for both. Therefore, you should

More information

Statistics 528: Minitab Handout 1

Statistics 528: Minitab Handout 1 Statistics 528: Minitab Handout 1 Throughout the STAT 528-530 sequence, you will be asked to perform numerous statistical calculations with the aid of the Minitab software package. This handout will get

More information

Data Management Project Using Software to Carry Out Data Analysis Tasks

Data Management Project Using Software to Carry Out Data Analysis Tasks Data Management Project Using Software to Carry Out Data Analysis Tasks This activity involves two parts: Part A deals with finding values for: Mean, Median, Mode, Range, Standard Deviation, Max and Min

More information

Downloading 2010 Census Data

Downloading 2010 Census Data Downloading 2010 Census Data These instructions cover downloading the Census Tract polygons and the separate attribute data. After that, the attribute data will need additional formatting in Excel before

More information

23 - Report & Export

23 - Report & Export 23 - Report & Export Contents 23 - REPORT & EXPORT... 1 SMART PUBLISHER... 1 Opening Smart Publisher... 1 Smart Publisher Settings... 2 The Finished Report... 5 Alias Names for Codes... 6 The Word Template

More information

Introductory Guide to SAS:

Introductory Guide to SAS: Introductory Guide to SAS: For UVM Statistics Students By Richard Single Contents 1 Introduction and Preliminaries 2 2 Reading in Data: The DATA Step 2 2.1 The DATA Statement............................................

More information

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler

Example how not to do it: JMP in a nutshell 1 HR, 17 Apr Subject Gender Condition Turn Reactiontime. A1 male filler JMP in a nutshell 1 HR, 17 Apr 2018 The software JMP Pro 14 is installed on the Macs of the Phonetics Institute. Private versions can be bought from

More information

How to use Excel Spreadsheets for Graphing

How to use Excel Spreadsheets for Graphing How to use Excel Spreadsheets for Graphing 1. Click on the Excel Program on the Desktop 2. You will notice that a screen similar to the above screen comes up. A spreadsheet is divided into Columns (A,

More information

11/07 11/08/ /5/2012 Software Technology, Inc. Thomas Murphy

11/07 11/08/ /5/2012 Software Technology, Inc. Thomas Murphy 0 Alabama INFOCUS Webinar 11/07 11/08/2012 11/5/2012 Software Technology, Inc. Thomas Murphy 0 Alabama INFOCUS Webinar OBJECTIVES: Tabular Report Introduce customers to the basics of building reports with

More information

Release notes for StatCrunch mid-march 2015 update

Release notes for StatCrunch mid-march 2015 update Release notes for StatCrunch mid-march 2015 update A major StatCrunch update was made on March 18, 2015. This document describes the content of the update including major additions to StatCrunch that were

More information

INTRODUCTORY SPSS. Dr Feroz Mahomed Swalaha x2689

INTRODUCTORY SPSS. Dr Feroz Mahomed Swalaha x2689 INTRODUCTORY SPSS Dr Feroz Mahomed Swalaha fswalaha@dut.ac.za x2689 1 Statistics (the systematic collection and display of numerical data) is the most abused area of numeracy. 97% of statistics are made

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information