SlideShare a Scribd company logo
A Study on “QUALITY OF WORK LIFE OF EMPLOYEES” At
STEEL AUTHORITY OF INDIA LIMTED,
SALEM STEEL PLANT [SSP] USING SAS
By
Monica GS
Importing two different data and merging
Proc import datafile="E:trim 5James Sir -
SAPSailQWL1.xls"
out=work.QWL1;
run;
Proc import datafile="E:trim 5James Sir -
SAPSailQWL2.xls"
out=work.QWL2;
run;
Proc sql;
create table work.model as
select *
from work.QWL1, work.QWL2
where QWL1.CATEGORY=QWL2.CATEGORY
order by QWL1.SLNO;
quit;
File 1
File 2
The FREQ Procedure
CATEGORY
CATEGORY Frequency Percent
Cumulative
Frequency
Cumulative
Percent
1 28 35.44 28 35.44
2 51 64.56 79 100.00
proc freq data = work.model;
tables CATEGORY;
run;
frequency
proc means data =work.model;
var WELFARE INDUSTRIALRELATIONSHIP EMPLOYEECOMPENSATION
EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY;
run;
he MEANS Procedure
Variable Label N Mean Std Dev Minimum Maximum
WELFARE
INDUSTRIA
LRELATION
SHIP
EMPLOYEE
COMPENSA
TION
EMPLOYEE
MOTIVATIO
N
CAREERDE
VELOPMEN
T
HRP
SAFETY
WELFARE
INDUSTRIA
LRELATION
SHIP
EMPLOYEE
COMPENSA
TION
EMPLOYEE
MOTIVATIO
N
CAREERDE
VELOPMEN
T
HRP
SAFETY
79
79
79
79
79
79
79
3.9240506
3.4683544
3.6708861
3.4810127
3.8481013
3.7468354
4.0506329
0.6154455
0.7980014
0.6349141
0.7313626
0.7176995
0.6692582
0.7662552
3.0000000
2.0000000
2.0000000
2.0000000
3.0000000
2.0000000
3.0000000
5.0000000
5.0000000
5.0000000
5.0000000
5.0000000
5.0000000
5.0000000
DESCRIPTIVE STATISTICS
proc freq data =work.model;
tables WELFARE * CATEGORY/chisq;
run;
proc freq data =work.model;
tables INDUSTRIALRELATIONSHIP * CATEGORY/chisq;
run;
proc freq data =work.model;
tables EMPLOYEECOMPENSATION * CATEGORY/chisq;
run;
proc freq data =work.model;
tables EMPLOYEEMOTIVATION * CATEGORY/chisq;
run;
proc freq data =work.model;
tables CAREERDEVELOPMENT * CATEGORY/chisq;
run;
proc freq data =work.model;
tables HRP * CATEGORY/chisq;
run;
proc freq data =work.model;
tables SAFETY * CATEGORY/chisq;
run;
Chisq
Table of CAREERDEVELOPMENT by CATEGORY
CAREERDEVEL
OPMENT(CAR
EERDEVELOP
MENT)
CATEGORY(CATEGORY)
Total
1 2
3 12
15.19
44.44
42.86
15
18.99
55.56
29.41
27
34.18
 
 
4 10
12.66
27.03
35.71
27
34.18
72.97
52.94
37
46.84
 
 
5 6
7.59
40.00
21.43
9
11.39
60.00
17.65
15
18.99
 
 
Total 28
35.44
51
64.56
79
100.00
Statistic DF Value Prob
Chi-Square 2 2.2376 0.3267
Likelihood
Ratio Chi-
Square
2 2.2558 0.3237
Mantel-
Haenszel Chi-
Square
1 0.3277 0.5670
Phi Coefficient   0.1683  
Contingency
Coefficient
  0.1660  
