Basic Statistical Analysis in Excel NICAR 15 / Norm Lewis, University of Florida

Size: px
Start display at page:

Download "Basic Statistical Analysis in Excel NICAR 15 / Norm Lewis, University of Florida"

Transcription

1 Basic Statistical Analysis in Excel NICAR 15 / Norm Lewis, University of Florida Installing Analysis ToolPak, Windows 2013 Click on the Data tab. The Analysis section on the far right should look like the box to the left. If it does not, install the ToolPak: 1) Click on the File tab. 2) Click on Options at the bottom of the list on the left-hand side. 3) Click on Add-Ins, which will trigger the dialog box seen at the lower left. 4) At the bottom of the box, if Manage: Excel Add-ins is showing, click on the Go button. Click on the Analysis Tool Pak box (seen below), then click OK. Installing Analysis ToolPak, Macintosh 2011 Microsoft no longer includes the Analysis ToolPak for Macintosh users. (Insert snarky commentary about Microsoft leaving Mac users at the curb.) Microsoft support refers us to StatPlus:mac LE from AnalystSoft for free, though with encouragement to upgrade to the paid Pro version. Average The most common statistic journalists use is average. Average comes in three flavors: Mean Sum divided by number of items. Excel function: AVERAGE() Median Midpoint of a sorted list. Excel function: MEDIAN() Mode Most frequent occurrence. Excel function: MODE() Mean is used so often it s the default. But it overstates what s typical for data that have outliers such as income, wealth and housing prices. In those cases, the median is better. (Mode is rarely used in journalism.)

2 Calculate Mean and Median Open the Faculty sheet. Go to the bottom. Leave a blank row. Write the word Mean. In the next cell, insert this formula: =AVERAGE(e2:e1054) Write the word Median. In the next cell, insert this formula: =MEDIAN(e2:e1054) You should get the data below. Which of these two figures should you use? The mean is higher because it is skewed by some big salaries. Thus, median is a better representation of a typical professor on a nine-month contract. When Average Isn t Enough: Standard Deviation Now let s put the Analysis ToolPak to use. 1. Click on a cell with a salary any single one will do. 2. Click on the Data tab. On the right, click on Data Analysis. 3. Choose Descriptive Statistics (below) and then OK. 4. In the ensuing dialog box (right), click on the box besides Summary statistics 5. In the Output Range box, insert G3 or click on the cell this tells Excel where to place the descriptive statistics The ensuing data look like this: The mean and median are just as we calculated them before, with the addition of the mode This tells us the smallest and largest salary in this data set Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 2

3 The standard deviation tells us how much this data set varies from the mean. That can be useful in evaluating a data set like this, which varies considerably. Standard deviation is a measure, plus or minus, from the mean. One standard deviation includes two-thirds (66.7%) of all of the data points in this case, salaries. The larger the standard deviation relative to the mean, the more variance in the data. The standard deviation here is 43, Thus, two-thirds of the 1,053 salaries in this list are between: 101, , = 58, and 101, , = 144, That s a fairly large range, which tells us that university salaries vary considerably from the mean. Thus, defining typical pay is difficult if we use just the mean or even the more representative median. Consider another example to see why standard deviation matters. To the left is a graphical representation of Amazon customer ratings of a book by Ann Coulter. The mean would be about 3 stars. But neither the median nor the mean would be representative of what customers think about the book. Raters tend to either love or despise the book. Thus, the standard deviation would give us an important statistic beyond the average. Correlation Correlation measures whether two things are related. Does one go up when the other does? Does one go down when the other goes up? Consider height and weight, as in the chart to the right. As people grow taller, they tend to weigh more. Shorter people tend to weigh less. Thus, height and weight are correlated. Further, they are positively correlated as one goes up, the other goes down. Consider drinking alcohol and dexterity, as shown in the chart to the left. The more drinks one has, the less dexterity the person has. As one goes up, the other goes down. This is an example of a negative correlation. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 3

