<?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: Any way to change bin size in Oneway Anova? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350744#M60025</link>
    <description>&lt;P&gt;I ran an interactive Fit Y by X and then interactively changed the binning by using the Hand tool.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hist.PNG" style="width: 884px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29522iFD2A4A658FBA208E/image-size/large?v=v2&amp;amp;px=999" role="button" title="hist.PNG" alt="hist.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The JSL to generate this graph shows that you can do the binning you want, but you will have to get into the Segments for the graphs.&amp;nbsp; Take a look in the Scripting Index for the messages available for Segment manipulation&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Oneway(
	Y( :weight ),
	X( :age ),
	Means( 1 ),
	Mean Diamonds( 1 ),
	Histograms( 1 ),
	SendToReport(
		Dispatch(
			{},
			"Oneway Report",
			FrameBox,
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 4, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 2 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 2, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 4 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 3, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 5 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 4, 0 ) )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jan 2021 17:58:44 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2021-01-18T17:58:44Z</dc:date>
    <item>
      <title>Any way to change bin size in Oneway Anova?</title>
      <link>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350682#M60020</link>
      <description>&lt;P&gt;Hi all.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm a little new to JMP but I'm starting to get fairly comfortable.&amp;nbsp;&lt;BR /&gt;I have a solid dataset, but I am trying to see if there is a way to change my bin size on my histogram in my oneway Anova. The histogram is under the display options, so I'm not sure if JMP gives me a lot of control over it. I've tried changing my "increment" in the axis options and re-display the histogram but no success.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alexpoles_0-1610991429199.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29519i335266E78C71B230/image-size/medium?v=v2&amp;amp;px=400" role="button" title="alexpoles_0-1610991429199.png" alt="alexpoles_0-1610991429199.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;BR /&gt;Alex&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 00:27:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350682#M60020</guid>
      <dc:creator>alexpoles</dc:creator>
      <dc:date>2023-06-09T00:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to change bin size in Oneway Anova?</title>
      <link>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350744#M60025</link>
      <description>&lt;P&gt;I ran an interactive Fit Y by X and then interactively changed the binning by using the Hand tool.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hist.PNG" style="width: 884px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29522iFD2A4A658FBA208E/image-size/large?v=v2&amp;amp;px=999" role="button" title="hist.PNG" alt="hist.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The JSL to generate this graph shows that you can do the binning you want, but you will have to get into the Segments for the graphs.&amp;nbsp; Take a look in the Scripting Index for the messages available for Segment manipulation&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Oneway(
	Y( :weight ),
	X( :age ),
	Means( 1 ),
	Mean Diamonds( 1 ),
	Histograms( 1 ),
	SendToReport(
		Dispatch(
			{},
			"Oneway Report",
			FrameBox,
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 4, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 2 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 2, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 4 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 3, 0 ) )}
		),
		Dispatch(
			{},
			"Oneway Report",
			FrameBox( 5 ),
			{DispatchSeg( Hist Seg( 1 ), Bin Span( 4, 0 ) )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 17:58:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350744#M60025</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-18T17:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to change bin size in Oneway Anova?</title>
      <link>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350753#M60029</link>
      <description>&lt;P&gt;Further to&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;'s correct answer. The &lt;A href="https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/histograms-2.shtml#ww492433" target="_self"&gt;Hand/Grabber Tool&lt;/A&gt; can be used to modify the histograms.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdjustHistograms.gif" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29526iAE132088052EF5D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdjustHistograms.gif" alt="AdjustHistograms.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 19:40:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Any-way-to-change-bin-size-in-Oneway-Anova/m-p/350753#M60029</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2021-01-18T19:40:36Z</dc:date>
    </item>
  </channel>
</rss>

