INTRODUCTION to SAS STATISTICAL PACKAGE LAB 3

Size: px
Start display at page:

Download "INTRODUCTION to SAS STATISTICAL PACKAGE LAB 3"

Transcription

1 Topics: Data step Subsetting Concatenation and Merging Reference: Little SAS Book - Chapter 5, Section 3.6 and 2.2 Online documentation Exercise I LAB EXERCISE The following is a lab exercise to give you experience combining SAS data sets. The data files, nmes, employee1-employee4, data1-data3, wide, long2, lab3longtowide.sas, and lab3widetolong.sas are located on the website on the LAB page under class3 Download the self-extracting file class3.exe from the website. Extract contents to the d:\temp\sasclass folder. Create the folder if it does not exist. Start the SAS Program If you are taking the class for credit (either pass/fail or graded), please read the italicized instructions at the end of each section. You will need to print out sections of the SAS log and output windows and answers to some of the questions at the end of lab,. Please do not print all of the logs and output windows. Please label each section clearly and put your name at the top of the pages. Use a TITLE statement. The data is stored in SAS file nmes. All missing data values are coded as 9. The variables included in the data file are : Variable Name Age Gender Race Smoke Description Age of Subject 1 = Male 0 = Female 1 = African American 0 = Other 1 = Current 2 = Former 1

2 3 = Never -9=unknown LC CHD BMI Expend Marital Educ 1 = Lung Cancer or Laryngeal Cancer or COPD 0 otherwise 1 = Coronary Heart Disease 0 otherwise Body mass index with two decimal places -9=unknown Subjects Total Self-Reported Medical Expenditures 1 = Married 2 = Widowed or Divorced or Separated 3 = Never Married 1 = 1 year of college or more 2 = Completed High School 3 = Less than High School -9=unknown A. Write a Data step that will do the following : 1. Using IF/THEN statements recode the missing data (coded as 9) to. for the variables: smoke, bmi and educ. 2. Create a new variable called LogBMI using the SAS Function LOG. 3. Create a categorical Age variable that breaks age into the following categories: 40 55, 56 65, > 65 (Note: no subjects in the dataset are less than 40 years old) 4. Check that your code works correctly by printing out the resulting data set for the first 30 observations. Use a data set option in a PROC step. HAND IN: Print out the output from #4 ONLY to hand in. Label this section Lab3 Exercise 1 QA.4 2

3 B. Create the following subsets: 1. Create a file nmes1 that contains only males who are <=65 years old 2. Create two files in the same data step that contain males and females separately. HAND IN: Print out the SAS log from part B 1 and 2. Label this section Lab3 Exercise I QB. Exercise II A. Concatenation and Merging 1. DATA1 and DATA2 are SAS data sets described below that contain disease and follow-up information on a group of patients. The maximum number of diseases codes (ICD-9 codes) is 6. We want to create a new file, DATA1_2, by combining these two files. Both of the files contain the variables described below. Type in the following program into the ENHANCED EDITOR window and submit to create one file with the data derived from these two files. Check the SAS log and answer the questions. Libname mylib d:\temp\sasclass ; Data data1_2; Set ; Run; How many observations are in DATA1? How many observations in Data1_2? How many variables? Variable Description Type ID Patient ID Numeric DX1 Diagnosis 1 Character DX2 Diagnosis 2 Character DX3 Diagnosis 3 Character DX4 Diagnosis 4 Character DX5 Diagnosis 5 Character DX6 Diagnosis 6 Character Sex 0 = female Numeric 3

4 Yearc 1 = male Year of last contact Numeric Yob Year of Birth Numeric Cvd Cardiovascular Disease 0 = no 1 = yes Numeric Smoker 0 = no 1 = yes Numeric Chol Cholesterol mg/dl Numeric 2. We have additional patient information to add to the Data1_2 file created in 1. DATA3 contains additional information described below for the patients in the Data1_2 file. Create a new SAS data set (ALLDATA) by match-merging the data in Data1_2 with the data in DATA3 using a key variable (id). This is a description of the data in DATA3 Variable Type Description ID numeric id SBP numeric systolic blood pressure mmhg DBP numeric diastolic blood pressure mmhg NO_CIG numeric number of cigarettes per day 0=none 1=1-10 2= = =40 or more BMI numeric body mass index kg/m 2 Remember we need to sort both files by ID before merging (using PROC SORT). Proc Sort data= ; by id; Proc Sort data= ; by id; Data mylib.alldata; merge ; Proc print data=mylib.alldata; Run; Check the SAS log for errors. Although you may not have any errors, there is a major problem with the merge program. The program did not match-merge the data because the BY statement was missing. Instead the file was sequentially matched and data from different patients were combined into one record. How many observations in the ALLDATA file? Compare the values for ICD-9 codes for the first five records of the ALLDATA file to the first five record of the Data1_2. Notice the problems with the matching. 4

5 Now return to the program editor window, add the BY statement to the DATA step and rerun. How many observations are in the ALLDATA file? Compare the first five records to the records in Data1_2. 3. We are going to use the data set option (in= ) to determine which records did not match. Return to the program in the Enhanced Editor and add the following instructions to the DATA step. Remember the in variable for each file will equal one for each record on that file. Data mylib.alldata; merge (in=count) (in=count2); by id; If count=0 then put id= count=; If count2=0 then put id= count2=; Proc print data=mylib.alldata; Title With By statement ; Run; Review the log window. How many records from the DATA1_2 file did not have a match in DATA3? How many records from the DATA3 file did not have a match in Data1_2? 4. Suppose you only want to include those records that matched included in my ALLDATA file. You can use the count and count2 variables in the DATA step to exclude the non-matches using IF-THEN clauses. Add the appropriate statement(s) to the program and run. Check the SAS log for errors. HAND IN: Print out the SAS log from this final DATA step and the answer to the following question. Label this section Lab3 Exercise II Part A Q4. How many observations are in the ALLDATA file? NOTE: The SAS system has an option to prevent accidental merging without a BY statement. Look at the NOMERGEBY system option in HELP for further details. 5

6 B. Concatenation and Merging The following files contain employee information. Use the SET and MERGE statements to combine the following files. 1. Create a combined SAS data set named employee1_2 (temporary or permanent, you choose) by concatenating the employee1 and employee2 files (SAS data sets). The data sets contain the following variables: Variable SSN Description SOCIAL SECURITY NUMBER ( XXXXXXXXX) Name employee name : lastname, first name Hire hire date Date Variable Salary Phone annual salary office telephone number: In the form : XXX-XXXX Add a LABEL statement to the DATA step to label the name, hire, and phone variables with the description given above. Add a PROC CONTENTS step to list out the contents of employee1_2. Review the LOG and OUTPUT windows. How many records are in the employee1_2 SAS data set? 2. Employee3 contains additional employees that we need to add to the file created in 1. Combine this file with the employee1_2 SAS data set created in section A.1 and name the new SAS data set employee123. DO NOT INCLUDE the variable name in the employee123 file (DROP or KEEP Data Set Option). The employee3 file includes the following variables: Variable SSN Description SOCIAL SECURITY NUMBER ( XXXXXXXXX) Name employee name : In the form lastname, first name Gender gender F=female M=male 6

