BookmarkSubscribeRSS Feed
balamse
Calcite | Level 5

Need help in running proc calis using ucov aug syntax. Please guide me how to run this using sas 9.2. Thank you.

1 REPLY 1
balamse
Calcite | Level 5

Need assistance in running the below syntax.

data growth (TYPE=CORR);

input _type_ $ _name_ $ v1-v4;

datalines;

mean . 18.034 25.819 35.255 46.593

std . 6.374 7.319 7.796 10.386

N . 204 204 204 204

corr v1 1.000 . . .

corr v2 .809 1.000 . .

corr v3 .806 .850 1.000 .

corr v4 .765 .831 .867 1.000

;

run;

proc calis ucov aug data=growth nobs=204;

lineqs

V1 = a0 intercept + F1 + E1,

V2 = b1 F1 + E2,

V3 = F2 + E3,

V4 = b4 F2 + E4,

F1 = d0 intercept + D1,

F2 = e0 intercept + e1 F1 + D2;

std

d1 = ed1,

d2 = ed2,

E1 -E4 = ee1-ee4;

run;

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