Cramer's V   0.1683
proc corr data =work.model;
var WELFARE INDUSTRIALRELATIONSHIP
EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION
CAREERDEVELOPMENT HRP SAFETY;
run;
proc reg data =work.model;
model CATEGORY = WELFARE INDUSTRIALRELATIONSHIP
EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION
CAREERDEVELOPMENT HRP SAFETY;
run;
proc anova data =work.model;
class CATEGORY;
model WELFARE INDUSTRIALRELATIONSHIP
EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION
CAREERDEVELOPMENT HRP SAFETY = CATEGORY;
run;
Correlation/regression/anova
Correlation Output
Pearson Correlation Coefficients, N = 79
Prob > |r| under H0: Rho=0
WELFARE
INDUSTRIALRELATION
SHIP
EMPLOYEECOMPENSAT
ION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY
WELFARE
WELFARE
1.00000
 
0.54323
<.0001
0.29612
0.0081
0.45248
<.0001
0.32185
0.0038
0.54411
<.0001
0.41605
0.0001
INDUSTRIALRELATION
SHIP
INDUSTRIALRELATION
SHIP
0.54323
<.0001
1.00000
 
0.56117
<.0001
0.64149
<.0001
0.43920
<.0001
0.58494
<.0001
0.38005
0.0006
EMPLOYEECOMPENSAT
ION
EMPLOYEECOMPENSAT
ION
0.29612
0.0081
0.56117
<.0001
1.00000
 
0.53856
<.0001
0.50786
<.0001
0.37466
0.0007
0.45633
<.0001
EMPLOYEEMOTIVATIO
N
EMPLOYEEMOTIVATIO
N
0.45248
<.0001
0.64149
<.0001
0.53856
<.0001
1.00000
 
0.67833
<.0001
0.64487
<.0001
0.57366
<.0001
CAREERDEVELOPMENT
CAREERDEVELOPMENT
0.32185
0.0038
0.43920
<.0001
0.50786
<.0001
0.67833
<.0001
1.00000
 
0.66627
<.0001
0.64360
<.0001
HRP
HRP
0.54411
<.0001
0.58494
<.0001
0.37466
0.0007
0.64487
<.0001
0.66627
<.0001
1.00000
 
0.60031
<.0001
SAFETY
SAFETY
0.41605
0.0001
0.38005
0.0006
0.45633
<.0001
Regression Output
ANOVA Output
Source DF
Sum of
Squares
Mean
Square F Value Pr > F
Model 1
1.504662
62
1.504662
62
3.87 0.0528
Error 77
29.93837
535
0.388810
07
   
Correcte
d Total
78
31.44303
797
     
R-Square Coeff Var Root MSE
EMPLOYEECO
MPENSATION
Mean
0.047854 16.98626 0.623546 3.670886
Source DF Anova SS
Mean
Square F Value Pr > F
CATEGOR
Y
1
1.504662
62
1.504662
62
3.87 0.0528
Webpage and PDF Coding
ods pdf file= 'E:trim 5James Sir - SAPSailSas assignment.pdf';
startpage = 1;
ods pdf text = "SAS ASSIGNMENT-13MBA1042";
ods pdf close;
run;
quit;
ods html file= 'E:trim 5James Sir - SAPSailSas assignment.html';
:::::::::
:::::::::
:::::::::
ods html close;
run;
quit;
Thank you

More Related Content

Viewers also liked

Performance analysis of wireless mobile network
Performance analysis of wireless mobile networkPerformance analysis of wireless mobile network
Performance analysis of wireless mobile network
Bode Idowu-Bismark
 
Empathy map
Empathy mapEmpathy map
Empathy map
Andrew Lo
 
OPERATIONS RESEARCH (OR)CLASSES
OPERATIONS RESEARCH (OR)CLASSES OPERATIONS RESEARCH (OR)CLASSES
OPERATIONS RESEARCH (OR)CLASSES
SOURAV DAS
 
Ideate
IdeateIdeate
260616 横浜・神奈川odフォーラム 分科会2_ちばレポ
260616 横浜・神奈川odフォーラム 分科会2_ちばレポ260616 横浜・神奈川odフォーラム 分科会2_ちばレポ
260616 横浜・神奈川odフォーラム 分科会2_ちばレポRyuichi Matsushima
 
Demo deck truckee
Demo deck truckeeDemo deck truckee
Demo deck truckee
OpenCounter
 
