<?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: Exclude data points from some charts but not data file in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Exclude-data-points-from-some-charts-but-not-data-file/m-p/228725#M45372</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16304"&gt;@mochar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there are at least two ways to do what you are looking for.&lt;/P&gt;
&lt;P&gt;first, you can use a "local data filter"&amp;nbsp;separately for the graphs you want to filter. this will not affect the other plots.&lt;/P&gt;
&lt;P&gt;the other option is manipulating the "timing" of the execution by using and not using "automatic recalc".&lt;/P&gt;
&lt;P&gt;have a look at this script and let us know if it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here (1);
Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Big Class - Variability Chart of height, weight by sex",
	h list box (V List Box(
		Variability Chart(
			Automatic Recalc( 1 ),
			Y( :height ),
			X( :sex ),
			Model( "Main Effect" ),
			Variability Summary Report( 1 ),
			Points Jittered( 1 )
		),
		Variability Chart(
			Automatic Recalc( 1 ),
			Y( :weight ),
			X( :sex ),
			Variability Summary Report( 1 ),
			Mean of Std Dev( 1 ),
			Points Jittered( 1 )
		)
	),
	Distribution(
	Automatic Recalc( 1 ),
	Continuous Distribution( Column( :height ) ),
	Continuous Distribution( Column( :weight ) ),
	Local Data Filter(
		Add Filter(
			columns( :height, :weight ),
			Where( :height &amp;gt;= 55 &amp;amp; :height &amp;lt;= 70 ),
			Where( :weight &amp;gt;= 64 &amp;amp; :weight &amp;lt;= 160 )
		)
	)
),
));&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 10 Oct 2019 06:13:36 GMT</pubDate>
    <dc:creator>ron_horne</dc:creator>
    <dc:date>2019-10-10T06:13:36Z</dc:date>
    <item>
      <title>Exclude data points from some charts but not data file</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-data-points-from-some-charts-but-not-data-file/m-p/228704#M45369</link>
      <description>&lt;P&gt;I have a data set where I have conditions, and different measurements taken.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Sex &amp;nbsp; &amp;nbsp; &amp;nbsp; Age &amp;nbsp; &amp;nbsp; &amp;nbsp; Height &amp;nbsp; &amp;nbsp; &amp;nbsp; Shoe size&lt;/P&gt;&lt;P&gt;Male &amp;nbsp; &amp;nbsp;&amp;nbsp; 20 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 66 in. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 10&lt;/P&gt;&lt;P&gt;Female&amp;nbsp; 18 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 60 in. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 8&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am making a script to view distribution, and variation. I would like to make graphs for height, and shoe size(seperately). In some instances&amp;nbsp; I have some height outliers (let's assume), but the shoe size is still valid. What line of code would I have to add to my scripts, to not include the outlier rows in one of my scripts... but include it in my other script? If I use hide/exclude, it disappears completely and doesn't show up in any graphs. I would like to have control to which graphs show which rows. I am using the Variability Gauge Chart and Distribution Charts.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 23:44:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-data-points-from-some-charts-but-not-data-file/m-p/228704#M45369</guid>
      <dc:creator>mochar</dc:creator>
      <dc:date>2019-10-09T23:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude data points from some charts but not data file</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-data-points-from-some-charts-but-not-data-file/m-p/228725#M45372</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16304"&gt;@mochar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there are at least two ways to do what you are looking for.&lt;/P&gt;
&lt;P&gt;first, you can use a "local data filter"&amp;nbsp;separately for the graphs you want to filter. this will not affect the other plots.&lt;/P&gt;
&lt;P&gt;the other option is manipulating the "timing" of the execution by using and not using "automatic recalc".&lt;/P&gt;
&lt;P&gt;have a look at this script and let us know if it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here (1);
Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Big Class - Variability Chart of height, weight by sex",
	h list box (V List Box(
		Variability Chart(
			Automatic Recalc( 1 ),
			Y( :height ),
			X( :sex ),
			Model( "Main Effect" ),
			Variability Summary Report( 1 ),
			Points Jittered( 1 )
		),
		Variability Chart(
			Automatic Recalc( 1 ),
			Y( :weight ),
			X( :sex ),
			Variability Summary Report( 1 ),
			Mean of Std Dev( 1 ),
			Points Jittered( 1 )
		)
	),
	Distribution(
	Automatic Recalc( 1 ),
	Continuous Distribution( Column( :height ) ),
	Continuous Distribution( Column( :weight ) ),
	Local Data Filter(
		Add Filter(
			columns( :height, :weight ),
			Where( :height &amp;gt;= 55 &amp;amp; :height &amp;lt;= 70 ),
			Where( :weight &amp;gt;= 64 &amp;amp; :weight &amp;lt;= 160 )
		)
	)
),
));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Oct 2019 06:13:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-data-points-from-some-charts-but-not-data-file/m-p/228725#M45372</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2019-10-10T06:13:36Z</dc:date>
    </item>
  </channel>
</rss>

