Appendix III: SPSS Preliminary

Size: px
Start display at page:

Download "Appendix III: SPSS Preliminary"

Transcription

1 Appendix III: SPSS Preliminary SPSS is a statistical software package that provides a number of tools needed for the analytical process planning, data collection, data access and management, analysis, reporting and deployment. The SPSS program is started in different ways depending on the installation. Typically, it is started from Windows by simply double-clicking on the appropriate icon or by choosing it from a menu of options. SPSS is a window-based software that consists of three files Data Editor, Syntax Editor, and Output Viewer. The Data Editor is typically the starting point for everything you do in SPSS for Windows. It is a spreadsheet-style interface in which you enter your data and specify the names of your variables. Once you have done this, you can proceed to the subsequent steps of specifying the statistical analysis you want. There are two ways of carrying out statistical analysis. One of ways is to use mouse to open menus and dialog boxes and to choose options from them. The other way involves using a syntax editor in SPSS. You start by first opening a new window, called a Syntax Editor, and then writing commands in the SPSS programming language that specify one of more analyses. Once your commands have been typed into the Syntax Editor, you need to tell SPSS to execute or run them. If there is only one command to run, make sure that the curse is located somewhere on the command you want to execute by using the mouse and clicking somewhere on the command. Then locate the Run button on the tool bar near the top of the screen. It is the button with a right-pointing arrow on it. If there are more than one command in the Syntax Editor, you can run several commands at once by first highlighting the commands and then click on the Run button to execute the highlighted commands. Another option to execute a command is to use the menu bar labeled with Run. Click on Run, and a pull-down menu presents you with several options, including All (if you want to run all the commands without highlighting the commands), Selection, or Current (if you want to run only the current command).

2 Once the data have been entered and the analysis has been specified using one of two ways, a new window (Output Viewer) appears containing the results of your analyses. 1.1: Reading Text Data Files When you have a date set like household surveys, the first thing you need to do is to convert the raw data into SPSS, STATA, or any other software you are using. Here we explain the basic steps to convert the raw data in a simple text file (standard ASCII format) to SPSS format. (i) (ii) (iii) (iv) (v) (vi) Step 1 is to select Read Text Data from the File menu. Select a text data file to read. This opens the Text Wizard. The data file is displayed in the preview window. In the first step you can apply a predefined format (previously saved in the Text Wizard). In this example, you simply click Next since you want to define a new format. Step 2 provides information about variables. A variable is similar to a field in a database. For example, each item in a questionnaire is a variable. Fixed format means each variable is recorded in the same column location for every case. Delimited means that spaces, commas, tabs, or other characters are used to separate variables. The variables are recorded in the same order for each case but not necessarily in the same column locations. Step 3 provides information about cases. A case is similar to a record in a database. For example, each respondent to a questionnaire is a case. Step 4 displays the Text Wizard's best guess on how to read the data file and allows you to modify the way the Text Wizard will read variables from the data file. Step 5 controls the data format that the Text Wizard will use to read each variable and which variables will be included in the final data file. Step 6 is the final step of the Text Wizard. You can save your specifications to read similar text data files. And you can also paste and save the underlying

3 command syntax. When you are ready to read the text data file, just click Finish. An example of the Syntax Editor in converting a raw data into SPSS is as below: SET BLANKS=SYSMIS BLANKS=SYSMIS UNDEFINED=WARN. DATA LIST FILE='c:\lfs142.dat' FIXED RECORDS=1 TABLE /1 reg 1-1 cwd 2-3 area 4-4 blk 5-7 year 8-10 hh_no hh_ type no_hh_me weight (2). EXECUTE. 1.2: Opening a Dataset You open a SPSS dataset by selecting Open from the File menu. Alternatively, you can open a dataset by typing the following command in the Syntax Editor: GET FILE = 'C:\INTROPOV\DATA\Hh.SAV' The command shown above specifies the current directory and the data file saved. Unlike STATA, there are no such commands or menus as Set memory 20m (when we have to allocate more memory to a big dataset in STATA) or Set matsize 100 (when we have to allocate more variables to STATA) 1.3: Saving a Dataset When you save a dataset file, you choose Save or Save as option from the File menu. You can also write a command in syntax SAVE OUTFILE = 'C:\INTROPOV \ DATA \ Hh.SAV'

