BookmarkSubscribeRSS Feed
deleted_user
Not applicable
LOG FILE

9 proc mixed data=tmp1.milkprod convh=1E-4 maxiter=5 noclprint ;
10 ods output SolutionR =cows ;
WARNING: Duplicate data set name on ODS OUTPUT statement. Entry will be ignored.
11 ods output SolutionF =fixed;
WARNING: Duplicate data set name on ODS OUTPUT statement. Entry will be ignored.
12 class parity cmonth age_cl dccclass obs date dimclass herdbook;
13 model milk= cmonth age_cl(parity) dccclass dimclass(parity) date/singular=1e-8 s
13 ! outp=predict ddfm=res;
14 random int / sub=herdbook type=simple s;
15 repeated obs/ type=simple sub=herdbook;
16 run;

NOTE: An infinite likelihood is assumed in iteration 0 because of a nonpositive definite estimated R
matrix for HERDBOOK 300000006.

WARNING: Output 'SolutionF' was not created. Make sure that the output object name, label, or path
is spelled correctly. Also, verify that the appropriate procedure options are used to
produce the requested output object. For example, verify that the NOPRINT option is not
used.
WARNING: Output 'SolutionR' was not created. Make sure that the output object name, label, or path
is spelled correctly. Also, verify that the appropriate procedure options are used to
produce the requested output object. For example, verify that the NOPRINT option is not
used.
NOTE: The data set WORK.PREDICT has 0 observations and 0 variables.
NOTE: PROCEDURE MIXED used (Total process time):
real time 29:07.28
cpu time 9:52.12


OUTPUT

The Mixed Procedure

Model Information

Data Set TMP1.MILKPROD
Dependent Variable milk
Covariance Structure Variance Components
Subject Effects HERDBOOK, HERDBOOK
Estimation Method REML
Residual Variance Method Parameter
Fixed Effects SE Method Model-Based
Degrees of Freedom Method Residual


Dimensions

Covariance Parameters 2
Columns in X 216
Columns in Z Per Subject 1
Subjects 23501
Max Obs Per Subject 43


Number of Observations

Number of Observations Read 527310
Number of Observations Used 527310
Number of Observations Not Used 0


While excuting the same code on tmp2.milkprod works fine, the data are different in the two data sets.
1 REPLY 1
David_SAS
SAS Employee
Redha,

ODS is complaining because WORK.COWS and WORK.FIXED are already assigned as ODS OUTPUT data sets. Why that is the case cannot be determined from the code fragment. Presumably they were assigned in previously executed code.

I recommend that you contact Technical Support with this problem. You can submit it online at http://support.sas.com/ctx/supportform/index.jsp .

-- David Kelley, SAS

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