<?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 Compile multiple .html files generated from JSL script in web report in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Compile-multiple-html-files-generated-from-JSL-script-in-web/m-p/532264#M75529</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've run a continuous script &amp;amp; save 6 charts as individual file (.html).&lt;/P&gt;&lt;P&gt;How do I combined my 6 html files into 1 web report (something like this JMP sample)?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WebDesignesCrow_0-1660121758952.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44696i10ABC665BE08E171/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WebDesignesCrow_0-1660121758952.png" alt="WebDesignesCrow_0-1660121758952.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I checked the scripting index, it gives below script but my script and data table change to generate the 6 charts &amp;amp; files.&lt;/P&gt;&lt;P&gt;So, when I tried to fit in below script into my script, the charts did not show correctly as I wanted to.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp", Invisible );
webreport =
New Web Report(
	Add Report(
		Distribution(
			Continuous Distribution(
				Column( :weight )
			),
			Nominal Distribution( Column( :age ) )
		),
		Title( "Distribution Web Report" ),
		Description(
			"This report was created with the sample found in the Scripting Index"
		)
	),
	Add Report(
		Bivariate(
			Y( :weight ),
			X( :height ),
			Automatic Recalc( 1 ),
			Fit Line( {Line Color( {213, 72, 87} )} ),
			Local Data Filter(
				Add Filter( columns( :sex ) )
			)
		)
	)
);
webreport &amp;lt;&amp;lt; Index( Title( "Big Class Report" ) );
file = webreport &amp;lt;&amp;lt; Save( "$TEMP" );
If( !Is Empty( file ),
	Web( file )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any suggestion or simple way to do it?&lt;/P&gt;&lt;P&gt;I'm using JMP 15 &amp;amp; attached herewith the JSL script&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:26:58 GMT</pubDate>
    <dc:creator>WebDesignesCrow</dc:creator>
    <dc:date>2023-06-11T11:26:58Z</dc:date>
    <item>
      <title>Compile multiple .html files generated from JSL script in web report</title>
      <link>https://community.jmp.com/t5/Discussions/Compile-multiple-html-files-generated-from-JSL-script-in-web/m-p/532264#M75529</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've run a continuous script &amp;amp; save 6 charts as individual file (.html).&lt;/P&gt;&lt;P&gt;How do I combined my 6 html files into 1 web report (something like this JMP sample)?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WebDesignesCrow_0-1660121758952.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44696i10ABC665BE08E171/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WebDesignesCrow_0-1660121758952.png" alt="WebDesignesCrow_0-1660121758952.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I checked the scripting index, it gives below script but my script and data table change to generate the 6 charts &amp;amp; files.&lt;/P&gt;&lt;P&gt;So, when I tried to fit in below script into my script, the charts did not show correctly as I wanted to.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp", Invisible );
webreport =
New Web Report(
	Add Report(
		Distribution(
			Continuous Distribution(
				Column( :weight )
			),
			Nominal Distribution( Column( :age ) )
		),
		Title( "Distribution Web Report" ),
		Description(
			"This report was created with the sample found in the Scripting Index"
		)
	),
	Add Report(
		Bivariate(
			Y( :weight ),
			X( :height ),
			Automatic Recalc( 1 ),
			Fit Line( {Line Color( {213, 72, 87} )} ),
			Local Data Filter(
				Add Filter( columns( :sex ) )
			)
		)
	)
);
webreport &amp;lt;&amp;lt; Index( Title( "Big Class Report" ) );
file = webreport &amp;lt;&amp;lt; Save( "$TEMP" );
If( !Is Empty( file ),
	Web( file )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any suggestion or simple way to do it?&lt;/P&gt;&lt;P&gt;I'm using JMP 15 &amp;amp; attached herewith the JSL script&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:26:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Compile-multiple-html-files-generated-from-JSL-script-in-web/m-p/532264#M75529</guid>
      <dc:creator>WebDesignesCrow</dc:creator>
      <dc:date>2023-06-11T11:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Compile multiple .html files generated from JSL script in web report</title>
      <link>https://community.jmp.com/t5/Discussions/Compile-multiple-html-files-generated-from-JSL-script-in-web/m-p/532283#M75530</link>
      <description>&lt;P&gt;My suggestion is that you create a journal window at the beginning of your script, and then rather than saving each output as interactive html, that you copy the output to te journal window.&amp;nbsp; Then at the end of the script, you save the whole journal to interactive html.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 09:54:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Compile-multiple-html-files-generated-from-JSL-script-in-web/m-p/532283#M75530</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-08-10T09:54:21Z</dc:date>
    </item>
  </channel>
</rss>

