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

I'm not sure, if I'm allowed to ask this.

I'm trying to translate below program to R code? Can you help? I appreciate your help indeed! Acknowledgement: Reeza helped write rand code below. Thanks Reeza!

 

data today;
input id age_at_msmt_month dob bmi;
cards;
55 12.0 2002 17.1
55 19.4 2002 15.6
55 31.7 2002 17.1
55 45.5 2002 16.8
55 52.3 2002 17.1
21 10.9 2005 16.5
21 19.2 2005 16.6
21 24.5 2005 15.4
11 8.28 2010 16.3
;

data want;
input id age_at_msmt_month dob bmi dob_decimal;
cards;
55 12.0 2002 17.1 2002.36
55 19.4 2002 15.6 2002.36
55 31.7 2002 17.1 2002.36
55 45.5 2002 16.8 2002.36
55 52.3 2002 17.1 2002.36
21 10.9 2005 16.5 2005.89
21 19.2 2005 16.6 2005.89
21 24.5 2005 15.4 2005.89
11 8.28 2010 16.3 2010.12
;

data want;
set today;
by id ;
retain rand;
if first.id then do;
rand =round( ceil( rand('uniform')*100)/100, 0.01);
end;

dob_rand = dob+rand;
run;

 Acknow 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
You're allowed to ask, just unlikely to get an answer. I'd probably post it to an R forum instead.

View solution in original post

6 REPLIES 6
Reeza
Super User
You're allowed to ask, just unlikely to get an answer. I'd probably post it to an R forum instead.
nayakig
Obsidian | Level 7
Did Reeza just say "unlikely to get an answer", I think this is the first time you said something like this, you know everything !


Reeza
Super User

lol...not by a long shot 😄

 


@nayakig wrote:
Did Reeza just say "unlikely to get an answer", I think this is the first time you said something like this, you know everything !



 

Cruise
Ammonite | Level 13
I know 🙂 Reeza consults for R language too 🙂
Reeza
Super User

I do, but that I charge for 😉

Sadly this is not my full time job and I should actually be doing that!


@Cruise wrote:
I know 🙂 Reeza consults for R language too 🙂

 

Cruise
Ammonite | Level 13
Reeza, do you tutor doctoral students on programming in R for payment? I'm using age-period-cohort modelling for my dissertation project. Let me know if that's what you're familiar with. We can private chat as well if needed.

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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