Final Thoughts.

Slides:



Advertisements
Similar presentations
How to Import an Excel File Using the SAS Import Wizard SAS 9 for Windows.
Advertisements

Final Thoughts HRP 223 – 2013 December 4 th, 2013 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation.
Alford Academy Business Education and Computing1 Advanced Higher Computing Based on Heriot-Watt University Scholar Materials File Handling.
SAS Output Delivery System. Find heart in the sashelp library Double click.
Beginning Data Manipulation HRP Topic 4 Oct 19 th 2011.
1 Creating and Tweaking Data HRP223 – 2010 October 24, 2011 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
Final Thoughts. When you get data… Check for Viruses Lock the files – Right click> properties>click on read only Assume the data has not been cleaned.
1 Windows and Beginning Data Manipulation HRP223 – 2013 Oct 9, 2012 Copyright © Leland Stanford Junior University. All rights reserved. Warning:
Computers as an Expressive Medium Lab 8: jar signing, debugging Mayhew Seavey.
Hey! Have you read…? Reader’s Review Ms. Larson’s Class Click your mouse to advance the slide.
CENTER FOR SOCIAL SCIENCE COMPUTATION AND RESEARCH (CSSCR) UNIVERSITY OF WASHINGTON Fall Quarter, 2012 Prepared by Eric Hamilton INTRODUCTION TO SPSS (AND.
SAS Workshop Lecture 1 Lecturer: Annie N. Simpson, MSc.
Java Programming, 3e Concepts and Techniques Chapter 2 - Part 2 Creating a Java Application and Applet.
1 Data Manipulation (with SQL) HRP223 – 2010 October 13, 2010 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
Data, graphics, and programming in R 28.1, 30.1, Daily:10:00-12:45 & 13:45-16:30 EXCEPT WED 4 th 9:00-11:45 & 12:45-15:30 Teacher: Anna Kuparinen.
Working with Data in Windows HRP223 – 2009 Sept 28 th, 2009 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
Fourth R Inc. 1 WELCOME TO MICROSOFT OFFICE PROJECT 2003 INTRODUCTORY COURSE.
Chapter 1: Introduction to SAS  SAS programs: A sequence of statements in a particular order  Rules for SAS statements: –Every SAS statement ends in.
Go to your school’s web locker site school name.schoolweblockers.com) Your user name is the first letter of your first name, the first 4.
Oracle Data Integrator Procedures, Advanced Workflows.
1 Lab 2 and Merging Data (with SQL) HRP223 – 2009 October 19, 2009 Copyright © Leland Stanford Junior University. All rights reserved. Warning:
Analyses using SPSS version 19
Go to your school’s web locker site Your user name is the first letter of your first name, the first four letters of.
1 Data Manipulation (with SQL) HRP223 – 2010 October 13, 2010 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
When I want to work with SQL, I start off as if I am doing a regular query.
Part 4 Processing and saving data with CGI/Perl Psychological Science on the Internet: Designing Web-Based Experiments From the Ground Up R. Chris Fraley.
CharMeck.org Contributer Training SharePoint 2013 Orientation and Basic Training.
Trinity College Dublin, The University of Dublin GE3M25: Computer Programming for Biologists Python Karsten Hokamp, PhD Genetics TCD, 03/11/2015.
Windows XP Lab 2 Organizing Your Work Competencies.
1 Installing Java on Your PC. Installing Java To develop Java programs on your PC: Install JDK (Java Development Kit) Add the directory where JDK was.
1 Lab 1 HRP223 – 2009 October 5, 2009 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected.
HRP Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and.
PHP Form Processing * referenced from
“Successful Uses of HTML Computer Code” Shannon Harwell.
1 Data Manipulation (with SQL) HRP223 – 2009 October 12, 2009 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
Beginning Data Manipulation HRP Topic 4 Oct 14 th 2012 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This.
HRP Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected by copyright law and.
Unit Unit 4 – Windows OS File Structure Introducing Your Computer Widows File Types, Trees & Explorer.
Using a set-up file to read ASCII data into Stata
Whatcha doin'? Aims: To start using Python. To understand loops.
BIT116: Scripting Loops.
Student Monmouth College
Data Virtualization Tutorial… OAuth Example using Google Sheets
Using a set-up file to read ASCII data into SPSS
Arrays and files BIS1523 – Lecture 15.
SAS Programming Introduction to SAS.
Working with Data in Windows
How to Import an Excel File
SAS Output Delivery System
TRAINING OF FOCAL POINTS on the CountrySTAT SYSTEM based on FENIX
Chapter 1: Introduction to SAS
Tamara Arenovich Tony Panzarella
Lab 10 Instructions You can use g++ on build server, visual studio on local machine or your preferred C++ IDE. Important Note: For your grade, please show.
Welcome to CS 1010! Algorithmic Problem Solving.
Building Web Applications
Introduction to SAS A SAS program is a list of SAS statements executed in order Every SAS statement ends with a semicolon! SAS statements can be in caps.
Microsoft Visual Source Safe How & Why
Project Directions You can use the links on the next slide if you are in Show mode (just hit the F5 key to enter Show mode). Otherwise you can copy and.
Microsoft PowerPoint 2007 – Unit 2
Text / Serial / Sequential Files
Lab 3 and HRP259 Lab and Combining (with SQL)
Lab 2 and Merging Data (with SQL)
Lab 2 HRP223 – 2010 October 18, 2010 Copyright © Leland Stanford Junior University. All rights reserved. Warning: This presentation is protected.
Stata Basic Course Lab 2.
Functions continued.
Lesson 7 Graphics.
Data Manipulation (with SQL)
Chapter 1 Introducing Small Basic
MIS 3200 – Unit 2.2 Outline What’s the problem with bad data?
Presentation transcript:

Final Thoughts

When you get data… Check for Viruses Lock the files Right click> properties>click on read only Assume the data has not been cleaned Logic check every variable (even the ones you are not going to use). Do descriptive statistics (numeric and/or graphic) on every variable.

Cleaning up data Do nothing by hand. If you need to change a value do it in a SAS program or in an EG project. Keep the source files locked and make changes to the revised versions.

Use SQL Look at the SQL that is generated by the EG GUI. Eventually you will be sick of clicking.

Moving from EG to SAS Remember that you can right click on nodes in EG and get the code. That code can be run inside of SAS. This lets you use the statistical graphics editor. Be sure to add comments to your code.

Specify where output will be stored. Display manager deletes output text and log. Do not show the name of the procedures in output. Do X commands ASAP. Don’t show the date in output and reset page # to 1. Delete graphics in the work library. Make the folder where output will be stored if it does not exist. Delete what is there if it exists. Set file path to that directory. Make a library to store output datasets. Make a web page to display all output. Make pretty graphics. Run other programs. Turn off graphics and output.

Keep it minimal Use formats liberally instead of making new variables to recode.

Advanced Stuff If you find you need to copy and paste the same code over and over give me a call. Don’t forget that SAS/Macro functionality is availble as prompts in EG. Remember that arrays and loops can be used to do the same task on a lot of different variables.

When you conduct analyses For every p-value you needs a picture.

Lifetime Warrantee HRP 223 comes with a lifetime warrantee. If you and I are alive, you are welcome to come by and ask for help. If either you or I are not alive please do not come for help.

Special thanks to…. Bob and Ziggy Marley The Birthday Massacre VNV Nation Skinny Puppy Assemblage 23 ampedout.net Mellissa Lori Balise