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

Hi, I am trying to calculate the standard deviation of follow variables:

data sample;

    set EVA_Inv.sample_v1;

        array a CFO_ta Sales_Ta Inv_Total;

        array b std_CFO std_Sales std_Inv;       

        do i=1 to dim(a);

            b(i)=std(a(i),lag(a(i)),lag2(a(i)));

    end;

     std_cfo1=std(CFO_ta,lag(CFO_ta),lag2(CFO_ta));

run;

well, it seems "std_cfo1" get result, yet all b(i) return missing value.

What's the problem?

Anyone can please tell me? THX!

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

I tested it. No problem.

data sample;
    set sashelp.class;
        array a{*} age weight height;
        array b{*} _age _weight _height;       
        do i=1 to dim(a);
            b{i}=std(a{i},lag(a{i}),lag2(a{i}));
    end;
run;



Ksharp

View solution in original post

2 REPLIES 2
Ksharp
Super User

I tested it. No problem.

data sample;
    set sashelp.class;
        array a{*} age weight height;
        array b{*} _age _weight _height;       
        do i=1 to dim(a);
            b{i}=std(a{i},lag(a{i}),lag2(a{i}));
    end;
run;



Ksharp

rpg163
Calcite | Level 5

Yes, I test your code,you are right!

Well, I just check the code again and find I missed sth.

now I get it.

THX!

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 25. 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
  • 2 replies
  • 814 views
  • 0 likes
  • 2 in conversation