<?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: Tracking a 96-well over time in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47458#M27069</link>
    <description>&lt;P&gt;Get your Graph Builder display the way you want it, then try adding your 'time' variable to the &lt;A href="http://www.jmp.com/support/help/13-2/Local_Data_Filter.shtml" target="_self"&gt;local data filter.&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Nov 2017 13:42:52 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2017-11-21T13:42:52Z</dc:date>
    <item>
      <title>Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47457#M27068</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a kinetic assay&amp;nbsp;that records OD over time on a 96 well plate.&lt;/P&gt;&lt;P&gt;The output is OD and I have data columns with time and&amp;nbsp;location (A1, A2 etc) for each OD value.&lt;/P&gt;&lt;P&gt;By applying the map shape I can visualize the 96-well plate in Graph Builder on a certain time (e.g. at 0 or 1 hour).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible for Graph Builder or another SAS JMP feature to show the development of OD&amp;nbsp;over time on the same plate&amp;nbsp;(similar to the Bubble Plot function) ?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 12:37:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47457#M27068</guid>
      <dc:creator>FantaBola</dc:creator>
      <dc:date>2017-11-21T12:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47458#M27069</link>
      <description>&lt;P&gt;Get your Graph Builder display the way you want it, then try adding your 'time' variable to the &lt;A href="http://www.jmp.com/support/help/13-2/Local_Data_Filter.shtml" target="_self"&gt;local data filter.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 13:42:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47458#M27069</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-11-21T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47461#M27070</link>
      <description>&lt;P&gt;To expand on Ian's answer, you can add a local data filter to your graph, change your time axis to ordinal if you want to see discrete sample times, and then use animation under the data filter. If&amp;nbsp;you run the script below you would just need to press play in the upper left:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here( 1 );

dt = Open( "$SAMPLE_DATA/Time Series/Air.jmp" );

Column( dt, "date" ) &amp;lt;&amp;lt; Set Modeling Type( "Ordinal" );

