<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: JSL - Histograms Control where and how to place them in a Journal in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/29578#M19520</link>
    <description>&lt;P&gt;1. The &lt;STRONG&gt;&amp;lt;&amp;lt; Journal&lt;/STRONG&gt; message to the Distribution platform will automatically append it to the open journal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. You can use the use the &lt;STRONG&gt;&amp;lt;&amp;lt; Delete&lt;/STRONG&gt; message to that outline before journaling the platform. See below example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Use &lt;STRONG&gt;Count Axis( 1 )&lt;/STRONG&gt; option when launching the platform or send the &lt;STRONG&gt;&amp;lt;&amp;lt; Count Axis( 1 )&lt;/STRONG&gt; message to the platform after launch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

// launch platform with desired options
dist = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution(
		Column( :height ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Count Axis( 1 ),
		Fit Distribution( Normal )
	)
);

// obtain reference to the report layer
distr = dist &amp;lt;&amp;lt; Report;

// remove the parameter estimates from the report
distr["Parameter Estimates"] &amp;lt;&amp;lt; Delete;

// append report layer to curent (open) journal
dist &amp;lt;&amp;lt; Journal;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Nov 2016 17:39:48 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2016-11-30T17:39:48Z</dc:date>
    <item>
      <title>JSL - Histograms Control where and how to place them in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/29542#M19495</link>
      <description>&lt;P&gt;I lied... one more question :)&lt;/img&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to add a histogram with a fitted normal distribution to my Journal, and I am running into a couple of issues.&amp;nbsp; Here is the code that I am using to create the histogram:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So when I run this it puts the result in a newly created Journal in a hierarchy of Distributions &amp;gt; Score 1.&amp;nbsp; Here is what I would like to do and I have questions about:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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?&lt;/P&gt;
&lt;P&gt;2) When I do the code above, it automatically adds the Parameter Estimates from the Fitted Normal, can I suppress this output?&lt;/P&gt;
&lt;P&gt;3) Is it possible to get "count" on the y-axis on the Histogram?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance, have a good holiday.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 17:39:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/29542#M19495</guid>
      <dc:creator>drblove</dc:creator>
      <dc:date>2016-11-30T17:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: JSL - Histograms Control where and how to place them in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/29578#M19520</link>
      <description>&lt;P&gt;1. The &lt;STRONG&gt;&amp;lt;&amp;lt; Journal&lt;/STRONG&gt; message to the Distribution platform will automatically append it to the open journal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. You can use the use the &lt;STRONG&gt;&amp;lt;&amp;lt; Delete&lt;/STRONG&gt; message to that outline before journaling the platform. See below example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Use &lt;STRONG&gt;Count Axis( 1 )&lt;/STRONG&gt; option when launching the platform or send the &lt;STRONG&gt;&amp;lt;&amp;lt; Count Axis( 1 )&lt;/STRONG&gt; message to the platform after launch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

// launch platform with desired options
dist = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution(
		Column( :height ),
		Horizontal Layout( 1 ),
		Vertical( 0 ),
		Count Axis( 1 ),
		Fit Distribution( Normal )
	)
);

// obtain reference to the report layer
distr = dist &amp;lt;&amp;lt; Report;

// remove the parameter estimates from the report
distr["Parameter Estimates"] &amp;lt;&amp;lt; Delete;

// append report layer to curent (open) journal
dist &amp;lt;&amp;lt; Journal;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 17:39:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/29578#M19520</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2016-11-30T17:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: JSL - Histograms Control where and how to place them in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/30880#M19588</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this answer it is working well for me. &amp;nbsp;I have a silly follow up question. &amp;nbsp;When this goes into the Journal it is in header of Distribution &amp;gt;&amp;gt; Score 1 - Score 1 is the name of the column. &amp;nbsp;I want to change the name Score 1 for the Journal to some thing else like "Histogram of Score 1 Data", how do I do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 15:23:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/30880#M19588</guid>
      <dc:creator>drblove</dc:creator>
      <dc:date>2016-11-30T15:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: JSL - Histograms Control where and how to place them in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/30882#M19590</link>
      <description>&lt;P&gt;Add this line to Mark's code above (after the first occurance of 'distr'(:&lt;/P&gt;
&lt;P&gt;distr[OutlineBox(1)] &amp;lt;&amp;lt; setTitle("Histogram of Height Data");)&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 15:37:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Histograms-Control-where-and-how-to-place-them-in-a-Journal/m-p/30882#M19590</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2016-11-30T15:37:02Z</dc:date>
    </item>
  </channel>
</rss>