4 When you make some changes in the data file and want to save it, you simply click Save from the File menu. This will simply overwrite the existing file with the new file. If you want to keep the original file, you select Save as command from the File menu. 1.4: Exiting SPSS To finish SPSS, you simply select Exit option from the File menu. On choosing exit command, you will be asked whether or not you want to save the changes you made to the open data file. If you want to save to overwrite the open file with the original file, then click yes and otherwise no. 2: Working with data files: looking at the content 2.1: Listing the variables To see all variables in the data set, select File Info from the Utilities menu. It provides information on each variable s name, label, type, missing values, and measurement level in the output file. Another option is to click the Variable View tab on bottom of the spreadsheet. 2.2: Defining and Labeling data SPSS has an option that enables us to define whether a variable is numeric or string. To define the type of a variable, first click the Variable View tab. This displays the Variable View. Click the Type cell in the row for the variable, and then click the button in the cell. Select the data type in the Define Variable Type dialog box. For example, to enter data values that contain letters, select String. Then click OK.

5 In addition to defining data type, you can also define descriptive variable and value labels for data values. These descriptive labels are used in statistical reports and charts. For example, you could assign the labels 'Urban' and 'Rural' to the numeric values 1 and 2. To define a variable label, click the Label cell in the row for the variable. And enter the descriptive label. To specify Value Labels, make the Data Editor the active window. If the Data view is displayed, double-click the variable name at the top of the column in the Data view or click the Variable View tab. Click the button in the Values cell for the variable you want to define. For each value, enter the value and a label. Click Add to enter the value label. And click on OK when you are finished. If you want to command lists of households with a certain characteristics, for instance, households headed by a female who is younger than 45, what do you have to do? The command in the Syntax Editor is USE ALL. COMPUTE filter_$ = (sex = 2 & age < 45). VARIABLE LABEL filter_$ 'sex = 2 & age < 45 (FILTER)'. VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. FORMAT filter_$ (f1.0). FILTER BY filter_$. EXECUTE. More specifically, Select Cases from the Data menu provides several methods for selecting a subgroup of cases based on criteria that include variables and complex expressions. You can also select a random sample of cases. The criteria used to define a subgroup can include: variable values and ranges date and time ranges

6 case (row) numbers arithmetic expressions logical expressions functions For unselected cases, you can filter or delete cases that do not meet the selection criteria. Filtered cases remain in the data file but are excluded from analysis. Select Cases creates a filter variable, FILTER_$, to indicate filter status. Selected cases have a value of 1; filtered cases have a value of 0. Filtered cases are also indicated with a slash through the row number in the Data Editor. To turn filtering off and include all cases in your analysis, select All cases. Deleted cases are removed from the data file and cannot be recovered if you save the data file after deleting the cases. The above commands use both relational and logical operators. The operators are somewhat similar to ones used in STATA. One exception is that while SPSS uses = as equal to, STATA uses = = indicating the same meaning. Most conditional expressions use one or more of the six relational operators (<, >, <=, >=, =, and ~=) on the calculator pad. Conditional expressions can include variable names, constants, arithmetic operators, numeric and other functions, logical variables, and relational operators. 2.3: Summarizing data The Descriptives procedure displays univariate summary statistics for several variables in a single table and calculates standardized values (z scores). Variables can be ordered by the size of their means (in ascending or descending order), alphabetically, or by the order in which you select the variables (the default). When z scores are saved, they are added to the data in the Data Editor and are available for charts, data listings, and analyses. When variables are recorded in different units (for example, gross domestic product per capita and percentage

7 literate), a z-score transformation places variables on a common scale for easier visual comparison. If we want to compute the household size and education of the household head, then the following command can summarize the results. DESCRIPTIVES VARIABLES=size edu /STATISTICS=MEAN STDDEV MIN MAX KURTOSIS. Under this command, the related statistics include sample size, mean, minimum, maximum, standard deviation, variance, range, sum, standard error of the mean, and kurtosis and skewness with their standard errors. Like STATA, SPSS allows us to use weights. The command for weighting by population is WEIGHT BY POP. Weight Cases gives cases different weights (by simulated replication) for statistical analysis. The values of the weighting variable should indicate the number of observations represented by single cases in your data file. Cases with zero, negative, or missing values for the weighting variable are excluded from analysis. Fractional values are valid; they are used exactly where this is meaningful, and most likely where cases are tabulated. Once you apply a weight variable, it remains in effect until you select another weight variable or turn off weighting. If you save a weighted data file, weighting information is saved with the data file. You can turn off weighting at any time, even after the file has been saved in weighted form. Unlike STATA program, SPSS does not have options on selecting different weights among analytic weight, sampling weight, frequency weight, and importance weight. Note that when dealing with cross-sectional household surveys, weighting is important to correct the

8 sampling design differences and data collection problems. The results are also very different as shown below. Summary Statistics (without weighting) N Minimum Maximum Mean Std. Kurtosis Std. Error Deviation Size of household Education of head Summary Statistics (with weighting by population) N Minimum Maximum Mean Std. Kurtosis Std. Error Deviation Size of household Education of head In some cases, we need to know summary statistics by many sub-groups. For example, we want to see mean of family size and education of household head by regions in a country. In this example, SPSS does not require the data set to be sorted out by region. Select first Analyze, Compare Means, and then Means from the menu. The command to get the result is as follows: MEANS TABLES=region BY edu BY size /CELLS MEAN COUNT STDDEV SEMEAN MIN MAX VAR. The Means procedure calculates subgroup means and related univariate statistics for dependent variables within categories of one or more independent variables. Optionally, you can obtain a one-way analysis of variance, eta, and tests for linearity. Statistics provides sum, number of cases, mean, median, grouped median, standard error of the mean, minimum, maximum, range, variable value of the first category of the grouping variable, variable value of the last category of the grouping variable, standard deviation, variance, kurtosis, standard error of kurtosis, skewness, standard error of skewness, percentage of total sum, percentage of total number of

9 observations, percentage of sum in, percentage of number of cases included in the anaysis, geometric mean, harmonic mean, etc. Options include analysis of variance, eta, eta squared, and tests for linearity R and R-square. 2.4: Frequency distributions The Frequencies procedure provides statistics and graphical displays that are useful for describing many types of variables. For a first look at your data, the Frequencies procedure is a good place to start. For a frequency report and bar chart, you can arrange the distinct values in ascending or descending order or order the categories by their frequencies. The frequencies report can be suppressed when a variable has many distinct values. You can label charts with frequencies (the default) or percentages. We want to see whether there is any disparity in educational level by regions in a country. We use the following command: FREQUENCIES VARIABLES=region edu /ORDER = ANALYSIS. Alternatively, choose Analyze, Descriptive Statistics, and then Frequencies from the menu bar. Statistics and plots options will provide frequency counts, percentages, cumulative percentages, mean, median, mode, sum, standard deviation, variance, range, minimum and maximum values, standard error of the mean, skewness and kurtosis (both with standard errors), quartiles, user-specified percentiles, bar charts, pie charts, and histograms. 2.5: Missing Values in SPSS Like STATA, a missing value is shown by a dot (. ). Any Descriptive commands do not take into account missing values. Thus, missing values are excluded from any commands. This will be displayed in output file as shown below.

10 Case Processing Summary Cases Included Excluded Total N Percent N Percent N Percent % 0.0% % 2.6: Counting observations In order to count the number of observations in the data set, select Analyze menu and then select Compare Means. Choose Number of cases option in the Compare Means menu. Or use command in the syntax: MEANS TABLES=region BY edu /CELLS COUNT. The above command will provide the number of observations in each region by educational levels. 3: Working with data files: changing dataset 3.1: Generating new variables You can create new variables or replace the values of existing variables. For new variables, you can also specify the variable type and label. You can compute values selectively for subsets of data based on logical conditions. Compute Variable computes values for a variable based on numeric transformations of other variables. You can compute values for numeric or string (alphanumeric) variables. You can use over 70 built-in functions, including arithmetic functions, statistical functions, distribution functions, and string functions. From the menus choose Transform and then Compute. Type the name of a single target variable. It can be an existing variable or a new variable to be added to the