4 Correlations vary between -1 and +1, like this: -1 Perfect negative correlation As one thing goes up the other goes down at the same rate (or vice versa) 0 No correlation The two things have nothing in common +1 Perfect positive correlation As one thing goes up the other goes up at the same rate (or both go down) In the physical world, perfect correlations are not uncommon. But in our everyday world of people in the social sciences, few things are correlated beyond -0.7 or That s because rarely is any one thing solely correlated with something else usually more than one factor is involved. Consider heredity and height. Heredity and Height Click now on the Height sheet in the Excel data set. You ll see two columns of data from 100 pairs of fathers and sons, measuring their height in inches. The scatter chart of blue dots illustrates that there s a messy relationship between the two. As dads get taller, sons do, too sort of. The chart shows the correlation coefficient is , or There s no negative mark, so the number is positive by default. This 0.53 means that for each inch of height a father gains, the son gains about half an inch. As you might guess, other factors are at play specifically, the mother s height and nutrition during childhood. NFL 2014 Correlations (For this data, a hat tip goes to Steve Doig of Arizona State University, who used a similar data set in a handout a few years ago.) Open the NFL sheet for the 2014 regular season, according to ESPN statistics. Click on the Data tab, and then on Data Analysis on the right-hand side. You ll see a dialog box. Choose the Correlation option and click OK. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 4

5 With the cursor in the Input Range box, use your mouse/cursor to select the columns with numbers in them (in this data set, all but team names). Include the column headers (row 1), as below. Then click on the Labels in First Row box. Click here Place the cursor in the Output Range box and click on a blank cell, such as J4. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 5

6 The result looks like this: Let s interpret the correlation table. These 1 s are perfect correlations because they are identical: yards gained = yards gained This area is blank because it would just repeat what is below the string of 1 s This is the strongest correlation. Points scored has the highest correlation with wins. This also is a strong correlation, in the negative: The more points given up, the less likely the team is to win. Not surprisingly, points scored or points allowed have the strongest correlation with wins. A statistician would say the two are associated. One cannot say that one causes the other points do not cause a win. But the two are related. More points scored = more wins. More points allowed = fewer wins. Thus, points are associated with wins. What else does this table tell us? It tell us that other factors, such as takeaways and giveaways (fumbles and interceptions), have a weaker correlation with wins. They matter, but not as much as, say, yards gained. Correlations give us useful data about associations. We can learn even more through a linear regression. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 6

7 Linear Regression While social scientists use linear regression to predict, journalists usually use linear regression to determine the amount of change that can be attributed to one factor over another. Danger, Will Robinson! Danger! Regression is a much more complicated statistic than we can address here. It is very powerful when used correctly. It is misleading when used incorrectly. So a little knowledge can be dangerous. If you really want to do linear regression, use something more powerful than Excel, such as SAS, SPSS or R. And consult a local stats nerd. Our purpose here is to use regression to introduce us to a more valuable concept: statistical significance. Statistical Significance Most everything in life is a combination of performance and chance. Statistics help to differentiate performance from chance to tell us when something probably wasn t just the luck of the draw. Note the weasel word probably. Certainty is illusive in everyday life. For example, let s say you ve created a new medicine to cure the common cold. In order to justify putting the new medicine on the market, you need to show that its effects weren t just by chance. Generally in medicine, the standard is less than 1 in 100 (0.01) or 1 in 1,000 (0.001) that the cure was just dumb luck. You can never prove beyond the shadow of a doubt that it works. And like all approved medicines, it will work for many but not for all. In situations involving people, the standard is usually 5 in 100, or 0.05 (written as p <.05). Why a lower standard? Because our social lives involve so many interwoven factors that it s difficult to isolate variables. Consider the NFL data. Whether a team wins or loses involves much more than yards gained or points allowed. It involves preparation, skill, injuries, motivation, coaching, home-field advantage, late-night carousing, etc. In that milieu, getting to a less than 5 percent probability that something occurred by luck is, well, pretty good. At the same time, the 0.05 standard is a bit of luck itself created by pioneering British statistician R.A. Fisher without any theoretical basis or design. But the 5 percent stuck, and so we credit Fisher. (At the same time, Fisher denied that his pipe smoking was associated with an increased risk for cancer despite contrary evidence. So maybe he wasn t such a smarty pants after all.) One more point. Statistical significance is often misinterpreted as the likelihood that something happened by chance. Well, not exactly. It actually reflects whether we can reject the null hypothesis the idea that nothing happened. But that s a bit complicated. So let s get back to football and see what regression can tell us about statistical significance. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 7

