SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Basics
Presented By
Agenda
Introduction to SAS Software Program
Data preparation & Tabulation
Test of Difference: T-test, and ANOVA
Test of Association: Correlation & Regression Analysis
www.kellytechno.com
www.kellytechno.com
SAS
From traditional statistical analysis of variance and
predictive modeling to exact methods and
statistical visualization techniques, SAS/STAT
software is designed for both specialized and
enterprise wide analytical needs. SAS/STAT
software provides a complete, comprehensive set of
tools that can meet the data analysis needs of the
entire organization.
www.kellytechno.com
SAS Components
SAS Enterprise GuideSAS Enterprise Guide
SAS 9.2SAS 9.2
Graphical user interface application for
some common basic data analysis
tasks.
Graphical user interface application for
some common basic data analysis
tasks.
Command-based application for a
wide variety of data analysis tasks.
Command-based application for a
wide variety of data analysis tasks.
www.kellytechno.com
SAS Enterprise Guide
To open the statistical software package SAS go
to the Start Menu >>> All Programs >>> SAS >>>
SAS Enterprise Guide 4.3
www.kellytechno.com
SAS 9.2
To open the statistical software package SAS
go to the Start Menu >> All Program >> SAS >>
SAS 9.2 (English)
www.kellytechno.com
What Is SAS Enterprise Guide?
What Is SAS Enterprise Guide? SAS Enterprise Guide
is an easy-to-use Windows client application that
provides these features:
– access to much of the functionality of SAS
– an intuitive, visual, customizable interface
– transparent access to data
– ready-to-use tasks for analysis and reporting
– easy ways to export data and results to other
applications
– scripting and automation
– a program editor with syntax completion
and built-in function help
www.kellytechno.com
Explore the Main Windows
1
2
3
www.kellytechno.com
Create a Project for This TutorialIf SAS Enterprise Guide is not open, start it now. In the
Welcome window, select New Project.
If SAS Enterprise Guide is already open, select File >>
New Project. If you already had a project open in SAS
Enterprise Guide, you might be prompted to save the
project. Select the appropriate response.
The new project opens with an empty Process Flow
window.
www.kellytechno.com
1. The Project TreeYou can use the Project Tree window to manage the
objects in your project. You can delete, rename, and
reorder the items in the project. You can also run a
process flow or schedule a process flow to run at a
particular time.
www.kellytechno.com
2. Workspace and Process Flow Windows
You can have one or more
process flows in your project.
When you create a new project,
an empty Process Flow window
opens. As you add data, run
tasks, and generate output, an
icon for each object is added to
the process flow.
The process flow displays the
objects in a project, any
relationships that exist between
the objects, and the order in
which the objects will run when
you run the process flow.
www.kellytechno.com
3. The Task List
You can use tasks to do
everything from manipulating
data, to running specific
analytical procedures, to
creating reports.
Many tasks are also available as
wizards, which contain a
limited number of options and
can provide a quick and easy
way to use some of the tasks.
www.kellytechno.com
Add SAS Data to the Project
You can add SAS data files
and other types of files,
including OLAP cubes,
information maps, ODBC-
compliant data, and files that
are created by other software
packages, such as Microsoft
Word or Microsoft Excel.
www.kellytechno.com
SAS Enterprise Guide requires all data that it accesses
to be in table format. A table is a rectangular
arrangement of rows (also called observations) and
columns (also called variables).
Name Gender Age Weight
Jones M 48 128.6
Laverne M 58 158.3
Jaffe F . 115.5
Wilson M 28 170.1
www.kellytechno.com
‱ a column's type is important because it affects how the
column can be used in a SAS Enterprise Guide task. A
column's type can be either character or numeric.
‱ Character variables, such as Name and Gender in the
preceding data set, can contain any values. Missing
character values are represented by a blank.
‱ Numeric variables, such as Age and Weight in the
preceding data set, can contain only numeric values.
Currency, date, and time data is stored as numeric
variables. Missing numeric values are represented by a
period.Name Gender Age Weight
Jones M 48 128.6
Laverne M 58 158.3
Jaffe F . 115.5
Wilson M 28 170.1 www.kellytechno.com
Local and Remote DataWhen you open data in SAS Enterprise Guide, you
must select whether you want to look for the data on
your local computer, a SAS server, or in a SAS folder.
www.kellytechno.com
Local and Remote Data (Cont’)
If you click My Computer, you can browse the
directory structure of your computer. You can open
any type of data file that SAS Enterprise Guide can
read.
If you click Servers, you can look for your data on a
server. A server can either be a local server if SAS
software is installed on your own computer, or it can
be a remote server if SAS software is installed on a
different computer.
www.kellytechno.com
Open Data from Server
Within each server there are icons that you can select for
Libraries and Files. Libraries are shortcut names for
directory locations that SAS knows about. Some libraries
are defined by SAS, and some are defined by SAS
Enterprise Guide. Libraries contain only SAS data sets.
The Files folder on a server enables you to access data files
in the directory structure on the computer where the SAS
server is running. For example, if you wanted to open a
Microsoft Excel file on a server that is defined in your
repository, you would use the Files node to locate and
open the file.
www.kellytechno.com
Open Data from SAS Folders
If you click SAS Folders, you can browse the list of
SAS folders that you can access. SAS folders are
defined in the SAS Metadata Server and can be used to
provide a central location for your stored processes,
information maps, and projects so that they can be
shared with other SAS applications. SAS folders can
also contain content that is not in the SAS Metadata
Server, such as data files.
www.kellytechno.com
Add SAS Data from Your Local Computer
‱ Select File >> Open >> Data. In the Open Data
window, select My Computer.
‱ Open the SAS Enterprise Guide samples directory and
double-click Data. By default, the sample programs,
projects, and data are located in
C:Program FilesSASEnterpriseGuide4.3Sample.
By default, all file types are displayed in the window.
Files with the icon are SAS data sets. Press CTRL
and select Orders.sd2 and Products.sas7bdat, and
then click Open.
www.kellytechno.com
Add SAS Data from Your Local Computer (Cont’)
Shortcuts to
the Products and Orders
tables are added to the
project, and the data sets
open in data grids.
By default, the tables open in
read-only mode. In this
mode, you can browse, resize
column widths, hide and hold
columns and rows, and copy
columns and rows to a new
table.
You cannot edit the data in
the table unless you change
to edit mode. Select Edit >>
Remove Protect Data
www.kellytechno.com
View the Properties of a Data Set
In the project tree, right-click Products and
select Properties from the pop-up menu. The Properties
for Products window opens. You can see information
about general properties such as the physical location of
the data and the date it was last modified.
www.kellytechno.com
View the Properties of a Data Set (Cont’)
In the selection pane, click Columns. Here you can
view a list of columns in your data and the column
attributes.
www.kellytechno.com
Add Data from a SAS Library
‱ Select File >> Open >> Data. In
the Open Data window,
select Servers.
‱ Double-click Libraries, and
then double-click SASHELP. As
you can see, only SAS data sets
are stored in libraries
‱ Scroll in the window and
double-click the PRDSALE data
set. A shortcut to the data is
added to the project and the
data opens in the data grid. www.kellytechno.com
Save the Project‱ Select File >> Save Project
As.
‱ The Save window opens and
prompts you to choose
whether to save the project on
your computer or on a server.
Select My Computer.
‱ In the Save window, select a
location for the project. In
the File name box, type ‘your
file name’. Project files are
saved with the extension .egp.
‱ Click Save.
www.kellytechno.com
Thank You
Presented By
www.kellytechno.com

