<?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 Question in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17933#M16349</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bingo!!!!&amp;nbsp; That got it.&amp;nbsp; Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Apr 2016 19:32:26 GMT</pubDate>
    <dc:creator>Steven_Moore</dc:creator>
    <dc:date>2016-04-11T19:32:26Z</dc:date>
    <item>
      <title>Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17927#M16343</link>
      <description>&lt;P&gt;The following is part of a script I am trying to run. I want to divide my X variable before plotting. I have tried several things, but am not getting it right. Can someone help me?&lt;BR /&gt; &lt;BR /&gt;Thanks!&lt;BR /&gt; &lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
Variables(
X( :Line 160 Cases ),
Y( :Line 160 Broke ),
Wrap( :Month ),
Color( :Month )
),
Points( X, Y, Legend( 27 ) ),
Line Of Fit( X, Y, Legend( 29 ), Confidence of Fit( 0 ), Equation( 1 ) )
),&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:42:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17927#M16343</guid>
      <dc:creator>Steven_Moore</dc:creator>
      <dc:date>2017-11-06T14:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17928#M16344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not understand what you are saying when you say that you want to divide your X variable?&amp;nbsp; Group it in the graph, divide it by some number, split the data into separate subsets?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 17:52:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17928#M16344</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2016-04-11T17:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17929#M16345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jim,&amp;nbsp; I want to divide each X value by 1000 before plotting.&amp;nbsp; I don't want to create another column and the current X column is being used in formulas for other columns already, so I don't want to have to edit all those formulas.&lt;/P&gt;&lt;P&gt;Thankls!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 17:57:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17929#M16345</guid>
      <dc:creator>Steven_Moore</dc:creator>
      <dc:date>2016-04-11T17:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17930#M16346</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder( 
     Variables(
           X(  Transform Column( "My X/1000", Formula( :Line 160 Cases / 1000 ) ),
           Y( :Line 160 Broke ),
           Wrap( :Month ),
           Color( :Month )
     ),
     Points( X, Y, Legend( 27 ) ),
     Line Of Fit( X, Y, Legend( 29 ), Confidence of Fit( 0 ), Equation( 1 ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:43:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17930#M16346</guid>
      <dc:creator>jerry_cooper</dc:creator>
      <dc:date>2017-11-06T14:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17931#M16347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No luck:&amp;nbsp; I get an error message:&amp;nbsp; &lt;STRONG&gt;Unexpected end of input.&amp;nbsp; Perhaps there is a missing "," or ")".&amp;nbsp; Trying to parse arguments of function "Graph Builder".&amp;nbsp; Line 21 Column2:)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I typed the code exactly as you have it.&amp;nbsp; I even copied and pasted, but no luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:19:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17931#M16347</guid>
      <dc:creator>Steven_Moore</dc:creator>
      <dc:date>2016-04-11T19:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17932#M16348</link>
      <description>&lt;P&gt;Sorry, you need another closed parentheses in the X variable line (I neglected to put it there in the code that I pasted):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;           X(  Transform Column( "My X/1000", Formula( :Line 160 Cases / 1000 ) ) ),
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0px 0px 8pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:42:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17932#M16348</guid>
      <dc:creator>jerry_cooper</dc:creator>
      <dc:date>2017-11-06T14:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Script Question</title>
      <link>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17933#M16349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bingo!!!!&amp;nbsp; That got it.&amp;nbsp; Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 19:32:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Script-Question/m-p/17933#M16349</guid>
      <dc:creator>Steven_Moore</dc:creator>
      <dc:date>2016-04-11T19:32:26Z</dc:date>
    </item>
  </channel>
</rss>

