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

Does anyone know how I can delete exrta rows? I really just want to keep the first row and delete all others. Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You can select your output statistics by specifying them after the out= 

 

output out=want n=/autoname;

 

View solution in original post

3 REPLIES 3
mohamed_zaki
Barite | Level 11

What rows or rows in what? Give example of your data set

drichmo1
Fluorite | Level 6

Hi,

 

I am using a data set that I imported from excel. I used  proc means in order to create a new set of rows that shows the N, min, max, std, and mean. I just want to keep the row that show N, number of observation for each variable, which is the first row.

 

Here is my code:

 

proc means noprint data=one N;
var A B C D E;
  output out=one2;
run;

data one3 (keep = A B C D E);
  set one2 one (in=in2);
run;

 

 

Reeza
Super User

You can select your output statistics by specifying them after the out= 

 

output out=want n=/autoname;

 

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