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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 656 views
  • 0 likes
  • 1 in conversation