7 Hire hire date Date variable Salary annual salary Notice employee3 does not contain the phone variable, but does include the gender variable. HAND IN: Print the OUTPUT window (from #2 only) containing the listing of employee123. Make sure that you put the name EMPLOYEE 123 file as the title at the top of the listing. Include the answers to the following 3 questions in your report. Label this section Lab3 Exercise II Part B Q2. 1. How many observations? 2. What is the value for gender for SSN= ? 3. What is the office telephone number for SSN= ? 3. Add the following data from the employee4 file to the records from employee123 file created in 2. Employee4 contains additional information on the employees in the employee123 file. SSN is the key variable. Variable SSN Description SOCIAL SECURITY NUMBER (XXXXXXXXX) Left date left the company date variable Blank if still an employee Phone home phone number In the form (XXX-XXXX) First, run PROC CONTENTS on the employee4 file. Notice the label for the phone variable. It is the home phone number. The variable phone on the employee123 file is the office telephone number. We want to merge the employee4 SAS data set with the employee123 SAS data set created in 3, BUT we want to keep both the home and office phone numbers. Remember SAS will retain only one of the variables because they have the same name 7

8 (Hint: use a Data Set Option on the MERGE statement).match-merge using SSN as the key variable and create a new SAS data set employee_total. Print out the file using PROC PRINT. HAND IN: Print the LOG and OUTPUT windows (from #3) containing results from the program creating employee_total and the answers to the following questions. Please label this part of the report as Lab 3 Exercise II Part B. Q3. 1. How many records are in the employee123 and employee4 files? 2. How many records and variables are in the employee_total file? 3. List the SSN of the records that do not match? Use the IN data set option to identify the records that do not match and list them in the LOG window. 4. How many variables does the file employee_total have? 4. Modify the DATA step that creates employee_total to use the IN data option to include only those observations that exist in both files. There will be 14 observations in employee_total. HAND IN: Print the SAS LOG (from #4) creating the new employee_total. Label this section as Lab 3 Exercise II Part B Q4. 8

Create a SAS Program to create the following files from the PREC2 sas data set created in LAB2.

Create a SAS Program to create the following files from the PREC2 sas data set created in LAB2. Topics: Data step Subsetting Concatenation and Merging Reference: Little SAS Book - Chapter 5, Section 3.6 and 2.2 Online documentation Exercise I LAB EXERCISE The following is a lab exercise to give you

More information

WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide

WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide STEPS Epi Info Training Guide Department of Chronic Diseases and Health Promotion World Health Organization 20 Avenue Appia, 1211 Geneva 27, Switzerland For further information: www.who.int/chp/steps WHO

More information

Creating New Variables in JMP Datasets Using Formulas Exercises

Creating New Variables in JMP Datasets Using Formulas Exercises Creating New Variables in JMP Datasets Using Formulas Exercises Exercise 3 Calculate the Difference of Two Columns 1. This Exercise will use the data table Cholesterol. This data table contains the following

More information

ASSIGNMENT #2 ( *** ANSWERS ***) 1

ASSIGNMENT #2 ( *** ANSWERS ***) 1 ASSIGNMENT #2 ( *** ANSWERS ***) 1 * problem #1 *** WHERE WILL THE PERMANENT SAS DATA SET BE WRITTEN libname x 'i:\' CREATE A PERMANENT SAS DATA SET NAMED CLINICAL USE AN INFILE STATEMENT TO TELL SAS WHERE

More information

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

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

More information

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University

Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University Maximizing Statistical Interactions Part II: Database Issues Provided by: The Biostatistics Collaboration Center (BCC) at Northwestern University While your data tables or spreadsheets may look good to

More information

OneUSG Connect. Hire a New Employee. Hire a New Employee HR_JA002

OneUSG Connect. Hire a New Employee. Hire a New Employee HR_JA002 Description This process describes the steps necessary to a new employee into a Position. Conditions A Position has been created in HCM Source Documents Hire Documentation Identify Verification Documentation

More information

SAS Programs SAS Lecture 4 Procedures. Aidan McDermott, April 18, Outline. Internal SAS formats. SAS Formats

SAS Programs SAS Lecture 4 Procedures. Aidan McDermott, April 18, Outline. Internal SAS formats. SAS Formats SAS Programs SAS Lecture 4 Procedures Aidan McDermott, April 18, 2006 A SAS program is in an imperative language consisting of statements. Each statement ends in a semi-colon. Programs consist of (at least)

More information

1. Study Registration. 2. Confirm Registration

1. Study Registration. 2. Confirm Registration USER MANUAL 1. Study Registration Diabetic patients are more susceptible to experiencing cardiovascular events, but this can be minimized with control of blood glucose levels and other risk factors (blood

More information

Road Map for CAT4 Suite. CAT4 Road Map. Road Map for CAT4 Suite

Road Map for CAT4 Suite. CAT4 Road Map. Road Map for CAT4 Suite Road Map for CAT4 Suite CAT4 Road Map Road Map for CAT4 Suite The Pen CS Clinical Audit Tool (CAT Plus Suite) is an extraction tool that takes a snapshot of your clinical data and allows you to analyse

More information

Remove this where. statement to produce the. report on the right with all 4 regions. Retain this where. statement to produce the

Remove this where. statement to produce the. report on the right with all 4 regions. Retain this where. statement to produce the Problem 4, Chapter 14, Ex. 2. Using the SAS sales data set, create the report shown in the text. Note: The report shown in the text for this question, contains only East & West region data. However, the

More information

Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2018/10/30) The numbers of figures in the SPSS_screenshot.pptx are shown in red.

Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2018/10/30) The numbers of figures in the SPSS_screenshot.pptx are shown in red. Statistical Analysis Using SPSS for Windows Getting Started (Ver. 2018/10/30) The numbers of figures in the SPSS_screenshot.pptx are shown in red. 1. How to display English messages from IBM SPSS Statistics

More information

LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA

LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA This lab will assist you in learning how to summarize and display categorical and quantitative data in StatCrunch. In particular, you will learn how to

More information

i2itracks Population Health Analytics (ipha) Custom Reports & Dashboards

i2itracks Population Health Analytics (ipha) Custom Reports & Dashboards i2itracks Population Health Analytics (ipha) Custom Reports & Dashboards 377 Riverside Drive, Suite 300 Franklin, TN 37064 707-575-7100 www.i2ipophealth.com Table of Contents Creating ipha Custom Reports

More information

SAS and Data Management

SAS and Data Management SAS and Data Management Kim Magee Department of Biostatistics College of Public Health Review INFILE statement data bp; infile c:\sas\bp.csv dlm=, ; input clinic $ dbp1 sbp1 dbp2 sbp2; run; Name the dataset

More information

Statistical Tests for Variable Discrimination

Statistical Tests for Variable Discrimination Statistical Tests for Variable Discrimination University of Trento - FBK 26 February, 2015 (UNITN-FBK) Statistical Tests for Variable Discrimination 26 February, 2015 1 / 31 General statistics Descriptional:

More information

Basic Medical Statistics Course

Basic Medical Statistics Course Basic Medical Statistics Course S0 SPSS Intro December 2014 Wilma Heemsbergen w.heemsbergen@nki.nl This Afternoon 13.00 ~ 15.00 SPSS lecture Short break Exercise 2 Database Example 3 Types of data Type

More information

22S:166. Checking Values of Numeric Variables

22S:166. Checking Values of Numeric Variables 22S:1 Computing in Statistics Lecture 24 Nov. 2, 2016 1 Checking Values of Numeric Variables range checks when you know what the range of possible values is for a given quantitative variable internal consistency

More information

1 Files to download. 3 Macro to list the highest and lowest N data values. 2 Reading in the example data file

1 Files to download. 3 Macro to list the highest and lowest N data values. 2 Reading in the example data file 1 2 22S:172 Lab session 10 Macros for data cleaning July 17, 2003 GENDER VISIT HR SBP DBP DX AE = "Gender" = "Visit Date" = "Heart Rate" = "Systolic Blood Pressure" = "Diastolic Blood Pressure" = "Diagnosis

More information

Family doctor services registration

Family doctor services registration GMS1-JUL12_GMS 1 17/07/2012 13:15 Page 1 Family doctor services registration GMS1 Patient s details n Mr n Mrs n Miss n Ms Date of birth Surname First names Please complete in BLOCK CAPITALS and tick n

More information

STEP BY STEP HOW TO COMPLETE THE ELECTRONIC BGC FORM

STEP BY STEP HOW TO COMPLETE THE ELECTRONIC BGC FORM Human Resources Background Check Program backgroundchecks.hr.ncsu.edu 2711 Sullivan Drive, Admin Services II Raleigh, NC 27695 background-checks@ncsu.edu STEP BY STEP HOW TO COMPLETE THE ELECTRONIC BGC

More information

Use this task to submit a marriage life event in the UCPath website.

Use this task to submit a marriage life event in the UCPath website. Use this task to submit a marriage life event in the UCPath website. Marriage, birth, adoption, divorce and benefit changes for AD&D, disability insurance or life insurance can be made by the employee

More information

B/ Use data set ADMITS to find the most common day of the week for admission. (HINT: Use a function or format.)

B/ Use data set ADMITS to find the most common day of the week for admission. (HINT: Use a function or format.) ASSIGNMENT #6 (*** ANSWERS ***) #1 DATES The following data are similar to data in example 8.3 in the notes. data admits format admit mmddyy10. input admit1 : mmddyy10. @@ datalines 11181998 12111998 02281998

More information

Vision Services Application Overview

Vision Services Application Overview The Georgia Lions Lighthouse is a 501(c)3 nonprofit. Our mission is to provide vision and hearing services through education, detection, prevention, and treatment. The services we provide are made possible

More information

Vine Medical Group Patient Registration Form Your Information

Vine Medical Group Patient Registration Form Your Information Your Information Welcome to Vine Medical Group. In order for us to offer you the high standards of clinical care we give to our patients, we ask that you complete this registration form. Before we are

More information

Mission Lipid Data Management Software User s Guide

Mission Lipid Data Management Software User s Guide Mission Lipid Data Management Software User s Guide V1.0 September 2018 Table of Contents 1. Overview...1 1.1 About the Mission Lipid Data Management Software...1 1.2 System Requirements...1 1.3 Materials

More information

Registering and submitting data for multiple healthcare organizations... 4

Registering and submitting data for multiple healthcare organizations... 4 Version 2 Account Management & Data Submission Guide 2 Target: BP overview The Target: BP Recognition Program celebrates physician practices and health systems for achieving blood pressure control rates

More information

using and Understanding Formats

using and Understanding Formats using and Understanding SAS@ Formats Howard Levine, DynaMark, Inc. Oblectives The purpose of this paper is to enable you to use SAS formats to perform the following tasks more effectively: Improving the

More information

Task: Design an ER diagram for that problem. Specify key attributes of each entity type.

Task: Design an ER diagram for that problem. Specify key attributes of each entity type. Q1. Consider the following set of requirements for a university database that is used to keep track of students transcripts. (10 marks) 1. The university keeps track of each student s name, student number,

More information

PROC FORMAT. CMS SAS User Group Conference October 31, 2007 Dan Waldo

PROC FORMAT. CMS SAS User Group Conference October 31, 2007 Dan Waldo PROC FORMAT CMS SAS User Group Conference October 31, 2007 Dan Waldo 1 Today s topic: Three uses of formats 1. To improve the user-friendliness of printed results 2. To group like data values without affecting

More information

Introduction to SAS Statistical Package

Introduction to SAS Statistical Package Instructor: Introduction to SAS Statistical Package Biostatistics 140.632 Lecture 1 Lucy Meoni lmeoni@jhmi.edu Teaching Assistant : Sorina Eftim seftim@jhsph.edu Lecture/Lab: Room 3017 WEB site: www.biostat.jhsph.edu/bstcourse/bio632/default.htm

More information

Basic Medical Statistics Course

Basic Medical Statistics Course Basic Medical Statistics Course S0 SPSS Intro November 2013 Wilma Heemsbergen w.heemsbergen@nki.nl 1 13.00 ~ 15.30 Database (20 min) SPSS (40 min) Short break Exercise (60 min) This Afternoon During the

More information

Admission Application: Intensive Residential Rehabilitation / Community Residence / Supportive Living COVER PAGE

Admission Application: Intensive Residential Rehabilitation / Community Residence / Supportive Living COVER PAGE COVER PAGE Please check which level of care to which the applicant is applying. Complete referral packages* should be faxed to (716) 362-0221 or scanned and emailed to intake@cazenoviarecovery.org. Thank

More information

IENG484 Quality Engineering Lab 1 RESEARCH ASSISTANT SHADI BOLOUKIFAR

IENG484 Quality Engineering Lab 1 RESEARCH ASSISTANT SHADI BOLOUKIFAR IENG484 Quality Engineering Lab 1 RESEARCH ASSISTANT SHADI BOLOUKIFAR SPSS (Statistical package for social science) Originally is acronym of Statistical Package for the Social Science but, now it stands

More information

SAS and Data Management Kim Magee. Department of Biostatistics College of Public Health

SAS and Data Management Kim Magee. Department of Biostatistics College of Public Health SAS and Data Management Kim Magee Department of Biostatistics College of Public Health Review of Previous Material Review INFILE statement data bp; infile c:\sas\bp.csv dlm=, ; input clinic $ dbp1 sbp1

More information

Contents. About This Book...1

Contents. About This Book...1 Contents About This Book...1 Chapter 1: Basic Concepts...5 Overview...6 SAS Programs...7 SAS Libraries...13 Referencing SAS Files...15 SAS Data Sets...18 Variable Attributes...21 Summary...26 Practice...28

More information

Physician Quality Reporting System Program Year Group Practice Reporting Option (GPRO) Web Interface XML Specification

Physician Quality Reporting System Program Year Group Practice Reporting Option (GPRO) Web Interface XML Specification Centers for Medicare & Medicaid Services CMS expedited Life Cycle (XLC) Physician Quality Reporting System Program Year 2013 Group Practice Reporting Option (GPRO) Web Interface XML Specification Version:

More information

Using an ICPSR set-up file to create a SAS dataset

Using an ICPSR set-up file to create a SAS dataset Using an ICPSR set-up file to create a SAS dataset Name library and raw data files. From the Start menu, launch SAS, and in the Editor program, write the codes to create and name a folder in the SAS permanent

More information

The first three steps in data entry, with examples in PASW/SPSS. Steve Simon P.Mean Consulting

The first three steps in data entry, with examples in PASW/SPSS. Steve Simon P.Mean Consulting The first three steps in data entry, with examples in PASW/SPSS Steve Simon P.Mean Consulting www.pmean.com 2. Abstract This training class will give you a general introduction to data management using

More information

Pittsource Instructions: Applying to the Standardized Patient position

Pittsource Instructions: Applying to the Standardized Patient position Pittsource Instructions: Applying to the Standardized Patient position Thank you for your interest in the Standardized Patient Program at the University Of Pittsburgh School Of Medicine. For more information

More information

Step 1: Completing the CCCApply and Cabrillo Application (TO BE COMPLETED FROM OCT 1 st and ON)

Step 1: Completing the CCCApply and Cabrillo Application (TO BE COMPLETED FROM OCT 1 st and ON) Step 1: Completing the CCCApply and Cabrillo Application (TO BE COMPLETED FROM OCT 1 st and ON) Information Needed Before Applying Before beginning the Cabrillo application have the following information

More information

STAT 7000: Experimental Statistics I

STAT 7000: Experimental Statistics I STAT 7000: Experimental Statistics I 2. A Short SAS Tutorial Peng Zeng Department of Mathematics and Statistics Auburn University Fall 2009 Peng Zeng (Auburn University) STAT 7000 Lecture Notes Fall 2009

More information

HealthlinkOnline Lung Cancer Referral User Guide

HealthlinkOnline Lung Cancer Referral User Guide HealthlinkOnline Lung Cancer Referral User Guide To begin, click the Referrals tab from across the top menu. Select St. James s Hospital and referral type Lung Cancer Referral. Next you will be presented

More information

Application For Employment (Apprenticeship Application Form)

Application For Employment (Apprenticeship Application Form) Application For Employment (Apprenticeship Application Form) Thank you for downloading an Application for Employment for a position with DRS. Before starting to complete your application for employment:

More information

GUADALUPE ENT, P.A. JENNIFER G. HENNESSEE, M.D. MAANSI DOSHI, D.O. LISA M. WRIGHT, PA

GUADALUPE ENT, P.A. JENNIFER G. HENNESSEE, M.D. MAANSI DOSHI, D.O. LISA M. WRIGHT, PA GUADALUPE ENT, P.A. JENNIFER G. HENNESSEE, M.D. MAANSI DOSHI, D.O. LISA M. WRIGHT, PA Patient Profile Last Name First Name Middle Name of Birth Gender Social Security Number Marital Status Email Race Ethnic

More information

Bulk Registration File Specifications

Bulk Registration File Specifications Bulk Registration File Specifications 2017-18 SCHOOL YEAR Summary of Changes Added new errors for Student ID and SSN Preparing Files for Upload (Option 1) Follow these tips and the field-level specifications

More information

GP Mac. Drug report. Figure 0.1 Patient s on a Drug pop-up box

GP Mac. Drug report. Figure 0.1 Patient s on a Drug pop-up box GP Mac 1. Creating a Diabetes Register First it is essential to find your patients with a diagnosis of Diabetes In GP Mac you can do a drug search for all patients prescribed Diabetes Meds/Test Strips.

More information

PHPM 672/677 Lab #2: Variables & Conditionals Due date: Submit by 11:59pm Monday 2/5 with Assignment 2

PHPM 672/677 Lab #2: Variables & Conditionals Due date: Submit by 11:59pm Monday 2/5 with Assignment 2 PHPM 672/677 Lab #2: Variables & Conditionals Due date: Submit by 11:59pm Monday 2/5 with Assignment 2 Overview Most assignments will have a companion lab to help you learn the task and should cover similar

More information

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

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

More information

3. Almost always use system options options compress =yes nocenter; /* mostly use */ options ps=9999 ls=200;

3. Almost always use system options options compress =yes nocenter; /* mostly use */ options ps=9999 ls=200; Randy s SAS hints, updated Feb 6, 2014 1. Always begin your programs with internal documentation. * ***************** * Program =test1, Randy Ellis, first version: March 8, 2013 ***************; 2. Don

More information

INTRODUCTION TO SPSS. Anne Schad Bergsaker 13. September 2018

INTRODUCTION TO SPSS. Anne Schad Bergsaker 13. September 2018 INTRODUCTION TO SPSS Anne Schad Bergsaker 13. September 2018 BEFORE WE BEGIN... LEARNING GOALS 1. Be familiar with and know how to navigate between the different windows in SPSS 2. Know how to write a

More information

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

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

More information

Keywords- Classification algorithm, Hypertensive, K Nearest Neighbor, Naive Bayesian, Data normalization

Keywords- Classification algorithm, Hypertensive, K Nearest Neighbor, Naive Bayesian, Data normalization GLOBAL JOURNAL OF ENGINEERING SCIENCE AND RESEARCHES APPLICATION OF CLASSIFICATION TECHNIQUES TO DETECT HYPERTENSIVE HEART DISEASE Tulasimala B. N* 1, Elakkiya S 2 & Keerthana N 3 *1 Assistant Professor,

More information

Automating Unpredictable Processes:

Automating Unpredictable Processes: Automating Unpredictable Processes: Building Responsive Apps using Business Rules By Carl Hewitt, Chief Architect, Decisions and Heath Oderman, CTO, Decisions Copyright 2016 Building Responsive Apps: Comparing

More information

TRS-ACTIVECARE ENROLLMENT

TRS-ACTIVECARE ENROLLMENT TRS-ACTIVECARE ENROLLMENT EMPLOYEE CURRENTLY ENROLLED WITH TRS-ACTIVECARE: ACCESSING THE WELLSYSTEMS ENROLLMENT PORTAL TO UPDATE ENROLLMENT GENERAL INSTRUCTIONS Welcome to the WellSystems Enrollment Portal.

More information

Tanita Health Ware Help

Tanita Health Ware Help Tanita Health Ware Help Getting Started Managing Users Measurements Analysis Graphs Files & Sharing Exporting ANT Scale Installation Using Garmin Watches Bluetooth Scale Installation Getting Started The

More information

Search and Reports. Vision 3

Search and Reports. Vision 3 Vision 3 Search and Reports Copyright INPS Ltd 2013 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 5017000 F:+44 (0) 207 5017100 W: www.inps.co.uk Copyright Notice 2013

More information

Person Centered Supported Living. Quarterly Report Project Period: July 1, September 30, Community and Family Support (CFS)

Person Centered Supported Living. Quarterly Report Project Period: July 1, September 30, Community and Family Support (CFS) Person Centered Supported Living Quarterly Report Project Period: July 1, 2013- September 30, 2013 Community and Family Support (CFS) Act 378, of the 1989 legislative session, created the Community and

More information

Creating Forest Plots Using SAS/GRAPH and the Annotate Facility

Creating Forest Plots Using SAS/GRAPH and the Annotate Facility PharmaSUG2011 Paper TT12 Creating Forest Plots Using SAS/GRAPH and the Annotate Facility Amanda Tweed, Millennium: The Takeda Oncology Company, Cambridge, MA ABSTRACT Forest plots have become common in

More information

Lab #1: Introduction to Basic SAS Operations

Lab #1: Introduction to Basic SAS Operations Lab #1: Introduction to Basic SAS Operations Getting Started: OVERVIEW OF SAS (access lab pages at http://www.stat.lsu.edu/exstlab/) There are several ways to open the SAS program. You may have a SAS icon

More information

Beyond FORMAT Basics Mike Zdeb, School of Public Health, Rensselaer, NY

Beyond FORMAT Basics Mike Zdeb, School of Public Health, Rensselaer, NY Beyond FORMAT Basics Mike Zdeb, University@Albany School of Public Health, Rensselaer, NY ABSTRACT Beginning and even intermediate level SAS users sometimes never venture beyond the basics in using formats.

More information

Data Anonymization - Generalization Algorithms

Data Anonymization - Generalization Algorithms Data Anonymization - Generalization Algorithms Li Xiong CS573 Data Privacy and Anonymity Generalization and Suppression Z2 = {410**} Z1 = {4107*. 4109*} Generalization Replace the value with a less specific

More information

B. Graphing Representation of Data

B. Graphing Representation of Data B Graphing Representation of Data The second way of displaying data is by use of graphs Although such visual aids are even easier to read than tables, they often do not give the same detail It is essential

More information

Automating the Production of Formatted Item Frequencies using Survey Metadata

Automating the Production of Formatted Item Frequencies using Survey Metadata Automating the Production of Formatted Item Frequencies using Survey Metadata Tim Tilert, Centers for Disease Control and Prevention (CDC) / National Center for Health Statistics (NCHS) Jane Zhang, CDC

More information

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

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

More information

2. Don t forget semicolons and RUN statements The two most common programming errors.

2. Don t forget semicolons and RUN statements The two most common programming errors. Randy s SAS hints March 7, 2013 1. Always begin your programs with internal documentation. * ***************** * Program =test1, Randy Ellis, March 8, 2013 ***************; 2. Don t forget semicolons and

More information

The first thing you may want to do is copy the EMS accounts to HMS. The certified list pulls the account information from HMS, but HMS isn t always

The first thing you may want to do is copy the EMS accounts to HMS. The certified list pulls the account information from HMS, but HMS isn t always 1 The first thing you may want to do is copy the EMS accounts to HMS. The certified list pulls the account information from HMS, but HMS isn t always kept up to date. You can run this program to copy the

More information

Epidemiology Principles of Biostatistics Chapter 3. Introduction to SAS. John Koval

Epidemiology Principles of Biostatistics Chapter 3. Introduction to SAS. John Koval Epidemiology 9509 Principles of Biostatistics Chapter 3 John Koval Department of Epidemiology and Biostatistics University of Western Ontario What we will do today We will learn to use use SAS to 1. read

More information

Human Capital Management: Step-by-Step Guide

Human Capital Management: Step-by-Step Guide Human Capital Management: Step-by-Step Guide Adding a Person of Interest (POI) This guide describes the process of adding a Person of Interest (POI). A POI is any person not paid by the university, such

More information

A Feasibility and Acceptability Study of the Provision

A Feasibility and Acceptability Study of the Provision A Feasibility and Acceptability Study of the Provision of mhealth Interventions for Behavior Change in Prehypertensive subjects in Argentina, Guatemala, and Peru. Med e Tel 2012 Beratarrechea A 1, Fernandez

More information

Lab 1: Introduction to Data

Lab 1: Introduction to Data 1 Lab 1: Introduction to Data Some define Statistics as the field that focuses on turning information into knowledge. The first step in that process is to summarize and describe the raw information the

More information

If you have never used IACRA, your first step is to become registered as an applicant.

If you have never used IACRA, your first step is to become registered as an applicant. IACRA Registration: If you have never used IACRA, your first step is to become registered as an applicant. Go to http://iacra.faa.gov NOTE: If you receive a browser error, you will need to download the

More information

ENHANCED DBS APPLICATION FORM

ENHANCED DBS APPLICATION FORM ENHANCED DBS APPLICATION FORM PRICE 69.86 PERSONAL INFORMATION Title Mr Mrs Miss Ms Other [Please Specify] Surname First Name Date of Birth Middle Name Mothers Maiden Name Town of Birth Have you ever changed

More information

Introduction to Database Concepts and Microsoft Access Database Concepts and Access Things to Do. Introduction Database Microsoft Access

Introduction to Database Concepts and Microsoft Access Database Concepts and Access Things to Do. Introduction Database Microsoft Access Introduction to Database Concepts and Microsoft Access 2016 Academic Health Center Training training@health.ufl.edu (352) 273 5051 Database Concepts and Access 2016 Introduction Database Microsoft Access

More information

Presbyterian Enrollment Standard Flat File (SFF) Layout Specification Version 1.7

Presbyterian Enrollment Standard Flat File (SFF) Layout Specification Version 1.7 Presbyterian Enrollment Standard Flat File (SFF) Layout Specification Version 1.7 1 Specification Overview: PHP Enrollment Standard Flat File Layout (SFF) Specification The goal of this standard flat file

More information

esers Guide ELECTRONIC REPORTING SYSTEM Serving the People Who Serve Our Schools

esers Guide ELECTRONIC REPORTING SYSTEM Serving the People Who Serve Our Schools 2018 esers Guide ELECTRONIC REPORTING SYSTEM mploye re esou s c rce Serving the People Who Serve Our Schools Table of Contents Registration Employer Web Administrator (EWA)... 2 Logging In... 5 Forgot

More information

Introduction to SAS Mike Zdeb ( , #61

Introduction to SAS Mike Zdeb ( , #61 Mike Zdeb (402-6479, msz03@albany.edu) #61 FORMAT, you can design informats for reading and interpreting non-standard data, and you can design formats for displaying data in non-standard ways....example

More information

CHCN EOV Documentation

CHCN EOV Documentation CHCN EOV Documentation Tuesday, January 22, 2013 4:37 PM Installing the templates Download and import the EOV templates CHCN_end_of_visit.txml CHCN_eov_alert_details.txml CHCN_eov_config.txml CHCN_EOV_config_alerts.txml

More information

ARTIFICIAL INTELLIGENCE (CS 370D)

ARTIFICIAL INTELLIGENCE (CS 370D) Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) (CHAPTER-18) LEARNING FROM EXAMPLES DECISION TREES Outline 1- Introduction 2- know your data 3- Classification

More information

SAS Training Spring 2006

SAS Training Spring 2006 SAS Training Spring 2006 Coxe/Maner/Aiken Introduction to SAS: This is what SAS looks like when you first open it: There is a Log window on top; this will let you know what SAS is doing and if SAS encountered

More information

TRAINING WORKBOOK Pilot Session 2

TRAINING WORKBOOK Pilot Session 2 Rhode Island Behavioral Health On-Line Data (BHOLD) Service TRAINING WORKBOOK Pilot Session 2 Version 1.0 September 2009 1-888-600-4777 ribholdsupport@kitsolutions.net KIT Solutions, LLC 5700 Corporate

More information

NYSLRS NYSLRS. Enroll a Member (Optional)

NYSLRS NYSLRS. Enroll a Member (Optional) Enroll a Member (Optional) NYSLRS NYSLRS New York State and Local Retirement System This quick guide shows you (as a personnel contact for a participating employer) how to enroll a member. To begin the

More information

JAIL TECHNICIAN. Some form of picture identification, such as a driver's license, will be required at examinations.

JAIL TECHNICIAN. Some form of picture identification, such as a driver's license, will be required at examinations. JAIL TECHNICIAN APPLICATION REQUEST AND RELEASE I, (print your name), hereby state that I wish to apply for employment at the Peoria County Sheriff's Office. I understand that as part of the application

More information

LibreHealth Electronic Health Record

LibreHealth Electronic Health Record 1 of 10 LibreHealth Electronic Health Record The LibreHealth EHR log in page can be accessed using Google Chrome and other common browsers. LibreHealth EHR is an open source EHR which means the programming

More information

SYSTEM 2000 Essentials

SYSTEM 2000 Essentials 7 CHAPTER 2 SYSTEM 2000 Essentials Introduction 7 SYSTEM 2000 Software 8 SYSTEM 2000 Databases 8 Database Name 9 Labeling Data 9 Grouping Data 10 Establishing Relationships between Schema Records 10 Logical

More information

Mapping Clinical Data to a Standard Structure: A Table Driven Approach

Mapping Clinical Data to a Standard Structure: A Table Driven Approach ABSTRACT Paper AD15 Mapping Clinical Data to a Standard Structure: A Table Driven Approach Nancy Brucken, i3 Statprobe, Ann Arbor, MI Paul Slagle, i3 Statprobe, Ann Arbor, MI Clinical Research Organizations

More information

student finance wales ALG FE Assembly Learning Grant Application Form for academic year 2013/14 SFW/ALG/F/V1314/A

student finance wales ALG FE Assembly Learning Grant Application Form for academic year 2013/14   SFW/ALG/F/V1314/A student finance wales ALG FE Assembly Learning Grant Application Form for academic year 2013/14 www.studentfinancewales.co.uk/alg /A It s time to apply for ALG FE for academic year 2013/14 Applying is

More information

proc print data=account; <insert statement here> run;

proc print data=account; <insert statement here> run; Statistics 6250 Name: Fall 2012 (print: first last ) Prof. Fan NetID #: Midterm Three Instructions: This is an in-class and open book midterm. You must write your answers on the provide spaces. Give concise

More information

CPRD Aurum Frequently asked questions (FAQs)

CPRD Aurum Frequently asked questions (FAQs) CPRD Aurum Frequently asked questions (FAQs) Version 2.0 Date: 10 th April 2019 Authors: Helen Booth, Daniel Dedman, Achim Wolf (CPRD, UK) 1 Documentation Control Sheet During the course of the project

More information

Introducing Categorical Data/Variables (pp )

Introducing Categorical Data/Variables (pp ) Notation: Means pencil-and-paper QUIZ Means coding QUIZ Definition: Feature Engineering (FE) = the process of transforming the data to an optimal representation for a given application. Scaling (see Chs.

More information

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

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

More information

Select the group of isolates you want to analyze using the chart and statistics tool Create a comparison of these isolates Perform a query or

Select the group of isolates you want to analyze using the chart and statistics tool Create a comparison of these isolates Perform a query or Using the Chart & Statistics Tool and Groups Steven Stroika April 2011 Overview Using the Chart and Statistics Tool Utility of Graphs in Cluster Detection and Reporting Utility of Groups Chart and Statistics

More information

Subject Area Data Element Examples Earliest Date Patient Demographics Race, primary language, mortality 2000 Encounters

Subject Area Data Element Examples Earliest Date Patient Demographics Race, primary language, mortality 2000 Encounters User Guide DataDirect is a self-service tool enabling access to robust, up-to-date data on more than 3 million unique patients from across the UMHS enterprise. This data informs study design and guides

More information

CINAHL Plus with Full Text

CINAHL Plus with Full Text Library Services CINAHL Plus with Full Text CINAHL Plus with Full Text is a database which provides details of articles in over 1,200 English-language nursing and allied health journals published since

More information

Using the Health Indicators database to help students research Canadian health issues

Using the Health Indicators database to help students research Canadian health issues Assignment Using the Health Indicators database to help students research Canadian health issues Joel Yan, Statistics Canada, joel.yan@statcan.ca, 1-800-465-1222 With input from Brenda Wannell, Health

More information

Personal Data Change Form - Nordic

Personal Data Change Form - Nordic Personal Data Change Form - Nordic Instructions: This form is used for employees to change personal data. Please ensure to complete Section A and only those fields where data will change. If the section

More information

Research with Large Databases

Research with Large Databases Research with Large Databases Key Statistical and Design Issues and Software for Analyzing Large Databases John Ayanian, MD, MPP Ellen P. McCarthy, PhD, MPH Society of General Internal Medicine Chicago,

More information

eschoolplus Alief Independent School Distirct ONLINE STUDENT ENROLLMENT

eschoolplus Alief Independent School Distirct ONLINE STUDENT ENROLLMENT ONLINE STUDENT ENROLLMENT How to Register with Enrollment Online 1. Go to https://aliefhac1.aliefisd.net/eo_parent/user/login.aspx 2. Click on Register New Account. 3. Complete the registration screen

More information

Standard Safety Visualization Set-up Using Spotfire

Standard Safety Visualization Set-up Using Spotfire Paper SD08 Standard Safety Visualization Set-up Using Spotfire Michaela Mertes, F. Hoffmann-La Roche, Ltd., Basel, Switzerland ABSTRACT Stakeholders are requesting real-time access to clinical data to

More information

The editor window is where we write our SAS programs which we will begin doing shortly.

The editor window is where we write our SAS programs which we will begin doing shortly. Introductions Overview of SAS Welcome to our SAS tutorials. This first tutorial will provide a basic overview of the SAS environment and SAS programming. We don t want you to try to follow along with this

More information