11 working data file. To build an expression, either paste components into the Syntax Editor or type directly in the Syntax Editor. Paste descriptive statistics (e.g. means, sum, maximum, minimum, etc) or cumulative or inverse distribution functions from the function list and fill in the parameters indicated by question marks. String constants must be enclosed in quotation marks or apostrophes. Numeric constants must be typed in American format, with the period (.) as the decimal indicator. To create a new variable oldhead, the following commands will serve the purpose: COMPUTE oldhead = 0. EXECUTE. IF (age > 32) oldhead = 1. EXECUTE. The first command generates a variable called oldhead (i.e. the household heads who are old) and sets the value of the variable for all observations equal to zero. The second command replaces the variable equal to one if the condition (household head is older than 32 years) is satisfied. Note: (i) Compute command in SPSS is equivalent to Generate in STATA. To replace the existing variable, while STATA requires Replace command, Compute in SPSS overwrites the existing variable. (ii) Like STATA, SPSS variable names should not exceed 8 letters. (iii) In STATA, there is a command egen, which is an extension of the generate command. Its powerful feature is that it has ability to store descriptive statistics like mean, sum, maximum, etc. for all observations in the data set, which set the same value for a variable. Unfortunately, SPSS does not have such a feature. In order to get the same outcome in SPSS as the command in STATA, egen spop = sum (weight*size), you need to compute spop in another file and then merge it with the current working file.

12 COMPUTE one = 1. EXECUTE. AGGREGATE /OUTFILE = ' C:\AGGR.SAV ' /BREAK = one /SPOP = SUM(POP). MATCH FILES /FILE = * /FILE = ' C:\AGGR1.SAV ' /BY one. EXECUTE. Once the variable called spop is generated, you can fill the same value into the remaining observations by using Replace Missing Values from the Transform menu. RMV /spop = SMEAN(spop). 3.2: Producing Graphs SPSS can produce basic graphs. To produce a graph, select Graphs from the menu bar. Select the type of graph you want from the Graphs menu. Choose the icon for the specific type of chart you want. You also need to indicate how your data are organized. Suppose that we want to create a clustered bar chart for groups of cases. And click on Define. To create a clustered bar chart, you need to select a category variable and a cluster variable. For instance, we want to show the number of people of each gender in each education level. Select the edu variable for the category axis variable. Select gender for the cluster variable. And click on OK. This produces a clustered bar chart of Education Category by Gender. GRAPH /BAR(GROUPED)=COUNT BY edu BY gender /MISSING = REPORT /TITLE = ' Educational Levels by Gender '

13 The result will appear in the Output file Educational Level by Gender GENDER Count Primary Secondary Upper secondary University Male Female Educational level Once you have created a graph, there are many attributes you can edit to change its appearance. You can change the title, labeling, fonts, or colors. You can also delete categories, change the scale axis range, and swap axes. Of course, the type of graph can be changed from one to another (e.g. from bar to pie or other type). To edit a graph, double-click on the graph you want. This displays the graph in the SPSS Chart Editor window. You can edit the graph from the menus, from the toolbar, or by double-clicking on the object you want to edit. For example, if you want to change title or labels of axes, select title or axis options from Chart menu in the Chart Editor window. 3.3: Combining Data sets How to merge one data set with another data set? Add Variables in the Data menu merges the working data file with an external data file that contains the same cases but different variables. For example, you might want to merge a data file (i.e. member s file in household survey) that contains each member s

14 characteristics within household with one that contains information on the head of household (i.e. household file in household survey). Cases must be sorted in the same order in both data files. If one or more key variables are used to match cases, the two data files must be sorted by ascending order of the key variable(s). Variable names in the second data file that duplicate variable names in the working data file are excluded by default because Add Variables assumes that these variables contain duplicate information. By default, the list of variables excluded from the new merged data file contains any variable names from the external data file that duplicate variable names in the working data file. Variables from the working data file are identified with an asterisk (*). Variables from the external data file are identified with a plus sign (+). If you want to include an excluded variable with a duplicate name in the merged file, you can rename it and add it to the list of variables to be included. If some cases in one file do not have matching cases in the other file (that is, some cases are missing in one file), use key variables to identify and correctly match cases from the two files. You can also use key variables with table lookup files. The key variables must have the same names in both data files. Both data files must be sorted by ascending order of the key variables, and the order of variables on the Key Variables list must be the same as their sort sequence. Cases that do not match on the key variables are included in the merged file but are not merged with cases from the other file. Unmatched cases contain values for only the variables in the file from which they are taken; variables from the other file contain the system-missing value. Example: Merge file 1 with file 2. In the working file 1, sort cases in ascending order by key variables contained both files. The command in the syntax is as below given that the key variables are id1 id6. After sorting out and saving file 1, merge it with file 2 to add more variables in which you are interested.