introduction to java-final with Unit Nexus
introduction to java-final with Unit Nexus introduction to java-final with Unit Nexus
introduction to java-final with Unit Nexus
Unit Nexus Pvt. Ltd.
 
Empathize and define
Empathize and defineEmpathize and define
Empathize and define
Dhanusuya Raman
 
Harley davidson india
Harley davidson indiaHarley davidson india
Harley davidson india
Vikas Gurudu
 
Marissa parker
Marissa parkerMarissa parker
Marissa parker
marissajane8
 
Empathy map
Empathy mapEmpathy map
Empathy map
Andy Beaulieu
 
Postbudet
PostbudetPostbudet
Postbudetstinemp
 
龔建嘉2014 ted報名
龔建嘉2014 ted報名龔建嘉2014 ted報名
龔建嘉2014 ted報名
建嘉 龔
 

Viewers also liked (13)

Performance analysis of wireless mobile network
Performance analysis of wireless mobile networkPerformance analysis of wireless mobile network
Performance analysis of wireless mobile network
 
Empathy map
Empathy mapEmpathy map
Empathy map
 
OPERATIONS RESEARCH (OR)CLASSES
OPERATIONS RESEARCH (OR)CLASSES OPERATIONS RESEARCH (OR)CLASSES
OPERATIONS RESEARCH (OR)CLASSES
 
Ideate
IdeateIdeate
Ideate
 
260616 横浜・神奈川odフォーラム 分科会2_ちばレポ
260616 横浜・神奈川odフォーラム 分科会2_ちばレポ260616 横浜・神奈川odフォーラム 分科会2_ちばレポ
260616 横浜・神奈川odフォーラム 分科会2_ちばレポ
 
Demo deck truckee
Demo deck truckeeDemo deck truckee
Demo deck truckee
 
introduction to java-final with Unit Nexus
introduction to java-final with Unit Nexus introduction to java-final with Unit Nexus
introduction to java-final with Unit Nexus
 
Empathize and define
Empathize and defineEmpathize and define
Empathize and define
 
Harley davidson india
Harley davidson indiaHarley davidson india
Harley davidson india
 
Marissa parker
Marissa parkerMarissa parker
Marissa parker
 
Empathy map
Empathy mapEmpathy map
Empathy map
 
Postbudet
PostbudetPostbudet
Postbudet
 
龔建嘉2014 ted報名
龔建嘉2014 ted報名龔建嘉2014 ted報名
龔建嘉2014 ted報名
 

Similar to SAS coding for analysis-Using SAIL company's (HR) data

Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
Chakkrit (Kla) Tantithamthavorn
 
curve fitting or regression analysis-1.pptx
curve fitting or regression analysis-1.pptxcurve fitting or regression analysis-1.pptx
curve fitting or regression analysis-1.pptx
abelmeketa
 
Application of recursive perturbation approach for multimodal optimization
Application of recursive perturbation approach for multimodal optimizationApplication of recursive perturbation approach for multimodal optimization
Application of recursive perturbation approach for multimodal optimization
Pranamesh Chakraborty
 
Julia: The language for future
Julia: The language for futureJulia: The language for future
Julia: The language for future
岳華 杜
 
Aaron Bedra - Effective Software Security Teams
Aaron Bedra - Effective Software Security TeamsAaron Bedra - Effective Software Security Teams
Aaron Bedra - Effective Software Security Teams
centralohioissa
 
Linear models
Linear modelsLinear models
Linear models
FAO
 
Dynamically Evolving Systems: Cluster Analysis Using Time
Dynamically Evolving Systems: Cluster Analysis Using TimeDynamically Evolving Systems: Cluster Analysis Using Time
Dynamically Evolving Systems: Cluster Analysis Using Time
Magnify Analytic Solutions
 
Java Performance Puzzlers
Java Performance PuzzlersJava Performance Puzzlers
Java Performance Puzzlers
Doug Hawkins
 
The Language for future-julia
The Language for future-juliaThe Language for future-julia
The Language for future-julia
岳華 杜
 
