We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In #15, @mcneale requested the ability to set how zero cells are printed in the output of umxACE etc.
Turns out previous me solved this request back in 2012 :-) The default is "." for clarity, but you can set zero.print="whatever you want")
zero.print="whatever you want"
e.g.:
require(umx) data(twinData) # ?twinData set from Australian twins. # Pick the variables selDVs = c("bmi1", "bmi2") mzData <- twinData[twinData$zygosity %in% "MZFF", ] dzData <- twinData[twinData$zygosity %in% "DZFF", ] m1 = umxACE(selDVs = selDVs, dzData = dzData, mzData = mzData)
-2 × log(Likelihood) 'log Lik.' 9659.215 (df=4)
Standardized solution
umxSummaryACE(m1, std= FALSE, zero.print="mike")
Raw solution
The text was updated successfully, but these errors were encountered:
tbates
No branches or pull requests
In #15, @mcneale requested the ability to set how zero cells are printed in the output of umxACE etc.
Turns out previous me solved this request back in 2012 :-)
The default is "." for clarity, but you can set
zero.print="whatever you want"
)e.g.:
-2 × log(Likelihood)
'log Lik.' 9659.215 (df=4)
Standardized solution
Raw solution
The text was updated successfully, but these errors were encountered: