BookmarkSubscribeRSS Feed
SamuelRajKandru
Quartz | Level 8

Is there any difference in the terms RECORD and OBSERVATION? Because the book says Input buffer holds a RECORD and PDV is the place where SAS holds an OBSERVATION. I'm thinking both the terms mean the same. Please help me if I'm wrong.


Inputbuffer.jpg
2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

It seems to be quite clearly stated in the book there.  It referes to a "record" only when importing from a raw file.  The reason is because one observation may be split over many rows, you could read in row after row and then finally when you have all the information output the observation.  Take this example:

Name=abcde, surname=ghty

addr_line1=12 somewhere

addr_line2=earth

 

Now that is all one observation, but appears in 3 input records and to read it, you would hold the pointer over the line and continue until you had read the final data element.

Astounding
PROC Star

Going by my experience (not documented anywhere), there is no difference.  SAS tends to use the word OBSERVATION when talking about a record within a SAS data set, and RECORD when talking about a row of data from any other type of data.

 

While it's true that many raw data records can be combined into a single SAS observation, many other possibilities exist.  Just to list a few:

 

  • Creating multiple observations in a SAS data set from a single record of raw data
  • Creating multiple observations in an output SAS data set from a single observation within an incoming SAS data set
  • Combining multiple observations from a SAS data set into a single observation in an output SAS data set

If you were to be specific about the type of data (SAS data set vs. raw data vs. some other type of data), and whether the file you are talking about is an input file or an output file, there would be no difference between RECORD and OBSERVATION.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1274 views
  • 5 likes
  • 3 in conversation