15 SORT CASES BY id1 (A) id2 (A) id3 (A) id4 (A) id5 (A) id6 (A). MATCH FILES /FILE=* /FILE='C:\file2.sav' /BY id1 id2 id3 id4 id5 id6 EXECUTE. How to append data sets? If we want to merge files with the same variables but different cases, how should we solve this problem? Add Cases from Merge Files in Data menu merges the working data file with a second data file that contains the same variables but different cases. For example, you might record the same information for households in two different regions and maintain the data for each region in separate files. Steps involved in appending another file with working file are as follows: (a) Open one of the data files. The cases from this file will appear first in the new, merged data file. (b) From the menus choose: Data Merge Files Add Cases (c) Select the data file to merge with the open data file. (d) Remove any variables you don t want from the Variables in New Working Data File list. (e) Add any variable pairs from the Unpaired Variables list that represent the same information recorded under different variable names in the two files. For example, date of birth might have the variable name brthdate in one file and datebrth in the other file. ADD FILES / FILE = * /FILE = ' C:\INTROPOV\DATA\FILE1.SAV ' /RENAME (brthdate = datebrth ) EXECUTE.

16 3.4: Aggregating data Aggregate command from Data menu combines groups of cases into single summary cases and creates a new aggregated data file. Cases are aggregated based on the value of one or more grouping variables. The new data file contains one case for each group. Suppose that we want to compute total income of each household, we have to aggregate each source of income (e.g. wage and salary, incomes from interest and dividends etc) for all members living in the same household. In this case the key variable is household and aggregate variables are the sum of each income component earned by each member of the household, which will give the total income of the household. Cases are grouped together based on the values of the break variables. Each unique combination of break variable values defines a group and generates one case in the new aggregated file. All break variables are saved in the new file with their existing names and dictionary information. The break variable can be either numeric or string format. Variables are used with aggregate functions to create the new variables for the aggregated file. By default, Aggregate Data creates new aggregate variable names using the first several characters of the source variable name followed by an underscore and a sequential two-digit number. The aggregate variable name is followed by an optional variable label in quotes, the name of the aggregate function, and the source variable name in parentheses. Source variables for aggregate functions must be numeric. You can override the default aggregate variable names with new variable names, provide descriptive variable labels, and change the functions used to compute the aggregated data values. You can also create a variable that contains the number of cases in each break group. The following is aggregate command syntax. AGGREGATE OUTFILE=file [/MISSING=COLUMNWISE] [/DOCUMENT] [/PRESORTED] /BREAK=varlist[({A})][varlist] {D} /aggvar['label']aggvar['label'] = function(arguments)[/aggvar ]

17 3.4: Spliting file Split File splits the data file into separate groups for analysis based on the values of one or more grouping variables. If you select multiple grouping variables, cases are grouped by each variable within categories of the prior variable on the Groups Based On list. For example, if you select gender as the first grouping variable and occupation as the second grouping variable, cases will be grouped by occupational classification within each gender category. You can specify up to eight grouping variables. Each eight characters of a long string variable (string variables longer than eight characters) count as a variable toward the limit of eight grouping variables. Cases should be sorted by values of the grouping variables, in the same order that variables are listed in the Groups Based On list. If the data file is not already sorted, select Sort the file by grouping variables. Split-file groups are presented together for comparison purposes. For pivot tables, a single pivot table is created and each split-file variable can be moved between table dimensions. For graphs, a separate graph is created for each split-file group and the graphs are displayed together in the output file. All results from each procedure are displayed separately for each split-file group. Split file command syntax is: SPLIT FILE {OFF } {[{LAYERED}][BY varlist]} {SEPARAT}

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

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

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

S P S S Statistical Package for the Social Sciences

S P S S Statistical Package for the Social Sciences S P S S Statistical Package for the Social Sciences Data Entry Data Management Basic Descriptive Statistics Jamie Lynn Marincic Leanne Hicks Survey, Statistics, and Psychometrics Core Facility (SSP) July

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

