This study analyzed the quality of work life of employees at Steel Authority of India Limited's Salem Steel Plant using SAS software. Two datasets on various factors affecting quality of work life were imported and merged into one dataset of 79 observations. Descriptive statistics, frequency analysis, correlation, regression, and ANOVA were conducted on variables like welfare, employee compensation, motivation, career development, human resource practices, and safety. The results provided insights into the relationship between these factors and quality of work life categories.
1 of 15
Download to read offline
More Related Content
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;
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;