<?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: How to save control charts and its summary to the same slide in ppt in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459377#M70447</link>
    <description>&lt;P&gt;This question has been asked before.&amp;nbsp; Here is a link to the way I approach the issue&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-save-journal-as-PPT-2-graphs-per-slide-using-JSL/m-p/282561" target="_self"&gt;How to save journal as PPT (2 graphs per slide) using JSL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a complete example, using your data that creates the output you want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1644356753038.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39790i1755A7464A8130DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1644356753038.png" alt="txnelson_0-1644356753038.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "Control Charts",
	ob1 = Outline Box( "Levey Jennings of Age" ),
	ob2 = Outline Box( "Levey Jennings of Weight" ),
	ob3 = Outline Box( "Levey Jennings of Oxy" )
);
cc1 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Age,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Age ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
cc2 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Weight,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Weight ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
cc3 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Oxy,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Oxy ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
ob1 &amp;lt;&amp;lt; append( cc1 &amp;lt;&amp;lt; get picture );
ob2 &amp;lt;&amp;lt; append( cc2 &amp;lt;&amp;lt; get picture );
ob3 &amp;lt;&amp;lt; append( cc3 &amp;lt;&amp;lt; get picture );

nw &amp;lt;&amp;lt; Save Presentation( "$TEMP/jmp_example.pptx" );
Open( "$TEMP/jmp_example.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Feb 2022 21:46:32 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2022-02-08T21:46:32Z</dc:date>
    <item>
      <title>How to save control charts and its summary to the same slide in ppt</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459192#M70423</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've got script which creates block of Control charts with capabilities based on the parameter and i would like to save each report for each parameter into separate ppt slide. Any help appreciated.&lt;/P&gt;&lt;P&gt;Here are the charts:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="swiergi11_0-1644329590861.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39765i247D52EFEB9FBFEB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="swiergi11_0-1644329590861.png" alt="swiergi11_0-1644329590861.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and i would like to have each parameter chart and report on separate ppt slide:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="swiergi11_3-1644334768310.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39774i40C9078E89D368C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="swiergi11_3-1644334768310.png" alt="swiergi11_3-1644334768310.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached is the table with Control chart script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tomasz&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. and if it is possible&amp;nbsp; to save only the charts which have Ppk below 1.33 then it would be magnificent :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:43:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459192#M70423</guid>
      <dc:creator>swiergi11</dc:creator>
      <dc:date>2023-06-10T23:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to save control charts and its summary to the same slide in ppt</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459377#M70447</link>
      <description>&lt;P&gt;This question has been asked before.&amp;nbsp; Here is a link to the way I approach the issue&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-save-journal-as-PPT-2-graphs-per-slide-using-JSL/m-p/282561" target="_self"&gt;How to save journal as PPT (2 graphs per slide) using JSL&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a complete example, using your data that creates the output you want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1644356753038.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39790i1755A7464A8130DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1644356753038.png" alt="txnelson_0-1644356753038.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "Control Charts",
	ob1 = Outline Box( "Levey Jennings of Age" ),
	ob2 = Outline Box( "Levey Jennings of Weight" ),
	ob3 = Outline Box( "Levey Jennings of Oxy" )
);
cc1 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Age,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Age ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
cc2 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Weight,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Weight ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
cc3 = Control Chart(
	invisible,
	Sample Label( :Name ),
	KSigma( 3 ),
	Chart Col(
		:Oxy,
		Levey Jennings(
			Show Zones( 1 ),
			Shade Zones( 1 ),
			Test 1( 1 ),
			Test 2( 1 ),
			Test 5( 1 ),
			Test 6( 1 ),
			Test Beyond Limits( 1 )
		),
		Capability(
			Distribution(
				Continuous Distribution(
					Column( :Oxy ),
					Quantiles( 0 ),
					Horizontal Layout( 1 ),
					Vertical( 0 ),
					Outlier Box Plot( 0 ),
					Normal Quantile Plot( 1 ),
					Process Capability(
						Use Column Property Specs,
						Process Capability Analysis(
							Nonconformance( 0 ),
							Histogram( 1, Show Within Sigma Density( 0 ) )
						)
					),
					Customize Summary Statistics( Skewness( 1 ) )
				)
			)
		)
	)
);
ob1 &amp;lt;&amp;lt; append( cc1 &amp;lt;&amp;lt; get picture );
ob2 &amp;lt;&amp;lt; append( cc2 &amp;lt;&amp;lt; get picture );
ob3 &amp;lt;&amp;lt; append( cc3 &amp;lt;&amp;lt; get picture );