Fuzzy Control meets Software Engineering
Fuzzy Control meets Software EngineeringFuzzy Control meets Software Engineering
Fuzzy Control meets Software Engineering
Pooyan Jamshidi
 
The Ring programming language version 1.6 book - Part 69 of 189
The Ring programming language version 1.6 book - Part 69 of 189The Ring programming language version 1.6 book - Part 69 of 189
The Ring programming language version 1.6 book - Part 69 of 189
Mahmoud Samir Fayed
 
12. Linear models
12. Linear models12. Linear models
12. Linear models
ExternalEvents
 
Here is the company database for the problem--commen.pdf
Here is the company database for the problem--commen.pdfHere is the company database for the problem--commen.pdf
Here is the company database for the problem--commen.pdf
fazilfootsteps
 
11. Linear Models
11. Linear Models11. Linear Models
11. Linear Models
FAO
 
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
PgDay.Seoul
 
The Ring programming language version 1.5.1 book - Part 63 of 180
The Ring programming language version 1.5.1 book - Part 63 of 180The Ring programming language version 1.5.1 book - Part 63 of 180
The Ring programming language version 1.5.1 book - Part 63 of 180
Mahmoud Samir Fayed
 
Here is the company database--comments can be addedD.pdf
Here is the company database--comments can be addedD.pdfHere is the company database--comments can be addedD.pdf
Here is the company database--comments can be addedD.pdf
fckindswear
 
Image Recognition on Streaming Data
Image Recognition  on Streaming DataImage Recognition  on Streaming Data
Image Recognition on Streaming Data
SingleStore
 
The Ring programming language version 1.2 book - Part 79 of 84
The Ring programming language version 1.2 book - Part 79 of 84The Ring programming language version 1.2 book - Part 79 of 84
The Ring programming language version 1.2 book - Part 79 of 84
Mahmoud Samir Fayed
 
Oracle 11g new features for developers
Oracle 11g new features for developersOracle 11g new features for developers
Oracle 11g new features for developers
Scott Wesley
 

Similar to SAS coding for analysis-Using SAIL company's (HR) data (20)

Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
Software Analytics In Action: A Hands-on Tutorial on Mining, Analyzing, Model...
 
curve fitting or regression analysis-1.pptx
curve fitting or regression analysis-1.pptxcurve fitting or regression analysis-1.pptx
curve fitting or regression analysis-1.pptx
 
Application of recursive perturbation approach for multimodal optimization
Application of recursive perturbation approach for multimodal optimizationApplication of recursive perturbation approach for multimodal optimization
Application of recursive perturbation approach for multimodal optimization
 
Julia: The language for future
Julia: The language for futureJulia: The language for future
Julia: The language for future
 
Aaron Bedra - Effective Software Security Teams
Aaron Bedra - Effective Software Security TeamsAaron Bedra - Effective Software Security Teams
Aaron Bedra - Effective Software Security Teams
 
Linear models
Linear modelsLinear models
Linear models
 
Dynamically Evolving Systems: Cluster Analysis Using Time
Dynamically Evolving Systems: Cluster Analysis Using TimeDynamically Evolving Systems: Cluster Analysis Using Time
Dynamically Evolving Systems: Cluster Analysis Using Time
 
Java Performance Puzzlers
Java Performance PuzzlersJava Performance Puzzlers
Java Performance Puzzlers
 
The Language for future-julia
The Language for future-juliaThe Language for future-julia
The Language for future-julia
 
Fuzzy Control meets Software Engineering
Fuzzy Control meets Software EngineeringFuzzy Control meets Software Engineering
Fuzzy Control meets Software Engineering
 
The Ring programming language version 1.6 book - Part 69 of 189
The Ring programming language version 1.6 book - Part 69 of 189The Ring programming language version 1.6 book - Part 69 of 189
The Ring programming language version 1.6 book - Part 69 of 189
 
12. Linear models
12. Linear models12. Linear models
12. Linear models
 
Here is the company database for the problem--commen.pdf
Here is the company database for the problem--commen.pdfHere is the company database for the problem--commen.pdf
Here is the company database for the problem--commen.pdf
 
