I lied... one more question :)
I am trying to add a histogram with a fitted normal distribution to my Journal, and I am running into a couple of issues. Here is the code that I am using to create the histogram:
Distribution(
Continuous Distribution(
Column( :Score 1 ),
Horizontal Layout( 1 ),
Vertical( 0 ),
Set Bin Width( 0.2 ),
Fit Distribution( Normal )
),
Histograms Only,
SendToReport(
Dispatch(
{"Score 1"},
"1",
ScaleBox,
{Min( -0.323505454261101 ), Max( 1.8235054542611 ), Inc( 0.2 ),
Minor Ticks( 0 )}
),
Dispatch(
{"Score 1"},
"Distrib Histogram",
FrameBox,
{Frame Size( 382, 217 )}
),
Dispatch( {"Score 1"}, "Fitted Normal", OutlineBox, {Close( 1 )} )
)
);
So when I run this it puts the result in a newly created Journal in a hierarchy of Distributions > Score 1. Here is what I would like to do and I have questions about:
1) When I make the histogram, how can I attach this to an already created Journal by attaching it to an H List Box or is there a different trick?
2) When I do the code above, it automatically adds the Parameter Estimates from the Fitted Normal, can I suppress this output?
3) Is it possible to get "count" on the y-axis on the Histogram?
Thank you in advance, have a good holiday.