8 Thinking about Variables Click on the NFL data sheet. Consider the column headers as variables. Yards gained, points, etc. those are variables (or, things that vary or change). Further, one of those variables means the most to us: Wins. (We re bottom-line oriented here, and we want more wins.) So the Wins category is the focus of our attention. Everything depends on wins. Thus, we will consider Wins to be our (drum roll, please!) dependent variable. (Some call this the criterion variable.) The abbreviation for a dependent variable is DV. Everything else is a potential influence on wins. Thus, we consider them independent variables. (Some call these the predictor variables.) The abbreviation for an independent variable is IV. Here s a visual way to remember the difference between an independent variable (IV) and the dependent variable (DV), drawing from the medical shorthand for intravenous: IV. The IV: Something that influences the patient (to get better, we hope!) The DV: The thing we care about in this case, the patient Further, this picture gives us the order. The IV comes first. It goes into the patient to deliver medicine and fluids. And if the IV works, the result is the patient gets better. Now, let s translate that to the X and Y language of regression. 1. The IV (independent variable) comes first. X comes first in the alphabet. So X = the IV. 2. The DV (dependent variable) comes second. Y comes after X. So Y = the DV. Now, let s get Excel to do some regression. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 8

9 Linear Regression in the NFL. On the NFL data sheet, click on the Data tab. On the far right, choose the Data Analysis option. When you do, you trigger this box. Scroll down until you get to regression. Click on OK to trigger the box below. The dependent variable goes in the Y box (in this case, wins) The independent variables go in the X box (in this case, everything but wins) Include the labels in the data you select and check this box The statistics can take up space, so use the default of a new worksheet These are useful but too complicated to explain here, so leave unchecked Click in the Input Y Range box and select the dependent variable cells (the Wins column, including the column label). Click in the Input X Range box and select the independent variable cells (everything else with numbers, including the column labels Yds Gain, Pts Score, Takeaway, Giveaway, Yds Allow, and Pts Allow). Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 9

10 The result looks like this. (Some column widths have been expanded for readability.) This figure describes how well the regression model does in predicting the DV. But that s a bit misleading here because of the data chosen. Excel is giving us scientific notation here. The E-12 means move the decimal point 12 places to the left. Thus, E-12 is , which in nonscientific terms is a small number. Suffice to say, it s less than These coefficients would be useful in creating an algorithm (remember line and slope from algebra?) but are less useful for us here. Suffice to say they re low. This is also an important statistic for regression but not what we re trying to achieve here. (FYI, these also are low.) Here s what we re most interested in: P-value or probability value. The section is enlarged here: Let s interpret P-value on the next page. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 10

11 Interpreting P-value Ignore the Intercept line because that has to do with line and slope. Look instead at each of the p- value scores, compressed here to three decimal points. P-value Intercept Yds Gain Pts Score Takeaway Giveaway Yds Allow Pts Allow p <.05 Two variables have P-values less than 0.05 (or, 5 in 100 or 5 percent): Pts Score is 0.005, or 5 in 1,000. Pts Allow is We can never have 0 probability, so this would be expressed as p <.001, or less than 1 in 1,000. How to interpret this? Remember that the P-value addresses the null hypothesis. The null hypothesis is the opposite of our guess. Our hypothesis is that Points Scored and Points Allowed have something to do with Wins. (Otherwise, we would not have included the data, eh?) The null hypothesis is the opposite that Points Scored and Points Allowed have little to do with wins. The fact that our P-value is below 0.05 means there is a less than a 5 percent chance the null hypothesis is true. Thus, we reject the null hypothesis and accept our working hypotheses. All the other variables are greater than It does not matter how much larger. All that matters is none of the other factors are statistically significant meaning, we cannot reject the null hypothesis. How to apply this? Sports commentators who want to assert that fumbles and interceptions giveaways (bad) or takeaways (good) result in wins cannot do so from this data because the P-values are not less than The association could just be by chance. Basic Statistical Analysis in Excel, NICAR 15, Norm Lewis / Page 11

