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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

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
  • 3 replies
  • 1747 views
  • 0 likes
  • 2 in conversation