Weitere Àhnliche Inhalte

Was ist angesagt?

Data Mining with MS Access
Data Mining with MS AccessData Mining with MS Access
Data Mining with MS Access
Dhatri Jain
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SAS
Imam Jaffer
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
Terry Yoast
 

Was ist angesagt? (20)

MS Access Training
MS Access TrainingMS Access Training
MS Access Training
 
SAS - Training
SAS - Training SAS - Training
SAS - Training
 
SAP ABAP data dictionary
SAP ABAP data dictionarySAP ABAP data dictionary
SAP ABAP data dictionary
 
SAS Mainframe -Program-Tips
SAS Mainframe -Program-TipsSAS Mainframe -Program-Tips
SAS Mainframe -Program-Tips
 
001.general
001.general001.general
001.general
 
Data Mining with MS Access
Data Mining with MS AccessData Mining with MS Access
Data Mining with MS Access
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SAS
 
Access 2010
Access 2010Access 2010
Access 2010
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
 
Training MS Access 2007
Training MS Access 2007Training MS Access 2007
Training MS Access 2007
 
Starting ms access 2010
Starting ms access 2010Starting ms access 2010
Starting ms access 2010
 
Intro to Microsoft Access
Intro to Microsoft AccessIntro to Microsoft Access
Intro to Microsoft Access
 
