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

Hi, 

 

please help me understand the following 

the symbol -< , <- and <-< are confusing 

 

%let big=0.7;
proc format;
    picture correlations &big -< 1 = '009.99' (prefix="*")
                         -1 <- -&big = '009.99' (prefix="*")
                         -&big <-< &big = '009.99';
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @hqquenafees 

 

By default, a simple hyphen (-) means that boundaries are included.

To exclude them, you can use the inferior sign: <

  • &big -< 1 = '009.99' (prefix="*") is equivalent to [&big;1[
  • -1 <- -&big = '009.99' (prefix="*") is equivalent to ]-1;-&big]
  • -&big <-< &big = '009.99' is equivalent to ]-&big;&big[ 

View solution in original post

1 REPLY 1
ed_sas_member
Meteorite | Level 14

Hi @hqquenafees 

 

By default, a simple hyphen (-) means that boundaries are included.

To exclude them, you can use the inferior sign: <

  • &big -< 1 = '009.99' (prefix="*") is equivalent to [&big;1[
  • -1 <- -&big = '009.99' (prefix="*") is equivalent to ]-1;-&big]
  • -&big <-< &big = '009.99' is equivalent to ]-&big;&big[ 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 294 views
  • 0 likes
  • 2 in conversation