11. Linear Models
11. Linear Models11. Linear Models
11. Linear Models
 
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
[Pgday.Seoul 2021] 2. Porting Oracle UDF and Optimization
 
The Ring programming language version 1.5.1 book - Part 63 of 180
The Ring programming language version 1.5.1 book - Part 63 of 180The Ring programming language version 1.5.1 book - Part 63 of 180
The Ring programming language version 1.5.1 book - Part 63 of 180
 
Here is the company database--comments can be addedD.pdf
Here is the company database--comments can be addedD.pdfHere is the company database--comments can be addedD.pdf
Here is the company database--comments can be addedD.pdf
 
Image Recognition on Streaming Data
Image Recognition  on Streaming DataImage Recognition  on Streaming Data
Image Recognition on Streaming Data
 
The Ring programming language version 1.2 book - Part 79 of 84
The Ring programming language version 1.2 book - Part 79 of 84The Ring programming language version 1.2 book - Part 79 of 84
The Ring programming language version 1.2 book - Part 79 of 84
 
Oracle 11g new features for developers
Oracle 11g new features for developersOracle 11g new features for developers
Oracle 11g new features for developers
 

Recently uploaded

Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Leena Ghag-Sakpal
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
ZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptxZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptx
dot55audits
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
Solutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptxSolutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptx
spdendr
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 

Recently uploaded (20)

Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
ZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptxZK on Polkadot zero knowledge proofs - sub0.pptx
ZK on Polkadot zero knowledge proofs - sub0.pptx
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
Solutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptxSolutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptx
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 

