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

Hi All,

My Code id below:

%macro model();
%do i = 1 %to 4;
ods trace on;
proc mixed data=kc.LC_15July;
class org_id;
model dose= &&K&i./solution;
ods output solutionf=kc.model_K&i.;
run;
quit;
ods trace off;
%end;
%mend;
%
model();

I am having problem to make my all programe automate due to the variable of output dataset ,length of variable "effect" is $20. , which is truncating excat name of variable .

can i increase the length of variable "effect" during creation , so i will get complete name.

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
1 REPLY 1

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1623 views
  • 0 likes
  • 2 in conversation