BookmarkSubscribeRSS Feed
deleted_user
Not applicable
My question is probably very naive as I am a newbie:

Say I have a data set with one variable and 10 observations - call this variable a "base". I want to create a new variable based on the existing data set call this variable "new". Observations in "new" should be calculated from "base" - say "new" = "base" (observation i+1) * "base" (observation i).

Another question is how to create a new variable that will include all the observations from the base starting with observation i from "base" ?
2 REPLIES 2
deleted_user
Not applicable
Found the answer in different Forum/Category

here is the link to Cynthia@SAS post:
http://support.sas.com/forums/thread.jspa?threadID=1400&tstart=90
RafiRahi
Fluorite | Level 6

Hi rossu12,

I have put some code below which should answer your query. If anything is not clear let me know.

All the best.

Rafi

* Example dataset based on the information you gave;

DATA original;

  DO base= 1 TO 10;

    OUTPUT;

  END;

RUN;

* Create new variable 'new' based on variable 'base', _N_ is the automatic macro variable which hold the value of observation number that is being processed from

  input dataset (original), It can be used to count observation number as well;

DATA newds;

  SET original;

  new = (base*(_N_+1)) *  (base*(_N_));

RUN;

Rafi Rahi

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
  • 2 replies
  • 784 views
  • 1 like
  • 2 in conversation