<?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 create isopleths of dissolved oxygen for lake? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74236#M35793</link>
    <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 19 Sep 2018 17:05:22 GMT</pubDate>
    <dc:creator>ayman</dc:creator>
    <dc:date>2018-09-19T17:05:22Z</dc:date>
    <item>
      <title>How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73541#M35762</link>
      <description>&lt;P&gt;I am trying to create an isopleth of dissolve oxygen for a&amp;nbsp;lake as shown below using JMP. The data I have includes month, depth, and dissolved oxygen.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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="Isopleths-of-dissolved-oxygen-for-lake-Rabindra-Sarobar-during-the-simulation-period_W640.jpg" style="width: 640px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/12454i88622021B9057C39/image-size/large?v=v2&amp;amp;px=999" role="button" title="Isopleths-of-dissolved-oxygen-for-lake-Rabindra-Sarobar-during-the-simulation-period_W640.jpg" alt="Isopleths-of-dissolved-oxygen-for-lake-Rabindra-Sarobar-during-the-simulation-period_W640.jpg" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 18:33:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73541#M35762</guid>
      <dc:creator>ayman</dc:creator>
      <dc:date>2018-09-18T18:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73570#M35764</link>
      <description>&lt;P&gt;In JMP there are two methods that might work, depending upon your table setup. Likely a contour is what you want&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is a picture, from JMP sample data Little Pond. Its x axis is spatial distance not time. You will have to customize the color scheme.&amp;nbsp; A script to create the picture follows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can produce a contour with Main Menu Graphs &amp;gt; Contour Plot or Graph Builder. Contour plot has more customization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Contour choose Days and Depth for X and Dissolved Oxygen for Y Ask to fill areas.&amp;nbsp; You can choose your levels for the Z variable (Dissolved Oxygen).&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="image.png" style="width: 768px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/12456i0C7F37C018B800FF/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;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Little Pond.jmp" );

obj = dt &amp;lt;&amp;lt; Contour Plot(
	X( :X, :Y ),
	Y( :Z ),
	Show Data Points( 0 ),
	Fill Areas( 1 ),
	Label Contours( 1 ),
	Transform( "None" ),
	Specify Contours( Min( -4 ), Max( 8 ), N( 7 ) ),
	SendToReport(
		Dispatch( {}, "Contour Plot Graph", FrameBox, {Frame Size( 594, 326 )} )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Sep 2018 20:01:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73570#M35764</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-18T20:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73596#M35768</link>
      <description>&lt;P&gt;It is working! thank you so much.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 22:00:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73596#M35768</guid>
      <dc:creator>ayman</dc:creator>
      <dc:date>2018-09-18T22:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73599#M35770</link>
      <description>&lt;P&gt;Oh, one item that is on a wish list that I hope JMP tackles in the next version is to separate the outline of shapes and the fill.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since I liked your plot with the contour lines visible and a different color than the fill, I decided to see what it would take to get the outlines.&amp;nbsp; It's not too bad. Here is the picture.&amp;nbsp; The script is attached; it was tested in JMP12, 13, and 14.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 768px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/12457iECF2438EB87EBA62/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 22:26:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/73599#M35770</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-18T22:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74228#M35789</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I make the line smoother?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 16:32:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74228#M35789</guid>
      <dc:creator>ayman</dc:creator>
      <dc:date>2018-09-19T16:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74235#M35792</link>
      <description>&lt;P&gt;For smoothing, the most general option is to create a smoothed version of your data in a new column with a regular modeling platform or the Guassian Process platform. And then graph that data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In JMP 14, there is a smoothness slider in Graph Builder's contour element which will dynamically apply a kernel density smoother. However, it doesn't have the line labeling options of the Contour Plot platform.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="contoursmoother.gif" style="width: 817px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/12462i35D54EC521517B5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="contoursmoother.gif" alt="contoursmoother.gif" /&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 16:52:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74235#M35792</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2018-09-19T16:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to create isopleths of dissolved oxygen for lake?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74236#M35793</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Sep 2018 17:05:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-isopleths-of-dissolved-oxygen-for-lake/m-p/74236#M35793</guid>
      <dc:creator>ayman</dc:creator>
      <dc:date>2018-09-19T17:05:22Z</dc:date>
    </item>
  </channel>
</rss>