B.sc i agri u 4 introduction to ms access
B.sc i agri u 4 introduction to ms accessB.sc i agri u 4 introduction to ms access
B.sc i agri u 4 introduction to ms access
 
Base SAS Statistics Procedures
Base SAS Statistics ProceduresBase SAS Statistics Procedures
Base SAS Statistics Procedures
 
SAS Programming Notes
SAS Programming NotesSAS Programming Notes
SAS Programming Notes
 
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
 
Tableau Desktop Material
Tableau Desktop MaterialTableau Desktop Material
Tableau Desktop Material
 
Ms access
Ms accessMs access
Ms access
 
Ms access Database
Ms access DatabaseMs access Database
Ms access Database
 
Ms access
Ms accessMs access
Ms access
 

Andere mochten auch (13)

Tech High School Principal's Recommendation Letter for Inna Collier
Tech High School Principal's Recommendation Letter for Inna CollierTech High School Principal's Recommendation Letter for Inna Collier
Tech High School Principal's Recommendation Letter for Inna Collier
 
Corporate Brochure 2016-2017
Corporate Brochure 2016-2017Corporate Brochure 2016-2017
Corporate Brochure 2016-2017
 
Menu Fisso di Mare
Menu Fisso di MareMenu Fisso di Mare
Menu Fisso di Mare
 
Positive attitude (1)
Positive attitude (1)Positive attitude (1)
Positive attitude (1)
 
DADDY'S UPDATED CV- 2
DADDY'S UPDATED CV- 2DADDY'S UPDATED CV- 2
DADDY'S UPDATED CV- 2
 
Effective and measurable learning outcomes
Effective and measurable learning outcomesEffective and measurable learning outcomes
Effective and measurable learning outcomes
 
CoCERTIFICATE603466
CoCERTIFICATE603466CoCERTIFICATE603466
CoCERTIFICATE603466
 
Natasha aldridge work example
Natasha aldridge work exampleNatasha aldridge work example
Natasha aldridge work example
 
Cherkasy BA & MA
Cherkasy BA & MACherkasy BA & MA
Cherkasy BA & MA
 
Dekorativni program
Dekorativni programDekorativni program
Dekorativni program
 
Generation Y Shop Concept
Generation Y Shop ConceptGeneration Y Shop Concept
Generation Y Shop Concept
 
Conditional statements in sas
Conditional statements in sasConditional statements in sas
Conditional statements in sas
 
Financial accounting
Financial accountingFinancial accounting
Financial accounting
 

Ähnlich wie Sas training in hyderabad

Sas Enterprise Guide A Revolutionary Tool
Sas Enterprise Guide A Revolutionary ToolSas Enterprise Guide A Revolutionary Tool
Sas Enterprise Guide A Revolutionary Tool
sysseminar
 
Quickstart Microsoft access 2013
Quickstart Microsoft access 2013Quickstart Microsoft access 2013
Quickstart Microsoft access 2013
comatsg
 
Demo Guidebook 040110
Demo Guidebook 040110Demo Guidebook 040110
Demo Guidebook 040110
Brad Ganas
 

Ähnlich wie Sas training in hyderabad (20)

Sas Enterprise Guide A Revolutionary Tool
Sas Enterprise Guide A Revolutionary ToolSas Enterprise Guide A Revolutionary Tool
Sas Enterprise Guide A Revolutionary Tool
 
8323 Stats - Lesson 1 - 03 Introduction To Sas 2008
8323 Stats - Lesson 1 - 03 Introduction To Sas 20088323 Stats - Lesson 1 - 03 Introduction To Sas 2008
8323 Stats - Lesson 1 - 03 Introduction To Sas 2008
 
Tableau Basic Questions
Tableau Basic QuestionsTableau Basic Questions
Tableau Basic Questions
 
Preparing a Dataset for Processing
Preparing a Dataset for ProcessingPreparing a Dataset for Processing
Preparing a Dataset for Processing
 