nw &amp;lt;&amp;lt; Save Presentation( "$TEMP/jmp_example.pptx" );
Open( "$TEMP/jmp_example.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 21:46:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459377#M70447</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-02-08T21:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to save control charts and its summary to the same slide in ppt</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459516#M70466</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;This looks very well and dose excellent job but is there a way to do similar job but keep the integrity of the original control chart script unchanged?&lt;/P&gt;&lt;P&gt;I'm extracting the capabilities from all charts so i need them in one block.&lt;/P&gt;&lt;P&gt;I do lake the approached you mentioned in the&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-save-journal-as-PPT-2-graphs-per-slide-using-JSL/m-p/282561" target="_self"&gt;How to save journal as PPT (2 graphs per slide) using JSL&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;, is there a way to modify&amp;nbsp;that script to work with control chart script?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tomasz&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 13:50:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459516#M70466</guid>
      <dc:creator>swiergi11</dc:creator>
      <dc:date>2022-02-09T13:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to save control charts and its summary to the same slide in ppt</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459560#M70471</link>
      <description>&lt;P&gt;Add the below JSL to the bottom of your script and you should get what you want&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = New Window( "Control Charts", 
	V List Box(
		obAge = Outline Box( "Control Chart for Age" ),
		obWeight = Outline Box( "Control Chart for Weight" ),
		obOxy = Outline Box( "Control Chart for Oxy" )
	)
);

ob = Outline Box( "", hlb = H List Box() );
hlb &amp;lt;&amp;lt; append( Report( gb )["Levey Jennings of Age"] );
ob2 = Outline Box( "Distributions" );
ob2 &amp;lt;&amp;lt; append( Report( gb )["Age"] );
hlb &amp;lt;&amp;lt; append( ob2 );
obAge &amp;lt;&amp;lt; append( ob &amp;lt;&amp;lt; get picture );

ob = Outline Box( "", hlb = H List Box() );
hlb &amp;lt;&amp;lt; append( Report( gb )["Levey Jennings of Weight"] );
ob2 = Outline Box( "Distributions" );
ob2 &amp;lt;&amp;lt; append( Report( gb )["Weight"] );
hlb &amp;lt;&amp;lt; append( ob2 );
obWeight &amp;lt;&amp;lt; append( ob &amp;lt;&amp;lt; get picture );

ob = Outline Box( "", hlb = H List Box() );
hlb &amp;lt;&amp;lt; append( Report( gb )["Levey Jennings of Oxy"] );
ob2 = Outline Box( "Distributions" );
ob2 &amp;lt;&amp;lt; append( Report( gb )["Oxy"] );
hlb &amp;lt;&amp;lt; append( ob2 );
obOxy &amp;lt;&amp;lt; append( ob &amp;lt;&amp;lt; get picture );

nw &amp;lt;&amp;lt; Save Presentation( "$TEMP/jmp_example2.pptx" );
Open( "$TEMP/jmp_example2.pptx" );

nw &amp;lt;&amp;lt; close window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:07:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459560#M70471</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-02-09T16:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to save control charts and its summary to the same slide in ppt</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459791#M70479</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is exactly what i needed, thanks a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tomasz&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 10:02:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-control-charts-and-its-summary-to-the-same-slide-in/m-p/459791#M70479</guid>
      <dc:creator>swiergi11</dc:creator>
      <dc:date>2022-02-10T10:02:36Z</dc:date>
    </item>
  </channel>
</rss>