GETTING YOUR DATA INTO SPSS

GETTING YOUR DATA INTO SPSS GETTING YOUR DATA INTO SPSS UNIVERSITY OF GUELPH LUCIA COSTANZO lcostanz@uoguelph.ca REVISED SEPTEMBER 2011 CONTENTS Getting your Data into SPSS... 0 SPSS availability... 3 Data for SPSS Sessions... 4

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

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

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

Directions for Frequency Tables, Histograms, and Frequency Bar Charts

Directions for Frequency Tables, Histograms, and Frequency Bar Charts Directions for Frequency Tables, Histograms, and Frequency Bar Charts Frequency Distribution Quantitative Ungrouped Data Dataset: Frequency_Distributions_Graphs-Quantitative.sav 1. Open the dataset containing

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

SPSS Introduction. Yi Li

SPSS Introduction. Yi Li SPSS Introduction Yi Li Note: The report is based on the websites below http://glimo.vub.ac.be/downloads/eng_spss_basic.pdf http://academic.udayton.edu/gregelvers/psy216/spss http://www.nursing.ucdenver.edu/pdf/factoranalysishowto.pdf

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

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman An Introduction to SPSS Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman Topics to be Covered Starting and Entering SPSS Main Features of SPSS Entering and Saving Data in SPSS Importing

More information

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 SPSS

More information

Introduction Course in SPSS - Evening 1

Introduction Course in SPSS - Evening 1 ETH Zürich Seminar für Statistik Introduction Course in SPSS - Evening 1 Seminar für Statistik, ETH Zürich All data used during the course can be downloaded from the following ftp server: ftp://stat.ethz.ch/u/sfs/spsskurs/

More information

SPSS Manual for Introductory Applied Statistics: A Variable Approach

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

More information

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

INTRODUCTORY LAB: DOING STATISTICS WITH SPSS 21

INTRODUCTORY LAB: DOING STATISTICS WITH SPSS 21 INTRODUCTORY LAB: DOING STATISTICS WITH SPSS 21 This section covers the basic structure and commands of SPSS for Windows Release 21. It is not designed to be a comprehensive review of the most important

More information

Data Analysis. Using Excel. Jeffrey L. Rummel. BBA Seminar. Data in Excel. Excel Calculations of Descriptive Statistics. Single Variable Graphs

Data Analysis. Using Excel. Jeffrey L. Rummel. BBA Seminar. Data in Excel. Excel Calculations of Descriptive Statistics. Single Variable Graphs Using Excel Jeffrey L. Rummel Emory University Goizueta Business School BBA Seminar Jeffrey L. Rummel BBA Seminar 1 / 54 Excel Calculations of Descriptive Statistics Single Variable Graphs Relationships

More information

Data Preparation in SPSS

Data Preparation in SPSS Data Preparation in SPSS Jamie DeCoster Center for Advanced Study of Teaching and Learning University of Virginia 350 Old Ivy Way Charlottesville, VA 22903 August 15, 2012 If you wish to cite the contents

More information

Describing, Exploring, and Comparing Data

Describing, Exploring, and Comparing Data 24 Chapter 2. Describing, Exploring, and Comparing Data Chapter 2. Describing, Exploring, and Comparing Data There are many tools used in Statistics to visualize, summarize, and describe data. This chapter

More information

Introduction to PASW Statistics 34152-001

Introduction to PASW Statistics 34152-001 Introduction to PASW Statistics 34152-001 V18 02/2010 nm/jdr/mr For more information about SPSS Inc., an IBM Company software products, please visit our Web site at http://www.spss.com or contact: SPSS

More information

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

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

More information

2: Entering Data. Open SPSS and follow along as your read this description.

2: Entering Data. Open SPSS and follow along as your read this description. 2: Entering Data Objectives Understand the logic of data files Create data files and enter data Insert cases and variables Merge data files Read data into SPSS from other sources The Logic of Data Files

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

SPSS INSTRUCTION CHAPTER 1

SPSS INSTRUCTION CHAPTER 1 SPSS INSTRUCTION CHAPTER 1 Performing the data manipulations described in Section 1.4 of the chapter require minimal computations, easily handled with a pencil, sheet of paper, and a calculator. However,

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