Bill Burton Albert Einstein College of Medicine william.burton@einstein.yu.edu April 28, 2014 EERS: Managing the Tension Between Rigor and Resources 1

Bill Burton Albert Einstein College of Medicine william.burton@einstein.yu.edu April 28, 2014 EERS: Managing the Tension Between Rigor and Resources 1 Bill Burton Albert Einstein College of Medicine william.burton@einstein.yu.edu April 28, 2014 EERS: Managing the Tension Between Rigor and Resources 1 Calculate counts, means, and standard deviations Produce

More information

Using Excel for Statistical Analysis

Using Excel for Statistical Analysis Using Excel for Statistical Analysis You don t have to have a fancy pants statistics package to do many statistical functions. Excel can perform several statistical tests and analyses. First, make sure

More information

Data Analysis Tools. Tools for Summarizing Data

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

More information

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

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

More information

EXCEL Analysis TookPak [Statistical Analysis] 1. First of all, check to make sure that the Analysis ToolPak is installed. Here is how you do it:

EXCEL Analysis TookPak [Statistical Analysis] 1. First of all, check to make sure that the Analysis ToolPak is installed. Here is how you do it: EXCEL Analysis TookPak [Statistical Analysis] 1 First of all, check to make sure that the Analysis ToolPak is installed. Here is how you do it: a. From the Tools menu, choose Add-Ins b. Make sure Analysis

More information

An introduction to using Microsoft Excel for quantitative data analysis

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

More information

Microsoft Excel Tutorial

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

More information

When to use Excel. When NOT to use Excel 9/24/2014

When to use Excel. When NOT to use Excel 9/24/2014 Analyzing Quantitative Assessment Data with Excel October 2, 2014 Jeremy Penn, Ph.D. Director When to use Excel You want to quickly summarize or analyze your assessment data You want to create basic visual

More information

Using Excel in Research. Hui Bian Office for Faculty Excellence

Using Excel in Research. Hui Bian Office for Faculty Excellence Using Excel in Research Hui Bian Office for Faculty Excellence Data entry in Excel Directly type information into the cells Enter data using Form Command: File > Options 2 Data entry in Excel Tool bar:

More information

Assignment objectives:

Assignment objectives: Assignment objectives: Regression Pivot table Exercise #1- Simple Linear Regression Often the relationship between two variables, Y and X, can be adequately represented by a simple linear equation of the

More information

How to Use a Data Spreadsheet: Excel

How to Use a Data Spreadsheet: Excel How to Use a Data Spreadsheet: Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures. Although

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information.

Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Excel Tutorial Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Working with Data Entering and Formatting Data Before entering data

More information

KSTAT MINI-MANUAL. Decision Sciences 434 Kellogg Graduate School of Management

KSTAT MINI-MANUAL. Decision Sciences 434 Kellogg Graduate School of Management KSTAT MINI-MANUAL Decision Sciences 434 Kellogg Graduate School of Management Kstat is a set of macros added to Excel and it will enable you to do the statistics required for this course very easily. To

More information

ADD-INS: ENHANCING EXCEL

ADD-INS: ENHANCING EXCEL CHAPTER 9 ADD-INS: ENHANCING EXCEL This chapter discusses the following topics: WHAT CAN AN ADD-IN DO? WHY USE AN ADD-IN (AND NOT JUST EXCEL MACROS/PROGRAMS)? ADD INS INSTALLED WITH EXCEL OTHER ADD-INS

More information

Using Excel for inferential statistics

Using Excel for inferential statistics FACT SHEET Using Excel for inferential statistics Introduction When you collect data, you expect a certain amount of variation, just caused by chance. A wide variety of statistical tests can be applied

More information

Call Centre Helper - Forecasting Excel Template

Call Centre Helper - Forecasting Excel Template Call Centre Helper - Forecasting Excel Template This is a monthly forecaster, and to use it you need to have at least 24 months of data available to you. Using the Forecaster Open the spreadsheet and enable