Quickstart Microsoft access 2013
Quickstart Microsoft access 2013Quickstart Microsoft access 2013
Quickstart Microsoft access 2013
 
My tableau
My tableauMy tableau
My tableau
 
Tableau interview questions www.bigclasses.com
Tableau interview questions www.bigclasses.comTableau interview questions www.bigclasses.com
Tableau interview questions www.bigclasses.com
 
Data Wrangling and Visualization Using Python
Data Wrangling and Visualization Using PythonData Wrangling and Visualization Using Python
Data Wrangling and Visualization Using Python
 
Top 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdfTop 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdf
 
Importing data in Oasis Montaj
Importing data in Oasis MontajImporting data in Oasis Montaj
Importing data in Oasis Montaj
 
Analytics with SAS
Analytics with SASAnalytics with SAS
Analytics with SAS
 
Optimize access
Optimize accessOptimize access
Optimize access
 
Spss basics tutorial
Spss basics tutorialSpss basics tutorial
Spss basics tutorial
 
Tableau free tutorial
Tableau free tutorialTableau free tutorial
Tableau free tutorial
 
Style Intelligence Evaluation Documentation
Style Intelligence Evaluation DocumentationStyle Intelligence Evaluation Documentation
Style Intelligence Evaluation Documentation
 
Informatica training
Informatica trainingInformatica training
Informatica training
 
Demo Guidebook 040110
Demo Guidebook 040110Demo Guidebook 040110
Demo Guidebook 040110
 
Sas UTR How To Create Your UTRs Sep2009
Sas UTR How To Create Your UTRs Sep2009Sas UTR How To Create Your UTRs Sep2009
Sas UTR How To Create Your UTRs Sep2009
 
BI Publisher Data model design document
BI Publisher Data model design documentBI Publisher Data model design document
BI Publisher Data model design document
 
BI Publisher 11g : Data Model Design document
BI Publisher 11g : Data Model Design documentBI Publisher 11g : Data Model Design document
BI Publisher 11g : Data Model Design document
 

Mehr von Kelly Technologies

Salesforce crm-training-in-bangalore
Salesforce crm-training-in-bangaloreSalesforce crm-training-in-bangalore
Salesforce crm-training-in-bangalore
Kelly Technologies
 

Mehr von Kelly Technologies (20)

Hadoop trainting in hyderabad@kelly technologies
Hadoop trainting in hyderabad@kelly technologiesHadoop trainting in hyderabad@kelly technologies
Hadoop trainting in hyderabad@kelly technologies
 
Hadoop trainting-in-hyderabad@kelly technologies
Hadoop trainting-in-hyderabad@kelly technologiesHadoop trainting-in-hyderabad@kelly technologies
Hadoop trainting-in-hyderabad@kelly technologies
 
Hadoop training-in-hyderabad
Hadoop training-in-hyderabadHadoop training-in-hyderabad
Hadoop training-in-hyderabad
 
Data science training institute in hyderabad
Data science training institute in hyderabadData science training institute in hyderabad
Data science training institute in hyderabad
 
Data science institutes in hyderabad
Data science institutes in hyderabadData science institutes in hyderabad
Data science institutes in hyderabad
 
Data science training in hyderabad
Data science training in hyderabadData science training in hyderabad
Data science training in hyderabad
 
Hadoop training institute in hyderabad
Hadoop training institute in hyderabadHadoop training institute in hyderabad
Hadoop training institute in hyderabad
 
Hadoop institutes in hyderabad
Hadoop institutes in hyderabadHadoop institutes in hyderabad
Hadoop institutes in hyderabad
 
Hadoop training in hyderabad-kellytechnologies
Hadoop training in hyderabad-kellytechnologiesHadoop training in hyderabad-kellytechnologies
Hadoop training in hyderabad-kellytechnologies
 
Websphere mb training in hyderabad
Websphere mb training in hyderabadWebsphere mb training in hyderabad
Websphere mb training in hyderabad
 
Hadoop institutes-in-bangalore
Hadoop institutes-in-bangaloreHadoop institutes-in-bangalore
Hadoop institutes-in-bangalore
 
Oracle training-institutes-in-hyderabad
Oracle training-institutes-in-hyderabadOracle training-institutes-in-hyderabad
Oracle training-institutes-in-hyderabad
 
