Page 1 of 1

Writing Outliers to Output

Posted: 04 May 2023, 11:04
by JuliavB
Dear all,

I do not want my Outliers to be written to the output files.
I´ve tried the following code but still the outliers are written to the output files. Can you help me with this?

modelOutput_Liste = list(printChange=TRUE, printClassical=TRUE, printCorr=TRUE,
printCovar=TRUE, printDataReport=TRUE, printFixed=TRUE,
printFunctions=TRUE, printModelStructure=TRUE,
printOutliers=FALSE, printPVal=2, printT1=TRUE)

saveOutput_Liste = list(printChange=TRUE, printClassical=TRUE, printCorr=TRUE,
printCovar=TRUE, printDataReport=TRUE,
printFunctions=TRUE, printOutliers=FALSE,
printModelStructure=TRUE, printPVal=2, printT1=TRUE, saveEst=TRUE, saveCorr=TRUE,
saveCov=TRUE, saveModelObject=TRUE, writeF12=FALSE)

# ################################################################# #
#### MODEL ESTIMATION ####
# ################################################################# #
model = apollo_estimate(apollo_beta, apollo_fixed,
apollo_probabilities, apollo_inputs)
Output_MMNL <- apollo_modelOutput(model, modelOutput_settings = modelOutput_Liste)
apollo_saveOutput(model, saveOutput_settings = modelOutput_Liste)

Any advice is highly appreciated.
Thanks and best,
J.

Re: Writing Outliers to Output

Posted: 04 May 2023, 16:21
by stephanehess
Hi

I tested it and it works fine on mine. Could you paste the entire code?

Stephane

Re: Writing Outliers to Output

Posted: 05 May 2023, 12:16
by JuliavB
Hi Stephane,

I do not know why but now it is working perfectly fine at my computer as well.

Thank you anyhow :)