IBM SPSS Direct Marketing 23

IBM SPSS Direct Marketing 23 IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release

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

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

SPSS Step-by-Step Tutorial: Part 1

SPSS Step-by-Step Tutorial: Part 1 SPSS Step-by-Step Tutorial: Part 1 For SPSS Version 11.5 DataStep Development 2004 Table of Contents 1 SPSS Step-by-Step 5 Introduction 5 Installing the Data 6 Installing files from the Internet 6 Installing

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

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Descriptive Statistics

Descriptive Statistics Y520 Robert S Michael Goal: Learn to calculate indicators and construct graphs that summarize and describe a large quantity of values. Using the textbook readings and other resources listed on the web

More information

This book serves as a guide for those interested in using IBM SPSS

This book serves as a guide for those interested in using IBM SPSS 1 Overview This book serves as a guide for those interested in using IBM SPSS Statistics software to assist in statistical data analysis whether as a companion to a statistics or research methods course,

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

IBM SPSS Direct Marketing 22

IBM SPSS Direct Marketing 22 IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release

More information

How To Use Excel With A Calculator

How To Use Excel With A Calculator Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function

More information

This book serves as a guide for those interested in using IBM

This book serves as a guide for those interested in using IBM 1 Overview This book serves as a guide for those interested in using IBM SPSS/PASW Statistics software to aid in statistical data analysis whether as a companion to a statistics or research methods course

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

IBM SPSS Data Preparation 22

IBM SPSS Data Preparation 22 IBM SPSS Data Preparation 22 Note Before using this information and the product it supports, read the information in Notices on page 33. Product Information This edition applies to version 22, release

More information

Scatter Plots with Error Bars

Scatter Plots with Error Bars Chapter 165 Scatter Plots with Error Bars Introduction The procedure extends the capability of the basic scatter plot by allowing you to plot the variability in Y and X corresponding to each point. Each

More information

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

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

Gestation Period as a function of Lifespan

Gestation Period as a function of Lifespan This document will show a number of tricks that can be done in Minitab to make attractive graphs. We work first with the file X:\SOR\24\M\ANIMALS.MTP. This first picture was obtained through Graph Plot.

More information

Excel Charts & Graphs

Excel Charts & Graphs MAX 201 Spring 2008 Assignment #6: Charts & Graphs; Modifying Data Due at the beginning of class on March 18 th Introduction This assignment introduces the charting and graphing capabilities of SPSS and

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

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

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial 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 data and

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

Create Custom Tables in No Time

Create Custom Tables in No Time SPSS Custom Tables 17.0 Create Custom Tables in No Time Easily analyze and communicate your results with SPSS Custom Tables, an add-on module for the SPSS Statistics product line Share analytical results

More information

Creating QBE Queries in Microsoft SQL Server

Creating QBE Queries in Microsoft SQL Server Creating QBE Queries in Microsoft SQL Server When you ask SQL Server or any other DBMS (including Access) a question about the data in a database, the question is called a query. A query is simply a question

More information

Data Analysis Stata (version 13)

Data Analysis Stata (version 13) Data Analysis Stata (version 13) There are many options for learning Stata (www.stata.com). Stata s help facility (accessed by a pull-down menu or by command or by clicking on?) consists of help files

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Using Excel for Statistical Analysis

Using Excel for Statistical Analysis 2010 Using Excel for Statistical Analysis Microsoft Excel is spreadsheet software that is used to store information in columns and rows, which can then be organized and/or processed. Excel is a powerful

More information

SPSS for Simple Analysis

SPSS for Simple Analysis STC: SPSS for Simple Analysis1 SPSS for Simple Analysis STC: SPSS for Simple Analysis2 Background Information IBM SPSS Statistics is a software package used for statistical analysis, data management, and

More information

Selecting a Sub-set of Cases in SPSS: The Select Cases Command

Selecting a Sub-set of Cases in SPSS: The Select Cases Command Selecting a Sub-set of Cases in SPSS: The Select Cases Command When analyzing a data file in SPSS, all cases with valid values for the relevant variable(s) are used. If I opened the 1991 U.S. General Social

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

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

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

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

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

Psych. Research 1 Guide to SPSS 11.0