More information

Exercise 1.12 (Pg. 22-23)

Exercise 1.12 (Pg. 22-23) Individuals: The objects that are described by a set of data. They may be people, animals, things, etc. (Also referred to as Cases or Records) Variables: The characteristics recorded about each individual.

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

Advanced Microsoft Excel 2010

Advanced Microsoft Excel 2010 Advanced Microsoft Excel 2010 Table of Contents THE PASTE SPECIAL FUNCTION... 2 Paste Special Options... 2 Using the Paste Special Function... 3 ORGANIZING DATA... 4 Multiple-Level Sorting... 4 Subtotaling

More information

" Y. Notation and Equations for Regression Lecture 11/4. Notation:

 Y. Notation and Equations for Regression Lecture 11/4. Notation: Notation: Notation and Equations for Regression Lecture 11/4 m: The number of predictor variables in a regression Xi: One of multiple predictor variables. The subscript i represents any number from 1 through

More information

Figure 1. An embedded chart on a worksheet.

Figure 1. An embedded chart on a worksheet. 8. Excel Charts and Analysis ToolPak Charts, also known as graphs, have been an integral part of spreadsheets since the early days of Lotus 1-2-3. Charting features have improved significantly over the

More information

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition

Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition Bowerman, O'Connell, Aitken Schermer, & Adcock, Business Statistics in Practice, Canadian edition Online Learning Centre Technology Step-by-Step - Excel Microsoft Excel is a spreadsheet software application

More information

Excel Intermediate Session 2: Charts and Tables

Excel Intermediate Session 2: Charts and Tables Excel Intermediate Session 2: Charts and Tables Agenda 1. Introduction (10 minutes) 2. Tables and Ranges (5 minutes) 3. The Report Part 1: Creating and Manipulating Tables (45 min) 4. Charts and other

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

More information

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu http://www.csun.edu/training TABLE

More information

Using Microsoft Excel to Analyze Data from the Disk Diffusion Assay