Hadoop training institutes in bangalore
Hadoop training institutes in bangaloreHadoop training institutes in bangalore
Hadoop training institutes in bangalore
 
Hadoop training institute in bangalore
Hadoop training institute in bangaloreHadoop training institute in bangalore
Hadoop training institute in bangalore
 
Tableau training in bangalore
Tableau training in bangaloreTableau training in bangalore
Tableau training in bangalore
 
Salesforce crm-training-in-bangalore
Salesforce crm-training-in-bangaloreSalesforce crm-training-in-bangalore
Salesforce crm-training-in-bangalore
 
Oracle training in hyderabad
Oracle training in hyderabadOracle training in hyderabad
Oracle training in hyderabad
 
Qlikview training in hyderabad
Qlikview training in hyderabadQlikview training in hyderabad
Qlikview training in hyderabad
 
Spark training-in-bangalore
Spark training-in-bangaloreSpark training-in-bangalore
Spark training-in-bangalore
 
Project Management Planning training in hyderabad
Project Management Planning training in hyderabadProject Management Planning training in hyderabad
Project Management Planning training in hyderabad
 

KĂŒrzlich hochgeladen

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

KĂŒrzlich hochgeladen (20)

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 

Sas training in hyderabad

  • 2. Agenda Introduction to SAS Software Program Data preparation & Tabulation Test of Difference: T-test, and ANOVA Test of Association: Correlation & Regression Analysis www.kellytechno.com
  • 4. SAS From traditional statistical analysis of variance and predictive modeling to exact methods and statistical visualization techniques, SAS/STAT software is designed for both specialized and enterprise wide analytical needs. SAS/STAT software provides a complete, comprehensive set of tools that can meet the data analysis needs of the entire organization. www.kellytechno.com
  • 5. SAS Components SAS Enterprise GuideSAS Enterprise Guide SAS 9.2SAS 9.2 Graphical user interface application for some common basic data analysis tasks. Graphical user interface application for some common basic data analysis tasks. Command-based application for a wide variety of data analysis tasks. Command-based application for a wide variety of data analysis tasks. www.kellytechno.com
  • 6. SAS Enterprise Guide To open the statistical software package SAS go to the Start Menu >>> All Programs >>> SAS >>> SAS Enterprise Guide 4.3 www.kellytechno.com
  • 7. SAS 9.2 To open the statistical software package SAS go to the Start Menu >> All Program >> SAS >> SAS 9.2 (English) www.kellytechno.com
  • 8. What Is SAS Enterprise Guide? What Is SAS Enterprise Guide? SAS Enterprise Guide is an easy-to-use Windows client application that provides these features: – access to much of the functionality of SAS – an intuitive, visual, customizable interface – transparent access to data – ready-to-use tasks for analysis and reporting – easy ways to export data and results to other applications – scripting and automation – a program editor with syntax completion and built-in function help www.kellytechno.com
  • 9. Explore the Main Windows 1 2 3 www.kellytechno.com
  • 10. Create a Project for This TutorialIf SAS Enterprise Guide is not open, start it now. In the Welcome window, select New Project. If SAS Enterprise Guide is already open, select File >> New Project. If you already had a project open in SAS Enterprise Guide, you might be prompted to save the project. Select the appropriate response. The new project opens with an empty Process Flow window. www.kellytechno.com
  • 11. 1. The Project TreeYou can use the Project Tree window to manage the objects in your project. You can delete, rename, and reorder the items in the project. You can also run a process flow or schedule a process flow to run at a particular time. www.kellytechno.com
  • 12. 2. Workspace and Process Flow Windows You can have one or more process flows in your project. When you create a new project, an empty Process Flow window opens. As you add data, run tasks, and generate output, an icon for each object is added to the process flow. The process flow displays the objects in a project, any relationships that exist between the objects, and the order in which the objects will run when you run the process flow. www.kellytechno.com
  • 13. 3. The Task List You can use tasks to do everything from manipulating data, to running specific analytical procedures, to creating reports. Many tasks are also available as wizards, which contain a limited number of options and can provide a quick and easy way to use some of the tasks. www.kellytechno.com
  • 14. Add SAS Data to the Project You can add SAS data files and other types of files, including OLAP cubes, information maps, ODBC- compliant data, and files that are created by other software packages, such as Microsoft Word or Microsoft Excel. www.kellytechno.com
  • 15. SAS Enterprise Guide requires all data that it accesses to be in table format. A table is a rectangular arrangement of rows (also called observations) and columns (also called variables). Name Gender Age Weight Jones M 48 128.6 Laverne M 58 158.3 Jaffe F . 115.5 Wilson M 28 170.1 www.kellytechno.com
  • 16. ‱ a column's type is important because it affects how the column can be used in a SAS Enterprise Guide task. A column's type can be either character or numeric. ‱ Character variables, such as Name and Gender in the preceding data set, can contain any values. Missing character values are represented by a blank. ‱ Numeric variables, such as Age and Weight in the preceding data set, can contain only numeric values. Currency, date, and time data is stored as numeric variables. Missing numeric values are represented by a period.Name Gender Age Weight Jones M 48 128.6 Laverne M 58 158.3 Jaffe F . 115.5 Wilson M 28 170.1 www.kellytechno.com
  • 17. Local and Remote DataWhen you open data in SAS Enterprise Guide, you must select whether you want to look for the data on your local computer, a SAS server, or in a SAS folder. www.kellytechno.com
  • 18. Local and Remote Data (Cont’) If you click My Computer, you can browse the directory structure of your computer. You can open any type of data file that SAS Enterprise Guide can read. If you click Servers, you can look for your data on a server. A server can either be a local server if SAS software is installed on your own computer, or it can be a remote server if SAS software is installed on a different computer. www.kellytechno.com
  • 19. Open Data from Server Within each server there are icons that you can select for Libraries and Files. Libraries are shortcut names for directory locations that SAS knows about. Some libraries are defined by SAS, and some are defined by SAS Enterprise Guide. Libraries contain only SAS data sets. The Files folder on a server enables you to access data files in the directory structure on the computer where the SAS server is running. For example, if you wanted to open a Microsoft Excel file on a server that is defined in your repository, you would use the Files node to locate and open the file. www.kellytechno.com
  • 20. Open Data from SAS Folders If you click SAS Folders, you can browse the list of SAS folders that you can access. SAS folders are defined in the SAS Metadata Server and can be used to provide a central location for your stored processes, information maps, and projects so that they can be shared with other SAS applications. SAS folders can also contain content that is not in the SAS Metadata Server, such as data files. www.kellytechno.com
  • 21. Add SAS Data from Your Local Computer ‱ Select File >> Open >> Data. In the Open Data window, select My Computer. ‱ Open the SAS Enterprise Guide samples directory and double-click Data. By default, the sample programs, projects, and data are located in C:Program FilesSASEnterpriseGuide4.3Sample. By default, all file types are displayed in the window. Files with the icon are SAS data sets. Press CTRL and select Orders.sd2 and Products.sas7bdat, and then click Open. www.kellytechno.com
  • 22. Add SAS Data from Your Local Computer (Cont’) Shortcuts to the Products and Orders tables are added to the project, and the data sets open in data grids. By default, the tables open in read-only mode. In this mode, you can browse, resize column widths, hide and hold columns and rows, and copy columns and rows to a new table. You cannot edit the data in the table unless you change to edit mode. Select Edit >> Remove Protect Data www.kellytechno.com
  • 23. View the Properties of a Data Set In the project tree, right-click Products and select Properties from the pop-up menu. The Properties for Products window opens. You can see information about general properties such as the physical location of the data and the date it was last modified. www.kellytechno.com
  • 24. View the Properties of a Data Set (Cont’) In the selection pane, click Columns. Here you can view a list of columns in your data and the column attributes. www.kellytechno.com
  • 25. Add Data from a SAS Library ‱ Select File >> Open >> Data. In the Open Data window, select Servers. ‱ Double-click Libraries, and then double-click SASHELP. As you can see, only SAS data sets are stored in libraries ‱ Scroll in the window and double-click the PRDSALE data set. A shortcut to the data is added to the project and the data opens in the data grid. www.kellytechno.com
  • 26. Save the Project‱ Select File >> Save Project As. ‱ The Save window opens and prompts you to choose whether to save the project on your computer or on a server. Select My Computer. ‱ In the Save window, select a location for the project. In the File name box, type ‘your file name’. Project files are saved with the extension .egp. ‱ Click Save. www.kellytechno.com