<?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 How to edit X-axis Group name in variability chart using script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51436#M29163</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have plotted a variability chart by grouping some variable using script.&lt;/P&gt;&lt;P&gt;Please find the attached plot.&lt;/P&gt;&lt;P&gt;I don't want to print group variable name into the x-axis but I want it in the variable title name.&lt;/P&gt;&lt;P&gt;Could you please give a solution to delete the X variable name from the X axis.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Feb 2018 06:34:26 GMT</pubDate>
    <dc:creator>Pushpendra</dc:creator>
    <dc:date>2018-02-16T06:34:26Z</dc:date>
    <item>
      <title>How to edit X-axis Group name in variability chart using script</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51436#M29163</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have plotted a variability chart by grouping some variable using script.&lt;/P&gt;&lt;P&gt;Please find the attached plot.&lt;/P&gt;&lt;P&gt;I don't want to print group variable name into the x-axis but I want it in the variable title name.&lt;/P&gt;&lt;P&gt;Could you please give a solution to delete the X variable name from the X axis.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 06:34:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51436#M29163</guid>
      <dc:creator>Pushpendra</dc:creator>
      <dc:date>2018-02-16T06:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit X-axis Group name in variability chart using script</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51444#M29168</link>
      <description>&lt;P&gt;Here are 3 ways to edit out the Group 1 X axis&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// Setup some sample data to resemble the example provided
dt = Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );
dt:NPN1 &amp;lt;&amp;lt; set name( "ISO_NW-N+" ) &amp;lt;&amp;lt; set property( "Units", "A" );
dt &amp;lt;&amp;lt; New Column( "Lot_Des", character, set each value( "ML7" ) );
dt &amp;lt;&amp;lt; New Column( "DR", character, set each value( "S_0.40" ) );
dt &amp;lt;&amp;lt; New Column( "Group 1", character, set each value( "ISO_NW-N+" ) );

// Sample 1, use the window name as the reference to delete the
// 2 components of the X axis that are not wanted
Variability Chart(
	Y( :Name( "ISO_NW-N+" ) ),
	X( :Group 1, :DR, :Lot_Des, :wafer ),
	Max Iter( 100 ),
	Conv Limit( 0.00000001 ),
	Number Integration Abscissas( 128 ),
	Number Function Evals( 65536 ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Std Dev Chart( 0 )
);
Window( "Semiconductor Capability - Variability Chart of ISO_NW-N+" )[Border Box( 5 )] &amp;lt;&amp;lt; delete;
Window( "Semiconductor Capability - Variability Chart of ISO_NW-N+" )[NomAxisBox( 4 )] &amp;lt;&amp;lt; delete;

// Sample 2, Set a Pointer/Handle variable reference to delete the
// 2 components of the X axis that are not wanted
VC = Variability Chart(
	Y( :Name( "ISO_NW-N+" ) ),
	X( :Group 1, :DR, :Lot_Des, :wafer ),
	Max Iter( 100 ),
	Conv Limit( 0.00000001 ),
	Number Integration Abscissas( 128 ),
	Number Function Evals( 65536 ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Std Dev Chart( 0 )
);
Report( VC )[Border Box( 5 )] &amp;lt;&amp;lt; delete;
Report( VC )[NomAxisBox( 4 )] &amp;lt;&amp;lt; delete;

// Sample 3, Since there is only 1 value for the Group 1 column,
// and the title of the chart will come from the Y Column, not
// the X Column, then just leave Group 1 out of the definition
// of the chart
Variability Chart(
	Y( :Name( "ISO_NW-N+" ) ),
	X( :DR, :Lot_Des, :wafer ),
	Max Iter( 100 ),
	Conv Limit( 0.00000001 ),
	Number Integration Abscissas( 128 ),
	Number Function Evals( 65536 ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Std Dev Chart( 0 )
);


&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Feb 2018 11:54:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51444#M29168</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-02-16T11:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit X-axis Group name in variability chart using script</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51584#M29245</link>
      <description>&lt;P&gt;Thank you so much.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is working fine.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 10:20:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-edit-X-axis-Group-name-in-variability-chart-using-script/m-p/51584#M29245</guid>
      <dc:creator>Pushpendra</dc:creator>
      <dc:date>2018-02-20T10:20:32Z</dc:date>
    </item>
  </channel>
</rss>

