<?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: Script to Select Data in Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40580#M23754</link>
    <description>&lt;P&gt;My data table has points for the whole vehicle and the map in the above example is just points on the left side of the vehicle. I would like to script to be able to highlight just the points in that map to analyze the data in for detail for that specific side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just realized that I could have a column describing its location and pull the data out by selecting matching.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Jun 2017 18:22:11 GMT</pubDate>
    <dc:creator>alexhemmert1</dc:creator>
    <dc:date>2017-06-16T18:22:11Z</dc:date>
    <item>
      <title>Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40566#M23746</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a custom map to graph measurement locations on a vehicle to give a visual representation of the process throughout the vehicle.&amp;nbsp;As you can see below. I would like to be able to select all the data represented in the graph builder below and pull it into a new datatable using script Does anyone know how to select data in graph builder using script?&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="Capture.PNG" style="width: 865px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6492i1E9FC3759B4C4F03/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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:53:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40566#M23746</guid>
      <dc:creator>alexhemmert1</dc:creator>
      <dc:date>2017-06-16T16:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40575#M23750</link>
      <description>&lt;P&gt;Selecting information in Graph Builder also selects rows in your data table. &amp;nbsp;To get the selected rows use this command on your underlying table (pointed to by the variable dt):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;selected_rows = dt &amp;lt;&amp;lt; get selected rows();

if (nrows(selected_rows) &amp;gt; 0,
	// Do some action here
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Jun 2017 18:00:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40575#M23750</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-06-16T18:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40576#M23751</link>
      <description>&lt;P&gt;Is there anyway to script to automoatically select of the rows show in graph builder, so I don't have to highlight them manually?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 18:03:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40576#M23751</guid>
      <dc:creator>alexhemmert1</dc:creator>
      <dc:date>2017-06-16T18:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40577#M23752</link>
      <description>&lt;P&gt;What do you mean by this statement:&amp;nbsp;"Select the rows shown in graph builder"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JMP datasets and child objects are "cross-linked". &amp;nbsp;I.e. if you select rows in a table, then any graphs created from that dataset will also highlight the corresponding data in the graph. &amp;nbsp;Similarly if you select something in graph builder, behind the scenes the corresponding rows in the data table will also be selected.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 18:09:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40577#M23752</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-06-16T18:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40580#M23754</link>
      <description>&lt;P&gt;My data table has points for the whole vehicle and the map in the above example is just points on the left side of the vehicle. I would like to script to be able to highlight just the points in that map to analyze the data in for detail for that specific side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just realized that I could have a column describing its location and pull the data out by selecting matching.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 18:22:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40580#M23754</guid>
      <dc:creator>alexhemmert1</dc:creator>
      <dc:date>2017-06-16T18:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40581#M23755</link>
      <description>&lt;P&gt;That will work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; select rows where(:side == "L");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Jun 2017 18:24:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40581#M23755</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-06-16T18:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script to Select Data in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40583#M23757</link>
      <description>&lt;P&gt;apparently you are using different maps for different parts of the car. &amp;nbsp;If this is the case, you can read the data from the map, and it will tell you what parts are displayable from that map, and then select all of the points in your measurement data table that have those parts.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 20:00:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-to-Select-Data-in-Graph-Builder/m-p/40583#M23757</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-16T20:00:30Z</dc:date>
    </item>
  </channel>
</rss>

