<?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: How to delete outlinebox that not required from graphs in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256157#M50329</link>
    <description>&lt;P&gt;Also consider using &amp;lt;&amp;lt;Visibility rather than &amp;lt;&amp;lt;Delete.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Visibility("collapse");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;"Collapse" will hide the box and remove the space it uses in the report, without deleting the box. Two advantages: (1) the displaybox numbering does not shift around and (2) some platforms might be confused by deleting certain display boxes they depend on.&lt;/P&gt;&lt;P&gt;I like Jim's final example combined with Visibility:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
biv = Bivariate(
	Y( :NPN1 ),
	X( :PNP1 ),
	Fit Where( :SITE == 1, Fit Line( {Line Color( {213, 72, 87} )} ) ));
	
Report(biv)["Summary of Fit"] &amp;lt;&amp;lt; Visibility("collapse");
Report(biv)["Analysis of Variance"] &amp;lt;&amp;lt; Visibility("collapse");
Report(biv)["Parameter Estimates"] &amp;lt;&amp;lt; Visibility("collapse");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;which explains itself to anyone that needs to understand or maintain it later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 05 Apr 2020 11:29:33 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2020-04-05T11:29:33Z</dc:date>
    <item>
      <title>How to delete outlinebox that not required from graphs</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256138#M50323</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to delete outlinebox that are not required (or I don't want have).&lt;/P&gt;&lt;P&gt;Following this post&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-show-fit-line-graphs-in-a-single-report-without-the/td-p/46302" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discussions/How-to-show-fit-line-graphs-in-a-single-report-without-the/td-p/46302&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We can delete the all of the boxes. But I want to keep only 'Linear Fit Site == 1' and the equation&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 710px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/22781iF8E959B1BBF940C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
biv = Bivariate(
	Y( :NPN1 ),
	X( :PNP1 ),
	Fit Where( :SITE == 1, Fit Line( {Line Color( {213, 72, 87} )} ) ));
	
biv[Outline Box(3)] &amp;lt;&amp;lt; Delete;	
biv[Outline Box(4)] &amp;lt;&amp;lt; Delete;
biv[Outline Box(5)] &amp;lt;&amp;lt; Delete;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But still those boxes are there. The expected output that I need&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/22782i24F86698504E95FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Apr 2020 06:25:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256138#M50323</guid>
      <dc:creator>joshua</dc:creator>
      <dc:date>2020-04-05T06:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete outlinebox that not required from graphs</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256141#M50324</link>
      <description>&lt;P&gt;See my annotated JSL below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
biv = Bivariate(
	Y( :NPN1 ),
	X( :PNP1 ),
	Fit Where( :SITE == 1, Fit Line( {Line Color( {213, 72, 87} )} ) ));
	
// When you are modifying the output from a Platform
// one needs to access the report
// Additionally, you need to delete the outline boxes either in
// reverse order as below, since the Butline Box nomenclature
// will change after the deletion of a box.  That is, if you delete
// Outline Box(3) first, once it is deleted, what was Outline Box(4)
// will now be the 3rd Outline Box etc.	
Report(biv)[Outline Box(5)] &amp;lt;&amp;lt; Delete;
Report(biv)[Outline Box(4)] &amp;lt;&amp;lt; Delete;
Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Delete;

/*
// To illustrate this, you can actually eliminate the 3 Outline Boxes
// with the code below
Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Delete;
Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Delete;
Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Delete;

// and an alternative method would be to use direct references
Report(biv)["Summary of Fit"] &amp;lt;&amp;lt; Delete;
Report(biv)["Analysis of Variance"] &amp;lt;&amp;lt; Delete;
Report(biv)["Parameter Estimates"] &amp;lt;&amp;lt; Delete;
*/	&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Apr 2020 09:38:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256141#M50324</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-04-05T09:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to delete outlinebox that not required from graphs</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256157#M50329</link>
      <description>&lt;P&gt;Also consider using &amp;lt;&amp;lt;Visibility rather than &amp;lt;&amp;lt;Delete.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Report(biv)[Outline Box(3)] &amp;lt;&amp;lt; Visibility("collapse");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;"Collapse" will hide the box and remove the space it uses in the report, without deleting the box. Two advantages: (1) the displaybox numbering does not shift around and (2) some platforms might be confused by deleting certain display boxes they depend on.&lt;/P&gt;&lt;P&gt;I like Jim's final example combined with Visibility:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
biv = Bivariate(
	Y( :NPN1 ),
	X( :PNP1 ),
	Fit Where( :SITE == 1, Fit Line( {Line Color( {213, 72, 87} )} ) ));
	
Report(biv)["Summary of Fit"] &amp;lt;&amp;lt; Visibility("collapse");
Report(biv)["Analysis of Variance"] &amp;lt;&amp;lt; Visibility("collapse");
Report(biv)["Parameter Estimates"] &amp;lt;&amp;lt; Visibility("collapse");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;which explains itself to anyone that needs to understand or maintain it later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Apr 2020 11:29:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-delete-outlinebox-that-not-required-from-graphs/m-p/256157#M50329</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-04-05T11:29:33Z</dc:date>
    </item>
  </channel>
</rss>

