<?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: Create a line plot (graph builder) with a partial shaded background in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Create-a-line-plot-graph-builder-with-a-partial-shaded/m-p/422789#M67192</link>
    <description>&lt;P&gt;JMP allows for one to add graphics to any of the graphs and plots generated in JMP.&amp;nbsp; Here is an example taken from the Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1633074257852.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36214i66D3EC27D85BD8F3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1633074257852.png" alt="txnelson_0-1633074257852.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;A complete set of graphic primitives' are available&amp;nbsp; &amp;nbsp;Here is a listing taken from the Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1633074551512.png" style="width: 734px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36215i04FFAFB7F0C90B6A/image-dimensions/734x640?v=v2" width="734" height="640" role="button" title="txnelson_1-1633074551512.png" alt="txnelson_1-1633074551512.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the script that generated the above graph&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Bivariate( Y( :weight ), X( :height ), FitLine );
rbiv = biv &amp;lt;&amp;lt; report;
framebox = rbiv[frame box( 1 )];
framebox &amp;lt;&amp;lt;
Add Graphics Script(
	Transparency( 0.5 );
	Fill Color( {1.0, 0.5, 0.0} );
	Polygon( [60, 72, 57], [75, 120, 120] );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Oct 2021 07:49:39 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2021-10-01T07:49:39Z</dc:date>
    <item>
      <title>Create a line plot (graph builder) with a partial shaded background</title>
      <link>https://community.jmp.com/t5/Discussions/Create-a-line-plot-graph-builder-with-a-partial-shaded/m-p/422780#M67191</link>
      <description>&lt;P&gt;I have a very nice x y plot in the graph builder and now would like to add a shaded area that envelopes&amp;nbsp; the data already plotted. The envelope is not a confidence area, rather a borderline.&amp;nbsp; Any suggestions ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;&lt;P&gt;Harald&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:17:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Create-a-line-plot-graph-builder-with-a-partial-shaded/m-p/422780#M67191</guid>
      <dc:creator>harald_ackerman</dc:creator>
      <dc:date>2023-06-11T11:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create a line plot (graph builder) with a partial shaded background</title>
      <link>https://community.jmp.com/t5/Discussions/Create-a-line-plot-graph-builder-with-a-partial-shaded/m-p/422789#M67192</link>
      <description>&lt;P&gt;JMP allows for one to add graphics to any of the graphs and plots generated in JMP.&amp;nbsp; Here is an example taken from the Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1633074257852.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36214i66D3EC27D85BD8F3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1633074257852.png" alt="txnelson_0-1633074257852.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;A complete set of graphic primitives' are available&amp;nbsp; &amp;nbsp;Here is a listing taken from the Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1633074551512.png" style="width: 734px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36215i04FFAFB7F0C90B6A/image-dimensions/734x640?v=v2" width="734" height="640" role="button" title="txnelson_1-1633074551512.png" alt="txnelson_1-1633074551512.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the script that generated the above graph&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Bivariate( Y( :weight ), X( :height ), FitLine );
rbiv = biv &amp;lt;&amp;lt; report;
framebox = rbiv[frame box( 1 )];
framebox &amp;lt;&amp;lt;
Add Graphics Script(
	Transparency( 0.5 );
	Fill Color( {1.0, 0.5, 0.0} );
	Polygon( [60, 72, 57], [75, 120, 120] );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 07:49:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Create-a-line-plot-graph-builder-with-a-partial-shaded/m-p/422789#M67192</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-10-01T07:49:39Z</dc:date>
    </item>
  </channel>
</rss>

