BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Lien728
Calcite | Level 5


How do I convert a variable that has data given in number of days, to have an output with number of hours?

Example:

Variable Name- Length_of_stay

datalines;

1.5

2

1

0.5

6

;

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Assuming length_of_stay represents days then the short answer would be

Length_of_stay_hours = Length_of_stay *24;

However if your application has to consider the fraction time that yields leap days and such we get into more complex intervals.

View solution in original post

3 REPLIES 3
ballardw
Super User

Assuming length_of_stay represents days then the short answer would be

Length_of_stay_hours = Length_of_stay *24;

However if your application has to consider the fraction time that yields leap days and such we get into more complex intervals.

Lien728
Calcite | Level 5


That works perfectly!

However, the only problem I am having, is that it sets my first observation to missing (represented by a '.'), and then starts at the beginning for the second observation.

This is what I mean,

datalines;

1.5

2

1

0.5

6

;

Output reads:

.

36

48

24

12

How do I fix this?

Lien728
Calcite | Level 5

Nevermind, I figured it out and it was all about placement.

I had to place Length_of_stay_hours= Length_of_stay*24; right after my set statement.

Thanks a ton!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2051 views
  • 0 likes
  • 2 in conversation