SAS coding for analysis-Using SAIL company's (HR) data

  • 1. A Study on “QUALITY OF WORK LIFE OF EMPLOYEES” At STEEL AUTHORITY OF INDIA LIMTED, SALEM STEEL PLANT [SSP] USING SAS By Monica GS
  • 2. Importing two different data and merging Proc import datafile="E:trim 5James Sir - SAPSailQWL1.xls" out=work.QWL1; run; Proc import datafile="E:trim 5James Sir - SAPSailQWL2.xls" out=work.QWL2; run; Proc sql; create table work.model as select * from work.QWL1, work.QWL2 where QWL1.CATEGORY=QWL2.CATEGORY order by QWL1.SLNO; quit;
  • 5. The FREQ Procedure CATEGORY CATEGORY Frequency Percent Cumulative Frequency Cumulative Percent 1 28 35.44 28 35.44 2 51 64.56 79 100.00 proc freq data = work.model; tables CATEGORY; run; frequency
  • 6. proc means data =work.model; var WELFARE INDUSTRIALRELATIONSHIP EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY; run; he MEANS Procedure Variable Label N Mean Std Dev Minimum Maximum WELFARE INDUSTRIA LRELATION SHIP EMPLOYEE COMPENSA TION EMPLOYEE MOTIVATIO N CAREERDE VELOPMEN T HRP SAFETY WELFARE INDUSTRIA LRELATION SHIP EMPLOYEE COMPENSA TION EMPLOYEE MOTIVATIO N CAREERDE VELOPMEN T HRP SAFETY 79 79 79 79 79 79 79 3.9240506 3.4683544 3.6708861 3.4810127 3.8481013 3.7468354 4.0506329 0.6154455 0.7980014 0.6349141 0.7313626 0.7176995 0.6692582 0.7662552 3.0000000 2.0000000 2.0000000 2.0000000 3.0000000 2.0000000 3.0000000 5.0000000 5.0000000 5.0000000 5.0000000 5.0000000 5.0000000 5.0000000 DESCRIPTIVE STATISTICS
  • 7. proc freq data =work.model; tables WELFARE * CATEGORY/chisq; run; proc freq data =work.model; tables INDUSTRIALRELATIONSHIP * CATEGORY/chisq; run; proc freq data =work.model; tables EMPLOYEECOMPENSATION * CATEGORY/chisq; run; proc freq data =work.model; tables EMPLOYEEMOTIVATION * CATEGORY/chisq; run; proc freq data =work.model; tables CAREERDEVELOPMENT * CATEGORY/chisq; run; proc freq data =work.model; tables HRP * CATEGORY/chisq; run; proc freq data =work.model; tables SAFETY * CATEGORY/chisq; run; Chisq
  • 8. Table of CAREERDEVELOPMENT by CATEGORY CAREERDEVEL OPMENT(CAR EERDEVELOP MENT) CATEGORY(CATEGORY) Total 1 2 3 12 15.19 44.44 42.86 15 18.99 55.56 29.41 27 34.18     4 10 12.66 27.03 35.71 27 34.18 72.97 52.94 37 46.84     5 6 7.59 40.00 21.43 9 11.39 60.00 17.65 15 18.99     Total 28 35.44 51 64.56 79 100.00
  • 9. Statistic DF Value Prob Chi-Square 2 2.2376 0.3267 Likelihood Ratio Chi- Square 2 2.2558 0.3237 Mantel- Haenszel Chi- Square 1 0.3277 0.5670 Phi Coefficient   0.1683   Contingency Coefficient   0.1660   Cramer's V   0.1683
  • 10. proc corr data =work.model; var WELFARE INDUSTRIALRELATIONSHIP EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY; run; proc reg data =work.model; model CATEGORY = WELFARE INDUSTRIALRELATIONSHIP EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY; run; proc anova data =work.model; class CATEGORY; model WELFARE INDUSTRIALRELATIONSHIP EMPLOYEECOMPENSATION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY = CATEGORY; run; Correlation/regression/anova
  • 11. Correlation Output Pearson Correlation Coefficients, N = 79 Prob > |r| under H0: Rho=0 WELFARE INDUSTRIALRELATION SHIP EMPLOYEECOMPENSAT ION EMPLOYEEMOTIVATION CAREERDEVELOPMENT HRP SAFETY WELFARE WELFARE 1.00000   0.54323 <.0001 0.29612 0.0081 0.45248 <.0001 0.32185 0.0038 0.54411 <.0001 0.41605 0.0001 INDUSTRIALRELATION SHIP INDUSTRIALRELATION SHIP 0.54323 <.0001 1.00000   0.56117 <.0001 0.64149 <.0001 0.43920 <.0001 0.58494 <.0001 0.38005 0.0006 EMPLOYEECOMPENSAT ION EMPLOYEECOMPENSAT ION 0.29612 0.0081 0.56117 <.0001 1.00000   0.53856 <.0001 0.50786 <.0001 0.37466 0.0007 0.45633 <.0001 EMPLOYEEMOTIVATIO N EMPLOYEEMOTIVATIO N 0.45248 <.0001 0.64149 <.0001 0.53856 <.0001 1.00000   0.67833 <.0001 0.64487 <.0001 0.57366 <.0001 CAREERDEVELOPMENT CAREERDEVELOPMENT 0.32185 0.0038 0.43920 <.0001 0.50786 <.0001 0.67833 <.0001 1.00000   0.66627 <.0001 0.64360 <.0001 HRP HRP 0.54411 <.0001 0.58494 <.0001 0.37466 0.0007 0.64487 <.0001 0.66627 <.0001 1.00000   0.60031 <.0001 SAFETY SAFETY 0.41605 0.0001 0.38005 0.0006 0.45633 <.0001
  • 13. ANOVA Output Source DF Sum of Squares Mean Square F Value Pr > F Model 1 1.504662 62 1.504662 62 3.87 0.0528 Error 77 29.93837 535 0.388810 07     Correcte d Total 78 31.44303 797       R-Square Coeff Var Root MSE EMPLOYEECO MPENSATION Mean 0.047854 16.98626 0.623546 3.670886 Source DF Anova SS Mean Square F Value Pr > F CATEGOR Y 1 1.504662 62 1.504662 62 3.87 0.0528
  • 14. Webpage and PDF Coding ods pdf file= 'E:trim 5James Sir - SAPSailSas assignment.pdf'; startpage = 1; ods pdf text = "SAS ASSIGNMENT-13MBA1042"; ods pdf close; run; quit; ods html file= 'E:trim 5James Sir - SAPSailSas assignment.html'; ::::::::: ::::::::: ::::::::: ods html close; run; quit;