Summary of sem: can I remove the summary of variables?
Posted on

Hi
I'm using openMx in a sweave file, where I show the output of a sem model. I wonder if it is possible to show only the bottom of what is printed by summary, i.e., only the coefficients table and the index, not the individual summary, whihc is pretty long?
Is this possible?
As second question: how do I see the code for summary? I'm not quite comfortable with S4 modelling, in S3 I would have done:
getAnywhere(summary.MxRAMModel)
How do I do with S4?
Thanks a lot!
Good point. We need to do
For instance,
should just print the parameters, but instead prints the whole summary. That one goes on the bug list.
Log in or register to post comments
In reply to Good point. We need to do by Steve
Umm, actually this is not a
In order to silence the output of summary(), use the following:
WRT your other question, you can either use selectMethod(summary, list("MxModel")) or look at the source code here: http://openmx.psyc.virginia.edu/repoview/1/trunk/R/MxSummary.R.
Log in or register to post comments
In reply to Umm, actually this is not a by mspiegel
Not sure which
Note that when summary is assigned it is silenced and when a part of the summary's list is extracted only that part is printed. This is the behavior of summary for all of the estimation functions of which I'm aware.
Log in or register to post comments
In reply to Not sure which by Steve
Ah ok. It looks like we both
Log in or register to post comments
In reply to Ah ok. It looks like we both by mspiegel
Yes, if we create S3 objects
Log in or register to post comments
In reply to Yes, if we create S3 objects by mspiegel
OK the summary() function has
Log in or register to post comments