graph = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 516, 680 ),
	Show Control Panel( 0 ),
	Variables( Y( :Ozone Concentration ) ),
	Elements( Bar( Y, Legend( 3 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :date ),
			Where( :date == 1953936000 ),
			Display( :date, Size( 256, 360 ), List Display )
		),
		Animation( Animate Column( :date ), Animate Rate( 90 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"Ozone Concentration",
			ScaleBox,
			{Format( "Best", 9 ), Min( 0 ), Max( 10 ), Inc( 2 ), Minor Ticks( 1 )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="play.PNG" style="width: 241px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8361i1BB71A47FE9840D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="play.PNG" alt="play.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 13:49:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47461#M27070</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2017-11-21T13:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47465#M27072</link>
      <description>&lt;P&gt;JMP can do some fairly amazing things with this kind of data. (I'm not sure what you already know so some of this might be a little basic, who knows who else might read it.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first step it to get it in the right format. From an Excel mindset this is absolutely daunting, but the table tools in JMP make it easy. What we need is one column for time, one column for OD and one column for location. (also you might have replicates of a treatment on the plate, but that gets a little more complex, so I'm going to run with the simple case. &amp;nbsp;If we had that, we might want to get the means of the treatment replicates, and in that case, we wouldn't have a location column, we would have a treatment column.)&lt;/P&gt;
&lt;P&gt;-To get all the locations in one place, go to Tables&amp;gt;Stack, and stack all the columns that have OD data, and don't select any other column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-This should result in one Time col, one col with OD values, and one col with Location IDs. (Rename the column with OD values "OD600" or something appropriate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First graph: &amp;nbsp;Use graph builder, put Time on the X axis and OD on the Y. Depending &amp;nbsp;on what your're growing you see a roughtly sigmoidal shaped data point cloud. Last, add the Location variable to the overlay role. In the graph elements, turn on Data points and either the smoother or the connected line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bubble plot: X is time, Time is time, Y is OD, and ID is location. &amp;nbsp;Run this graph, click the play button, and watch the most painful time series graph appear before your eyes, then never do this again or make any of you respected coworkers watch it. &amp;nbsp; IMHO, the time variable should never be used for both the X axis variable and the Time role simultaneously. This is a graphical sin and an abomination (again, in my humble opinion, which might be strong.) If you had measured pH, O2, CO2, NH4, your favorite carbon source, Gln, Glu, or anyother metabolite, then looking at ratios of these on the X and Y axis and using the time variable in the time role is likely to be an interesting graph to look at. Bubble plots are great for looking at relationships between variables over time in groups and as individuals.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The real graph: &amp;nbsp;Analyze&amp;gt;Specialized modeling&amp;gt;Fit Curve. &amp;nbsp;Put Time in X, put DO in Y, and put Location in the ID/Group role. Go to the hot spot and try picking models that fit your data. (Sigmoidal&amp;gt;Logistic&amp;gt; try 4p and 5p options) &amp;nbsp; The JMP fits all your growth curves and will give you a table of parameter estimates. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps a little. This is usually some pretty fun data to work with, so if you end up making some killer figures, post an image if you can.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;-B&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: In JMP 14 there is a new tool that will do even more for this case, but I'm sure that will be covered when its available.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 15:17:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47465#M27072</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2017-11-21T15:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47514#M27092</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was easy to re-write the script to my case and add my wells under Shape.&lt;/P&gt;&lt;P&gt;I have added the output below&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="96 well.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8378i8EF51534A429F204/image-size/large?v=v2&amp;amp;px=999" role="button" title="96 well.PNG" alt="96 well.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 07:54:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47514#M27092</guid>
      <dc:creator>FantaBola</dc:creator>
      <dc:date>2017-11-22T07:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47526#M27100</link>
      <description>I am glad that worked. How did you draw the circles in your shapes? They look nice!</description>
      <pubDate>Wed, 22 Nov 2017 12:32:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47526#M27100</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2017-11-22T12:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47530#M27102</link>
      <description>&lt;P&gt;I did not draw them. JMP have developed JMP-files with the 96-well and 384-well format. You can then add them under Map role in column properties.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 13:12:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47530#M27102</guid>
      <dc:creator>FantaBola</dc:creator>
      <dc:date>2017-11-22T13:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47623#M27153</link>
      <description>&lt;P&gt;So they do, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2017 22:02:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47623#M27153</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2017-11-24T22:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47665#M27163</link>
      <description>&lt;P&gt;The shape files for the microtiter plate wells can be found in &lt;A href="https://community.jmp.com/t5/JMP-Sample-Data/Micro-Titre-Plate-Shapes/ta-p/21484/jump-to/first-unread-message" target="_self"&gt;here &lt;/A&gt;in the JMP File Exchange area of the JMP Community.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Nov 2017 14:59:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/47665#M27163</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2017-11-26T14:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109082#M39600</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I tried to make change 96 well plate design according to my plate design, which is 10*10 and 4 wells left empty in the middle. But my out put is showing empty graph.&amp;nbsp;Is it possible to&amp;nbsp;use this graph for producing heatmaps for multiple variables.&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="Capture.PNG" style="width: 200px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15429iB70EEA0DE4ABE3AA/image-size/small?v=v2&amp;amp;px=200" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 20:01:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109082#M39600</guid>
      <dc:creator>ranjith94</dc:creator>
      <dc:date>2019-02-06T20:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109123#M39612</link>
      <description>&lt;P&gt;So, you made your own shape files for your 10x10 plate layout? Did you follow the steps described in this &lt;A href="https://community.jmp.com/t5/JMP-Blog/New-shapes-in-JMP-Microtitre-plates/ba-p/30265" target="_self"&gt;blog post&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, you can add the new shapes to Graph Builder but your response data (Y) does not appear? Did you drag the data column with the response data into the middle of Graph Builder? Did you follow the steps described in the blog post mentioned above?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 12:05:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109123#M39612</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-02-07T12:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109143#M39618</link>
      <description>&lt;P&gt;Yes, I tried dragging my response variable to the middle, still is showing an empty graph with error message "No shape file found for Location".&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="empty.PNG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15442i77D485611B2333E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="empty.PNG" alt="empty.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 16:12:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109143#M39618</guid>
      <dc:creator>ranjith94</dc:creator>
      <dc:date>2019-02-07T16:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109147#M39620</link>
      <description>&lt;P&gt;I don't know what is wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I verified that my 96-well example is working. Then I examined your files and found them to be correctly defined but I had the same problem as you. I created a new data table for the Name and XY information, copied your data values to my tables, added the column properties. I tested it with all the files together in the same test folder but nothing help. The problem is not the data, it is one of your shape files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend that you contact JMP Technical Support for further help. ( support@jmp.com )&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 18:19:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109147#M39620</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-02-07T18:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking a 96-well over time</title>
      <link>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109156#M39621</link>
      <description>&lt;P&gt;In the meantime, I created the shape and test files for 100 wells. I did not take the time to remove the 4 center wells from the shape files or the test file. It works for me.&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="Capture.PNG" style="width: 759px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15443i5F04DD70C0D4EDBA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be sure to save the files together or move the two shape definition files to the common shape folder documented for your version of JMP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is definitely something wrong with the shape files that you created, but I can't see what it is.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 18:33:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tracking-a-96-well-over-time/m-p/109156#M39621</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-02-07T18:33:32Z</dc:date>
    </item>
  </channel>
</rss>

