BookmarkSubscribeRSS Feed
jameswangld0
Calcite | Level 5

A company suspects that the number of sick days taken by a particular employee is dependent on the employee’s work load and the number of public holidays within each month. Human Resources have compiled data on the number of sick days taken by this employee per month for the last three years.

Variable Name                Description

Month                            The month in which the sick leave was taken

Year                               The year in which the sick leave was taken

WorkDays                      The number of working days in the given month/year

PubHols                          A dummy variable indicating whether there were any public holidays in the given month/year 0 No 1 Yes WorkLoad                       A normalised variable, centred at zero, measuring the work load of the employee, relative to the average,                                           in the given month/year

SickDays                        The number of sick days taken by the employee in the given month/year

The company has asked you to assess whether there is any evidence to support their suspicions that the employee is choosing to take sick leave based on his work load and/or public holidays.

What is the most appropriate model to use in this setting?  

I am very confused this, how to get there

4 REPLIES 4
Reeza
Super User

This is a statistical methodology question and not a SAS question. 

 

It's also clearly a homework question. 

 

Heres a table that can help to narrow down your selection. A common restriction is what you've learned in class. 

 

http://www.ats.ucla.edu/stat/sas/whatstat/default.htm

 

Determining the type of analysis is the hardest part of Analytics. 

jameswangld0
Calcite | Level 5

proc logistic data=mydata.sick descending;
model sickdays=workdays workload pubhols / link = glogit aggregate=(workdays workload) scale
= none;
run;

I used this code to try to get answer, data fits well but the coefficient of the model are not significant, i just stuck.

Reeza
Super User

If you need to factor in time, I assume some sort of time series analysis would be appropriate?

Ksharp
Super User

Poission Regression

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1002 views
  • 0 likes
  • 3 in conversation