BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
cnn96
Fluorite | Level 6

Hello people

i am currently trying to solve a problem, but have not managed so far. i am quite new to programming, so it may also be that the solution is very simple.

I have the following table:

2023-02-02 144928.png

My goal is to have only those on my new list that have only one entry.

Can someone please help me here?

Best thanks in advance

cnn

1 ACCEPTED SOLUTION

Accepted Solutions
CarmineVerrell
SAS Employee

The way i would tackle this would be with the datastep.

You would need to first sort the data with a proc sort

 

proc sort data=test ;

by patientid;

run;

 

data test2;

    set test;

    by patientid;

    if first.patientid=1 and last.patientid=1;

run;

I would recommend you take the elearning programming 1 course on our website. Its free and you will learn lots of great things to start using SAS. Here is a link SAS Training in the United States -- SAS® Programming 1: Essentials

 

View solution in original post

1 REPLY 1
CarmineVerrell
SAS Employee

The way i would tackle this would be with the datastep.

You would need to first sort the data with a proc sort

 

proc sort data=test ;

by patientid;

run;

 

data test2;

    set test;

    by patientid;

    if first.patientid=1 and last.patientid=1;

run;

I would recommend you take the elearning programming 1 course on our website. Its free and you will learn lots of great things to start using SAS. Here is a link SAS Training in the United States -- SAS® Programming 1: Essentials

 

SAS INNOVATE 2024

innovate-wordmarks-white-horiz.png

SAS is headed back to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team.

Interested in speaking? Content from our attendees is one of the reasons that makes SAS Innovate such a special event!

Submit your idea!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 143 views
  • 1 like
  • 2 in conversation