<?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 Get Y axis column name from the variability chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633044#M83145</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to get the Y axis column name from the variability? I tried using get Y axis but doesn't work. Any suggestions?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Variability Data/2 Factors Crossed.jmp" );
obj = dt &amp;lt;&amp;lt; Variability Chart( Y( :Measurement ), X( :Operator, :part# ) );

ax = obj &amp;lt;&amp;lt; get y axis;
Show( ax );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 May 2023 02:19:02 GMT</pubDate>
    <dc:creator>Jackie_</dc:creator>
    <dc:date>2023-05-19T02:19:02Z</dc:date>
    <item>
      <title>Get Y axis column name from the variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633044#M83145</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to get the Y axis column name from the variability? I tried using get Y axis but doesn't work. Any suggestions?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Variability Data/2 Factors Crossed.jmp" );
obj = dt &amp;lt;&amp;lt; Variability Chart( Y( :Measurement ), X( :Operator, :part# ) );

ax = obj &amp;lt;&amp;lt; get y axis;
Show( ax );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 02:19:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633044#M83145</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-05-19T02:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Get Y axis column name from the variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633056#M83147</link>
      <description>&lt;P&gt;Here is one way to get the Y column name&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Variability Data/2 Factors Crossed.jmp" );
obj = dt &amp;lt;&amp;lt; variability chart( Y( :Measurement ), X( :Operator, :part# ) );

// Parse the returned script to find the specified Y column
theYColumn = Word(
	1,
	Substr( Char( obj &amp;lt;&amp;lt; get script ), Contains( Char( obj &amp;lt;&amp;lt; get script ), "Y(:" ) + 3 ),
	"),"
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2023 04:44:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633056#M83147</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-05-19T04:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get Y axis column name from the variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633087#M83153</link>
      <description>&lt;P&gt;Column name is in at least four different places:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Your creation script&lt;/LI&gt;
&lt;LI&gt;Three times in the report
&lt;UL&gt;
&lt;LI&gt;Variability Gauge Analysis for Measurement&lt;/LI&gt;
&lt;LI&gt;Variability Chart for Measurement&lt;/LI&gt;
&lt;LI&gt;And Y-axis&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Is there a specific reason to get it from Y-axis which is most likely the most difficult one?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Variability Data/2 Factors Crossed.jmp");

var = dt &amp;lt;&amp;lt; Variability Chart(Y(:Measurement), X(:Operator, :part#));

yaxis_text = Report(var)["Variability Chart for Measurement", Text Box(1)] &amp;lt;&amp;lt; get text;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2023 07:34:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633087#M83153</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-19T07:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Get Y axis column name from the variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633202#M83160</link>
      <description>&lt;P&gt;I am trying to create an interactive plot with radio buttons and column switchers. For that I need to get column names in the current Y axis VC to be able to replace columns in the column switcher&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 13:16:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633202#M83160</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-05-19T13:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Get Y axis column name from the variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633203#M83161</link>
      <description>&lt;P&gt;Thanks Jim and Jarmo!&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 13:17:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Get-Y-axis-column-name-from-the-variability-chart/m-p/633203#M83161</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-05-19T13:17:00Z</dc:date>
    </item>
  </channel>
</rss>

