<?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 Variability chart column switcher : report summary in variables in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Variability-chart-column-switcher-report-summary-in-variables/m-p/13832#M12999</link>
    <description>&lt;P&gt;HI All,&lt;/P&gt;
&lt;P&gt;i am using variability plateform with column switcher and reading median values from variability report into a variable.&lt;/P&gt;
&lt;P&gt;it works fine for first, but when i switch click any other column in column switcher it generates error: "Cannot find item "Variability Chart for height" in outline context {"Variability Chart for height"}".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any workaround for this error. Thanks in advance.&lt;/P&gt;
&lt;P&gt;-Ram&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open( "$SAMPLE_DATA/Big Class.jmp");
new window("",
Hlistbox(
varcollist=dt&amp;lt;&amp;lt;get column names(string);
varobj=Variability Chart(
&amp;nbsp; Y( :height ),
&amp;nbsp; X( :age, :sex ),
&amp;nbsp; Max Iter( 100 ),
&amp;nbsp; Conv Limit( 0.00000001 ),
&amp;nbsp; Number Integration Abscissas( 128 ),
&amp;nbsp; Number Function Evals( 65536 ),
&amp;nbsp; Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
&amp;nbsp; Show Range Bars( 0 ),
&amp;nbsp; Show Cell Means( 0 ),
&amp;nbsp; Std Dev Chart( 0 ),
&amp;nbsp; Show Box Plots( 1 ),
&amp;nbsp; Variability Summary Report( 1 )

);
reportvar = varobj &amp;lt;&amp;lt; Report;
try(Number Col Box("", stringval));
Try(string=reportvar[StringColBox(1)] &amp;lt;&amp;lt; Get());
Try(stringval=reportvar[NumberColBox(9)] &amp;lt;&amp;lt; Get()),
String Col Box("", string);
show(string);
));
csobj=varobj&amp;lt;&amp;lt;Column Switcher( :height,&amp;nbsp; varcollist );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2020 14:25:22 GMT</pubDate>
    <dc:creator>ram_asra_gmail_</dc:creator>
    <dc:date>2020-04-20T14:25:22Z</dc:date>
    <item>
      <title>Variability chart column switcher : report summary in variables</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-chart-column-switcher-report-summary-in-variables/m-p/13832#M12999</link>
      <description>&lt;P&gt;HI All,&lt;/P&gt;
&lt;P&gt;i am using variability plateform with column switcher and reading median values from variability report into a variable.&lt;/P&gt;
&lt;P&gt;it works fine for first, but when i switch click any other column in column switcher it generates error: "Cannot find item "Variability Chart for height" in outline context {"Variability Chart for height"}".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any workaround for this error. Thanks in advance.&lt;/P&gt;
&lt;P&gt;-Ram&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open( "$SAMPLE_DATA/Big Class.jmp");
new window("",
Hlistbox(
varcollist=dt&amp;lt;&amp;lt;get column names(string);
varobj=Variability Chart(
&amp;nbsp; Y( :height ),
&amp;nbsp; X( :age, :sex ),
&amp;nbsp; Max Iter( 100 ),
&amp;nbsp; Conv Limit( 0.00000001 ),
&amp;nbsp; Number Integration Abscissas( 128 ),
&amp;nbsp; Number Function Evals( 65536 ),
&amp;nbsp; Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
&amp;nbsp; Show Range Bars( 0 ),
&amp;nbsp; Show Cell Means( 0 ),
&amp;nbsp; Std Dev Chart( 0 ),
&amp;nbsp; Show Box Plots( 1 ),
&amp;nbsp; Variability Summary Report( 1 )

);
reportvar = varobj &amp;lt;&amp;lt; Report;
try(Number Col Box("", stringval));
Try(string=reportvar[StringColBox(1)] &amp;lt;&amp;lt; Get());
Try(stringval=reportvar[NumberColBox(9)] &amp;lt;&amp;lt; Get()),
String Col Box("", string);
show(string);
));
csobj=varobj&amp;lt;&amp;lt;Column Switcher( :height,&amp;nbsp; varcollist );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 14:25:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-chart-column-switcher-report-summary-in-variables/m-p/13832#M12999</guid>
      <dc:creator>ram_asra_gmail_</dc:creator>
      <dc:date>2020-04-20T14:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Variability chart column switcher : report summary in variables</title>
      <link>https://community.jmp.com/t5/Discussions/Variability-chart-column-switcher-report-summary-in-variables/m-p/13833#M13000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What version of jmp are you using?&amp;nbsp; I don't have any errors when running the script.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should note that you try to add columns :age and :sex which is impossible since they are both x variables and can't be added to the Y for a variability chart.&amp;nbsp; Doesn't make much sense to try and compare X to X.&amp;nbsp; It's uninteresting results.&amp;nbsp; I'm using JMP 12 Pro and it automatically filtered out those columns in the switcher.&amp;nbsp; It would have been nice if it automatically filtered the :name column as well since the nominal data is invalid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 22:15:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variability-chart-column-switcher-report-summary-in-variables/m-p/13833#M13000</guid>
      <dc:creator>msharp</dc:creator>
      <dc:date>2015-08-27T22:15:39Z</dc:date>
    </item>
  </channel>
</rss>

