<?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 Remove Upper and Lower 95% from means and std plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Remove-Upper-and-Lower-95-from-means-and-std-plot/m-p/631736#M83009</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this function for making a bivariate plot, with means and std. However, I need to remove the&amp;nbsp;Lower 95% and&amp;nbsp;Upper 95% from the table. I tried making it manually but I don't know how to incorporate it with the function. Please help&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This is the function:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Tmp Window",
													vc = Oneway(
														Y( :Param ),
														X( :Param1 ),
														Means and Std Dev( 1 ),
														Mean Diamonds( 1 ),
														X Axis Proportional( 0 ),
														Box Plots( 1 ),
														Grand Mean( 0 ),
														CDF Plot( 0 ),
														Connect Means( 0 ),
														Points Jittered( 0 )
													);
													rvc = vc &amp;lt;&amp;lt; Report;
													ymax = rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Get Max;
													ymin = rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Get Min;
													rvc[FrameBox( 1 )] &amp;lt;&amp;lt; {Marker Size( 2 )};
													Try( rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Max( paxis["Max"] ) &amp;lt;&amp;lt; Min( paxis["Min"] ) &amp;lt;&amp;lt; Inc( paxis["Inc"] ) &amp;lt;&amp;lt; Minor Ticks( paxis["Ntick"] ) );
													rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Format( "Best", 12 ) &amp;lt;&amp;lt; Tick Font( style( 1 ), size( 9 ) ) &amp;lt;&amp;lt; Show Major Grid( 1 ) &amp;lt;&amp;lt; Show Minor Grid( 1 ) &amp;lt;&amp;lt;
													Show Minor Ticks( 1 );
													rvc[Text Edit Box( 1 )] &amp;lt;&amp;lt; Set Font Size( 10 ) &amp;lt;&amp;lt; Set Font Style( "Bold" );
													vb = V List Box( rvc[Picture Box( 1 )], rvc[Outline Box( 2 )] &amp;lt;&amp;lt; Get Picture );
												);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;This is the code from the script window:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Oneway(
Y( :Param&amp;nbsp;),
X( :Param1&amp;nbsp;),
Means and Std Dev( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
SendToReport(
&lt;STRONG&gt;Dispatch(
{"Means and Std Deviations"},
"Lower 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Upper 95%",
NumberColBox,
{Visibility( "Collapse" )}&lt;/STRONG&gt;
)
)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 11 Jun 2023 00:01:11 GMT</pubDate>
    <dc:creator>UserID16644</dc:creator>
    <dc:date>2023-06-11T00:01:11Z</dc:date>
    <item>
      <title>Remove Upper and Lower 95% from means and std plot</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Upper-and-Lower-95-from-means-and-std-plot/m-p/631736#M83009</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this function for making a bivariate plot, with means and std. However, I need to remove the&amp;nbsp;Lower 95% and&amp;nbsp;Upper 95% from the table. I tried making it manually but I don't know how to incorporate it with the function. Please help&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This is the function:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Tmp Window",
													vc = Oneway(
														Y( :Param ),
														X( :Param1 ),
														Means and Std Dev( 1 ),
														Mean Diamonds( 1 ),
														X Axis Proportional( 0 ),
														Box Plots( 1 ),
														Grand Mean( 0 ),
														CDF Plot( 0 ),
														Connect Means( 0 ),
														Points Jittered( 0 )
													);
													rvc = vc &amp;lt;&amp;lt; Report;
													ymax = rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Get Max;
													ymin = rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Get Min;
													rvc[FrameBox( 1 )] &amp;lt;&amp;lt; {Marker Size( 2 )};
													Try( rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Max( paxis["Max"] ) &amp;lt;&amp;lt; Min( paxis["Min"] ) &amp;lt;&amp;lt; Inc( paxis["Inc"] ) &amp;lt;&amp;lt; Minor Ticks( paxis["Ntick"] ) );
													rvc[Axis Box( 1 )] &amp;lt;&amp;lt; Format( "Best", 12 ) &amp;lt;&amp;lt; Tick Font( style( 1 ), size( 9 ) ) &amp;lt;&amp;lt; Show Major Grid( 1 ) &amp;lt;&amp;lt; Show Minor Grid( 1 ) &amp;lt;&amp;lt;
													Show Minor Ticks( 1 );
													rvc[Text Edit Box( 1 )] &amp;lt;&amp;lt; Set Font Size( 10 ) &amp;lt;&amp;lt; Set Font Style( "Bold" );
													vb = V List Box( rvc[Picture Box( 1 )], rvc[Outline Box( 2 )] &amp;lt;&amp;lt; Get Picture );
												);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;This is the code from the script window:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Oneway(
Y( :Param&amp;nbsp;),
X( :Param1&amp;nbsp;),
Means and Std Dev( 1 ),
Mean Error Bars( 1 ),
Std Dev Lines( 1 ),
SendToReport(
&lt;STRONG&gt;Dispatch(
{"Means and Std Deviations"},
"Lower 95%",
NumberColBox,
{Visibility( "Collapse" )}
),
Dispatch(
{"Means and Std Deviations"},
"Upper 95%",
NumberColBox,
{Visibility( "Collapse" )}&lt;/STRONG&gt;
)
)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 00:01:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Upper-and-Lower-95-from-means-and-std-plot/m-p/631736#M83009</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2023-06-11T00:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Upper and Lower 95% from means and std plot</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-Upper-and-Lower-95-from-means-and-std-plot/m-p/631859#M83027</link>
      <description>&lt;P&gt;One option&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;tb = Report(vc)["Means and Std Deviations", Table Box(1)];
headers = tb &amp;lt;&amp;lt; get names;
tb[Contains(headers, "Lower 95%")] &amp;lt;&amp;lt; Visibility("Collapse");
tb[Contains(headers, "Upper 95%")] &amp;lt;&amp;lt; Visibility("Collapse");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("Tmp Window",
	vlb = V List Box(
		vc = Oneway(
			Y(:height),
			X(:age),
			Means and Std Dev(1),
			Mean Diamonds(1),
			X Axis Proportional(0),
			Box Plots(1),
			Grand Mean(0),
			CDF Plot(0),
			Connect Means(0),
			Points Jittered(0)
		);
		rvc = vc &amp;lt;&amp;lt; Report;
		ymax = rvc[Axis Box(1)] &amp;lt;&amp;lt; Get Max;
		ymin = rvc[Axis Box(1)] &amp;lt;&amp;lt; Get Min;
		rvc[FrameBox(1)] &amp;lt;&amp;lt; {Marker Size(2)};
		Try(
			rvc[Axis Box(1)] &amp;lt;&amp;lt; Max(paxis["Max"]) &amp;lt;&amp;lt; Min(paxis["Min"]) &amp;lt;&amp;lt; Inc(paxis["Inc"]) &amp;lt;&amp;lt;
			Minor Ticks(paxis["Ntick"])
		);
		rvc[Axis Box(1)] &amp;lt;&amp;lt; Format("Best", 12) &amp;lt;&amp;lt; Tick Font(style(1), size(9)) &amp;lt;&amp;lt; Show Major Grid(1) &amp;lt;&amp;lt;
		Show Minor Grid(1) &amp;lt;&amp;lt; Show Minor Ticks(1);
		rvc[Text Edit Box(1)] &amp;lt;&amp;lt; Set Font Size(10) &amp;lt;&amp;lt; Set Font Style("Bold");
	);
);

tb = Report(vc)["Means and Std Deviations", Table Box(1)];
headers = tb &amp;lt;&amp;lt; get names;
tb[Contains(headers, "Lower 95%")] &amp;lt;&amp;lt; Visibility("Collapse");
tb[Contains(headers, "Upper 95%")] &amp;lt;&amp;lt; Visibility("Collapse");

vlb &amp;lt;&amp;lt; Append(
	vb = V List Box(rvc[Picture Box(1)], rvc[Outline Box(2)] &amp;lt;&amp;lt; Get Picture);
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 13:30:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-Upper-and-Lower-95-from-means-and-std-plot/m-p/631859#M83027</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-15T13:30:53Z</dc:date>
    </item>
  </channel>
</rss>