Using Microsoft Excel to Analyze Data from the Disk Diffusion Assay Using Microsoft Excel to Analyze Data from the Disk Diffusion Assay Entering and Formatting Data Open Excel. Set up the spreadsheet page (Sheet 1) so that anyone who reads it will understand the page (Figure

More information

A Quick Guide to Using Excel 2007 s Regression Analysis Tool

A Quick Guide to Using Excel 2007 s Regression Analysis Tool A Quick Guide to Using Excel 2007 s Regression Analysis Tool Table of Contents The Analysis Toolpak... 1 If the Add-In is ALREADY Installed... 1 If the Add-In is NOT ALREADY Installed... 1 Run a Multiple

More information

Appendix 2.1 Tabular and Graphical Methods Using Excel

Appendix 2.1 Tabular and Graphical Methods Using Excel Appendix 2.1 Tabular and Graphical Methods Using Excel 1 Appendix 2.1 Tabular and Graphical Methods Using Excel The instructions in this section begin by describing the entry of data into an Excel spreadsheet.

More information

TIPS FOR DOING STATISTICS IN EXCEL

TIPS FOR DOING STATISTICS IN EXCEL TIPS FOR DOING STATISTICS IN EXCEL Before you begin, make sure that you have the DATA ANALYSIS pack running on your machine. It comes with Excel. Here s how to check if you have it, and what to do if you

More information

Microsoft Excel Tips & Tricks

Microsoft Excel Tips & Tricks Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Tables & Pivot Tables ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. What is an Excel Table?... 2 2. Creating Pivot

More information

Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; hflores@rice.edu, and Dr. J.A. Dobelman

Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; hflores@rice.edu, and Dr. J.A. Dobelman Introduction to Statistical Computing in Microsoft Excel By Hector D. Flores; hflores@rice.edu, and Dr. J.A. Dobelman Statistics lab will be mainly focused on applying what you have learned in class with

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS

SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing

More information

WHAT S NEW IN MS EXCEL 2013

WHAT S NEW IN MS EXCEL 2013 Contents Excel... 1 Filling empty cells using Flash Fill... 1 Filtering records using a Timeline... 2 Previewing with Quick Analysis... 4 Using Chart Advisor recommendations... 5 Finding errors and issues

More information

Computer Training Centre University College Cork. Excel 2013 Pivot Tables

Computer Training Centre University College Cork. Excel 2013 Pivot Tables Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a

More information

Working with SPSS. A Step-by-Step Guide For Prof PJ s ComS 171 students

Working with SPSS. A Step-by-Step Guide For Prof PJ s ComS 171 students Working with SPSS A Step-by-Step Guide For Prof PJ s ComS 171 students Contents Prep the Excel file for SPSS... 2 Prep the Excel file for the online survey:... 2 Make a master file... 2 Clean the data

More information

Using Microsoft Excel to Analyze Data

Using Microsoft Excel to Analyze Data Entering and Formatting Data Using Microsoft Excel to Analyze Data Open Excel. Set up the spreadsheet page (Sheet 1) so that anyone who reads it will understand the page. For the comparison of pipets:

More information

Using MS Excel to Analyze Data: A Tutorial

Using MS Excel to Analyze Data: A Tutorial Using MS Excel to Analyze Data: A Tutorial Various data analysis tools are available and some of them are free. Because using data to improve assessment and instruction primarily involves descriptive and

More information

STATISTICS 8, FINAL EXAM. Last six digits of Student ID#: Circle your Discussion Section: 1 2 3 4

STATISTICS 8, FINAL EXAM. Last six digits of Student ID#: Circle your Discussion Section: 1 2 3 4 STATISTICS 8, FINAL EXAM NAME: KEY Seat Number: Last six digits of Student ID#: Circle your Discussion Section: 1 2 3 4 Make sure you have 8 pages. You will be provided with a table as well, as a separate

More information

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010.

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010. Page 1 of 8 Excel 2010 Home > Excel 2010 Help and How-to > Getting started with Excel Search help More on Office.com: images templates Basic tasks in Excel 2010 Here are some basic tasks that you can do

More information

Introduction to SPSS 16.0

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

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Chapter 23. Inferences for Regression

Chapter 23. Inferences for Regression Chapter 23. Inferences for Regression Topics covered in this chapter: Simple Linear Regression Simple Linear Regression Example 23.1: Crying and IQ The Problem: Infants who cry easily may be more easily

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create.

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create. What is Excel? Applies to: Excel 2010 Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze

More information

Data exploration with Microsoft Excel: univariate analysis

Data exploration with Microsoft Excel: univariate analysis Data exploration with Microsoft Excel: univariate analysis Contents 1 Introduction... 1 2 Exploring a variable s frequency distribution... 2 3 Calculating measures of central tendency... 16 4 Calculating

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

IBM SPSS Statistics for Beginners for Windows

IBM SPSS Statistics for Beginners for Windows ISS, NEWCASTLE UNIVERSITY IBM SPSS Statistics for Beginners for Windows A Training Manual for Beginners Dr. S. T. Kometa A Training Manual for Beginners Contents 1 Aims and Objectives... 3 1.1 Learning

More information

Excel Working with Data Lists

Excel Working with Data Lists Excel Working with Data Lists Excel Working with Data Lists Princeton University COPYRIGHT Copyright 2001 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication,

More information

Module 4 (Effect of Alcohol on Worms): Data Analysis

Module 4 (Effect of Alcohol on Worms): Data Analysis Module 4 (Effect of Alcohol on Worms): Data Analysis Michael Dunn Capuchino High School Introduction In this exercise, you will first process the timelapse data you collected. Then, you will cull (remove)

More information

IBM SPSS Statistics 20 Part 1: Descriptive Statistics

IBM SPSS Statistics 20 Part 1: Descriptive Statistics CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 1: Descriptive Statistics Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

STATISTICA Formula Guide: Logistic Regression. Table of Contents

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

More information

business statistics using Excel OXFORD UNIVERSITY PRESS Glyn Davis & Branko Pecar

business statistics using Excel OXFORD UNIVERSITY PRESS Glyn Davis & Branko Pecar business statistics using Excel Glyn Davis & Branko Pecar OXFORD UNIVERSITY PRESS Detailed contents Introduction to Microsoft Excel 2003 Overview Learning Objectives 1.1 Introduction to Microsoft Excel

More information

To create a histogram, you must organize the data in two columns on the worksheet. These columns must contain the following data:

To create a histogram, you must organize the data in two columns on the worksheet. These columns must contain the following data: You can analyze your data and display it in a histogram (a column chart that displays frequency data) by using the Histogram tool of the Analysis ToolPak. This data analysis add-in is available when you

More information

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

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

More information

Experimental Designs (revisited)

Experimental Designs (revisited) Introduction to ANOVA Copyright 2000, 2011, J. Toby Mordkoff Probably, the best way to start thinking about ANOVA is in terms of factors with levels. (I say this because this is how they are described

More information

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

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

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

Advanced Excel for Institutional Researchers

Advanced Excel for Institutional Researchers Advanced Excel for Institutional Researchers Presented by: Sandra Archer Helen Fu University Analysis and Planning Support University of Central Florida September 22-25, 2012 Agenda Sunday, September 23,

More information

PERFORMING REGRESSION ANALYSIS USING MICROSOFT EXCEL

PERFORMING REGRESSION ANALYSIS USING MICROSOFT EXCEL PERFORMING REGRESSION ANALYSIS USING MICROSOFT EXCEL John O. Mason, Ph.D., CPA Professor of Accountancy Culverhouse School of Accountancy The University of Alabama Abstract: This paper introduces you to

More information

MICROSOFT EXCEL 2007-2010 FORECASTING AND DATA ANALYSIS

MICROSOFT EXCEL 2007-2010 FORECASTING AND DATA ANALYSIS MICROSOFT EXCEL 2007-2010 FORECASTING AND DATA ANALYSIS Contents NOTE Unless otherwise stated, screenshots in this book were taken using Excel 2007 with a blue colour scheme and running on Windows Vista.

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

The Chi-Square Test. STAT E-50 Introduction to Statistics

The Chi-Square Test. STAT E-50 Introduction to Statistics STAT -50 Introduction to Statistics The Chi-Square Test The Chi-square test is a nonparametric test that is used to compare experimental results with theoretical models. That is, we will be comparing observed

More information

How To Run Statistical Tests in Excel

How To Run Statistical Tests in Excel How To Run Statistical Tests in Excel Microsoft Excel is your best tool for storing and manipulating data, calculating basic descriptive statistics such as means and standard deviations, and conducting

More information

A Picture Really Is Worth a Thousand Words

A Picture Really Is Worth a Thousand Words 4 A Picture Really Is Worth a Thousand Words Difficulty Scale (pretty easy, but not a cinch) What you ll learn about in this chapter Why a picture is really worth a thousand words How to create a histogram

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Formula for linear models. Prediction, extrapolation, significance test against zero slope.

Formula for linear models. Prediction, extrapolation, significance test against zero slope. Formula for linear models. Prediction, extrapolation, significance test against zero slope. Last time, we looked the linear regression formula. It s the line that fits the data best. The Pearson correlation

More information

Microsoft Excel Tutorial

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

More information

Getting started manual

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

More information

Our goal, as journalists, is to look for some patterns and trends in this information.

Our goal, as journalists, is to look for some patterns and trends in this information. Microsoft Excel: MLB Payrolls exercise This is a beginner exercise for learning some of the most commonly used formulas and functions in Excel. It uses an Excel spreadsheet called MLB Payrolls 2009_2011

More information

Data exploration with Microsoft Excel: analysing more than one variable

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

More information

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering

Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques

More information

3 The spreadsheet execution model and its consequences

3 The spreadsheet execution model and its consequences Paper SP06 On the use of spreadsheets in statistical analysis Martin Gregory, Merck Serono, Darmstadt, Germany 1 Abstract While most of us use spreadsheets in our everyday work, usually for keeping track

More information

4. Descriptive Statistics: Measures of Variability and Central Tendency

4. Descriptive Statistics: Measures of Variability and Central Tendency 4. Descriptive Statistics: Measures of Variability and Central Tendency Objectives Calculate descriptive for continuous and categorical data Edit output tables Although measures of central tendency and

More information

Dealing with Data in Excel 2010

Dealing with Data in Excel 2010 Dealing with Data in Excel 2010 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 dealing

More information

Using SPSS, Chapter 2: Descriptive Statistics

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

More information

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University

Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Charting LibQUAL+(TM) Data Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Revised March 2004 The directions in this handout are written to be used with SPSS

More information

How To Analyze Data In Excel 2003 With A Powerpoint 3.5

How To Analyze Data In Excel 2003 With A Powerpoint 3.5 Microsoft Excel 2003 Data Analysis Larry F. Vint, Ph.D lvint@niu.edu 815-753-8053 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 Copyright

More information

SPSS: Getting Started. For Windows

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

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Business Valuation Review

Business Valuation Review Business Valuation Review Regression Analysis in Valuation Engagements By: George B. Hawkins, ASA, CFA Introduction Business valuation is as much as art as it is science. Sage advice, however, quantitative

More information

Calibration and Linear Regression Analysis: A Self-Guided Tutorial

Calibration and Linear Regression Analysis: A Self-Guided Tutorial Calibration and Linear Regression Analysis: A Self-Guided Tutorial Part 1 Instrumental Analysis with Excel: The Basics CHM314 Instrumental Analysis Department of Chemistry, University of Toronto Dr. D.

More information

Introduction to IBM SPSS Statistics

Introduction to IBM SPSS Statistics CONTENTS Arizona State University College of Health Solutions College of Nursing and Health Innovation Introduction to IBM SPSS Statistics Edward A. Greenberg, PhD Director, Data Lab PAGE About This Document

More information

Instructions for applying data validation(s) to data fields in Microsoft Excel

Instructions for applying data validation(s) to data fields in Microsoft Excel 1 of 10 Instructions for applying data validation(s) to data fields in Microsoft Excel According to Microsoft Excel, a data validation is used to control the type of data or the values that users enter

More information

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

More information

January 26, 2009 The Faculty Center for Teaching and Learning

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

More information

Activity 3.7 Statistical Analysis with Excel

Activity 3.7 Statistical Analysis with Excel Activity 3.7 Statistical Analysis with Excel Introduction Engineers use various tools to make their jobs easier. Spreadsheets can greatly improve the accuracy and efficiency of repetitive and common calculations;

More information

Simple Regression Theory II 2010 Samuel L. Baker

Simple Regression Theory II 2010 Samuel L. Baker SIMPLE REGRESSION THEORY II 1 Simple Regression Theory II 2010 Samuel L. Baker Assessing how good the regression equation is likely to be Assignment 1A gets into drawing inferences about how close the

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Statistical Data analysis With Excel For HSMG.632 students

Statistical Data analysis With Excel For HSMG.632 students 1 Statistical Data analysis With Excel For HSMG.632 students Dialog Boxes Descriptive Statistics with Excel To find a single descriptive value of a data set such as mean, median, mode or the standard deviation,

More information

Q&As: Microsoft Excel 2013: Chapter 2

Q&As: Microsoft Excel 2013: Chapter 2 Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats

More information

Updates to Graphing with Excel

Updates to Graphing with Excel Updates to Graphing with Excel NCC has recently upgraded to a new version of the Microsoft Office suite of programs. As such, many of the directions in the Biology Student Handbook for how to graph with

More information

Prepare your result file for input into SPSS

Prepare your result file for input into SPSS Prepare your result file for input into SPSS Isabelle Darcy When you use DMDX for your experiment, you get an.azk file, which is a simple text file that collects all the reaction times and accuracy of

More information

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

More information

Using Microsoft Excel to Plot and Analyze Kinetic Data

Using Microsoft Excel to Plot and Analyze Kinetic Data Entering and Formatting Data Using Microsoft Excel to Plot and Analyze Kinetic Data Open Excel. Set up the spreadsheet page (Sheet 1) so that anyone who reads it will understand the page (Figure 1). Type

More information

Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011

Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011 Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011 Name: Section: I pledge my honor that I have not violated the Honor Code Signature: This exam has 34 pages. You have 3 hours to complete this

More information