BookmarkSubscribeRSS Feed
Yeonkyu
Calcite | Level 5

Hi

Using SAS 9.4, applied mixed model which is posted on example 56.5(Random Coefficients) for triplicate MTT results.

To minimize the difference between batches and get general tendency of concentrations, I used mixed model.

 

Although I get data from this code, struggling with displaying the graph or plot.

Is there a code which I can use for displaying plot?


Follwoing is the code I used(SAS guide mixed model example 56.5)

   data rc;

     input Batch Month @@;

     Monthc = Month;

     do i = 1 to 6;

        input Y @@;

        output;

     end;

     datalines;

    1   0  101.2 103.3 103.3 102.1 104.4 102.4

    1   1   98.8  99.4  99.7  99.5    .     .

    1   3   98.4  99.0  97.3  99.8    .     .

    1   6  101.5 100.2 101.7 102.7    .     .

    1   9   96.3  97.2  97.2  96.3    .     .

    1  12   97.3  97.9  96.8  97.7  97.7  96.7

    2   0  102.6 102.7 102.4 102.1 102.9 102.6

    2   1   99.1  99.0  99.9 100.6    .     .

    2   3  105.7 103.3 103.4 104.0    .     .

    2   6  101.3 101.5 100.9 101.4    .     .

    2   9   94.1  96.5  97.2 95.6     .     .

    2  12   93.1  92.8  95.4 92.2   92.2  93.0

    3   0  105.1 103.9 106.1 104.1 103.7 104.6

    3   1  102.2 102.0 100.8  99.8    .     .

    3   3  101.2 101.8 100.8 102.6    .     .

    3   6  101.1 102.0 100.1 100.2    .     .

    3   9  100.9  99.5 102.2 100.8    .     .

    3  12   97.8  98.3  96.9  98.4  96.9  96.5

    ;

   proc mixed data=rc;

      class Batch;

      model Y = Month / s;

      random Int Month / type=un sub=Batch s;

   run;

proc mixed data=rc;

      class Batch Monthc;

      model Y = Month / s;

      random Int Month Monthc / sub=Batch s;

   run;

 

1 REPLY 1
PGStats
Opal | Level 21

See what you get with:

 

ods graphics on;
proc mixed data=rc plots=all;
      class Batch;
      model Y = Month / s;
      random Int Month / type=un sub=Batch s;
   run;
proc mixed data=rc plots=all;
      class Batch Monthc;
      model Y = Month / s;
      random Int Month Monthc / sub=Batch s;
   run;
PG

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!

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
  • 749 views
  • 0 likes
  • 2 in conversation