Psych. Research 1 Guide to SPSS 11.0 SPSS GUIDE 1 Psych. Research 1 Guide to SPSS 11.0 I. What is SPSS: SPSS (Statistical Package for the Social Sciences) is a data management and analysis program. It allows us to store and analyze very large

More information

INTRODUCTION TO SPSS FOR WINDOWS Version 19.0

INTRODUCTION TO SPSS FOR WINDOWS Version 19.0 INTRODUCTION TO SPSS FOR WINDOWS Version 19.0 Winter 2012 Contents Purpose of handout & Compatibility between different versions of SPSS.. 1 SPSS window & menus 1 Getting data into SPSS & Editing data..

More information

Client Marketing: Sets

Client Marketing: Sets Client Marketing Client Marketing: Sets Purpose Client Marketing Sets are used for selecting clients from the client records based on certain criteria you designate. Once the clients are selected, you

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

Chapter 4 Displaying and Describing Categorical Data

Chapter 4 Displaying and Describing Categorical Data Chapter 4 Displaying and Describing Categorical Data Chapter Goals Learning Objectives This chapter presents three basic techniques for summarizing categorical data. After completing this chapter you should

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

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

2 Describing, Exploring, and

2 Describing, Exploring, and 2 Describing, Exploring, and Comparing Data This chapter introduces the graphical plotting and summary statistics capabilities of the TI- 83 Plus. First row keys like \ R (67$73/276 are used to obtain

More information

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

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

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

After you complete the survey, compare what you saw on the survey to the actual questions listed below: Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types

More information

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

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

More information

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

Statgraphics Getting started

Statgraphics Getting started Statgraphics Getting started The aim of this exercise is to introduce you to some of the basic features of the Statgraphics software. Starting Statgraphics 1. Log in to your PC, using the usual procedure

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

Creating Advanced Reports with the SAP Query Tool

Creating Advanced Reports with the SAP Query Tool CHAPTER Creating Advanced Reports with the SAP Query Tool In this chapter An Overview of the SAP Query Tool s Advanced Screens 86 Using the Advanced Screens of the SAP Query Tool 86 86 Chapter Creating

More information

Importing Data from a Dat or Text File into SPSS

Importing Data from a Dat or Text File into SPSS Importing Data from a Dat or Text File into SPSS 1. Select File Open Data (Using Text Wizard) 2. Under Files of type, choose Text (*.txt,*.dat) 3. Select the file you want to import. The dat or text file

More information

Getting started with the Stata

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

More information

SPSS Explore procedure

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

More information

Q1. Where else, other than your home, do you use the internet? (Check all that apply). Library School Workplace Internet on a cell phone Other

Q1. Where else, other than your home, do you use the internet? (Check all that apply). Library School Workplace Internet on a cell phone Other Exploring Check-All Questions: Frequencies, Multiple Response, and Aggregation Target Software & Version: SPSS v19 Last Updated on May 4, 2012 Created by Laura Atkins Sometimes several responses or measurements

More information

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

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

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual

More information

Eventia Log Parsing Editor 1.0 Administration Guide

Eventia Log Parsing Editor 1.0 Administration Guide Eventia Log Parsing Editor 1.0 Administration Guide Revised: November 28, 2007 In This Document Overview page 2 Installation and Supported Platforms page 4 Menus and Main Window page 5 Creating Parsing

More information

ECONOMICS 351* -- Stata 10 Tutorial 2. Stata 10 Tutorial 2

ECONOMICS 351* -- Stata 10 Tutorial 2. Stata 10 Tutorial 2 Stata 10 Tutorial 2 TOPIC: Introduction to Selected Stata Commands DATA: auto1.dta (the Stata-format data file you created in Stata Tutorial 1) or auto1.raw (the original text-format data file) TASKS:

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

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

Chapter 5. Microsoft Access

Chapter 5. Microsoft Access Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,

More information

SOAL-SOAL MICROSOFT EXCEL 1. The box on the chart that contains the name of each individual record is called the. A. cell B. title C. axis D.

SOAL-SOAL MICROSOFT EXCEL 1. The box on the chart that contains the name of each individual record is called the. A. cell B. title C. axis D. SOAL-SOAL MICROSOFT EXCEL 1. The box on the chart that contains the name of each individual record is called the. A. cell B. title C. axis D. legend 2. If you want all of the white cats grouped together

More information