<?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 Custom Error Bars Using the Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Custom-Error-Bars-Using-the-Graph-Builder/m-p/86610#M38631</link>
    <description>&lt;P&gt;I love the graph builder, but there is one type of analysis that should be easy, but alas is not. I can easily use the graph builder to add 1 standard deviation error bars, but I am doing some regulatory work that requires 3 standard deviation error bars. It sure would be nice if I could adjust that with&amp;nbsp;a drop down menu. Do you all know of an easy fix for that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;BioMike&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jan 2019 19:17:37 GMT</pubDate>
    <dc:creator>BioMikey</dc:creator>
    <dc:date>2019-01-02T19:17:37Z</dc:date>
    <item>
      <title>Custom Error Bars Using the Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Custom-Error-Bars-Using-the-Graph-Builder/m-p/86610#M38631</link>
      <description>&lt;P&gt;I love the graph builder, but there is one type of analysis that should be easy, but alas is not. I can easily use the graph builder to add 1 standard deviation error bars, but I am doing some regulatory work that requires 3 standard deviation error bars. It sure would be nice if I could adjust that with&amp;nbsp;a drop down menu. Do you all know of an easy fix for that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;BioMike&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 19:17:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Custom-Error-Bars-Using-the-Graph-Builder/m-p/86610#M38631</guid>
      <dc:creator>BioMikey</dc:creator>
      <dc:date>2019-01-02T19:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Error Bars Using the Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Custom-Error-Bars-Using-the-Graph-Builder/m-p/86623#M38640</link>
      <description>&lt;P&gt;I do not see an option that will allow you to change the STD for the error bars, however, if you standardize the Y variable to where the mean is equal to the current mean, but the STD is 3 times the size of the current STD, then you will get the chart you want.&amp;nbsp; Below is an example showing the use of a Transform formula to show you what I am talking about&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="errorbars.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14964i1A747AE359C5DD57/image-size/large?v=v2&amp;amp;px=999" role="button" title="errorbars.PNG" alt="errorbars.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Variables(
		X( :sex ),
		Y( :weight ),
		Y(
			Transform Column(
				"Transform[weight]",
				Formula(
					inSTDs = Abs( :weight - Col Mean( :weight, :sex ) ) /
					Col Std Dev( :weight, :sex );
					If( :weight &amp;gt;= Col Mean( :weight, :sex ),
						Col Mean( :weight, :sex ) + 3 * inSTDs *
						Col Std Dev( :weight, :sex ),
						Col Mean( :weight, :sex ) - 3 * inSTDs *
						Col Std Dev( :weight, :sex )
					);
				)
			),
			Position( 1 )
		)
	),
	Elements(
		Line(
			X,
			Y( 1 ),
			Y( 2 ),
			Legend( 4 ),
			Error Bars( "Standard Deviation" )
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Jan 2019 21:30:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Custom-Error-Bars-Using-the-Graph-Builder/m-p/86623#M38640</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-02T21:30:22Z</dc:date>
    </item>
  </channel>
</rss>

