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

Hi my friends:

I have one question, as always haha:

I have many data to use into Proc GLM, and i need to exclude some data (Discrepant data) from the tail and head, so im trying to use WHERE statement like that:

Proc GLM:

Where Polen_Gr < 250; (meaning that i'm gonna use just data under 250)

And i would like to Add that i want to use data above 100 and i dont know how to do it

Resuming: I JUST NEED the interval "X"

100>X>250


Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Did you try what you posted?

These three different methods should all do the same thing.

where 100 < Polen_Gr < 250 ;

where (100 < Polen_Gr ) and (Polen_Gr < 250) ;

where 100 < Polen_Gr ;

where also Polen_Gr < 250 ;

View solution in original post

3 REPLIES 3
AskoLötjönen
Quartz | Level 8

You can use where clause in data= -clause

Proc Glm data=have(where=(Polen_gr lt 250));

Astounding
PROC Star

To apply both boundaries:

where 100 < Polen_Gr < 250;

Tom
Super User Tom
Super User

Did you try what you posted?

These three different methods should all do the same thing.

where 100 < Polen_Gr < 250 ;

where (100 < Polen_Gr ) and (Polen_Gr < 250) ;

where 100 < Polen_Gr ;

where also Polen_Gr < 250 ;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

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
  • 2340 views
  • 0 likes
  • 4 in conversation