<?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: interactive HTML - file size? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596371#M80005</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2557"&gt;@John_Powell_JMP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the explanation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to easily detect if a subset is linked or not?&lt;BR /&gt;&lt;LI-MESSAGE title="How to know if a table is a linked subset?" uid="41417" url="https://community.jmp.com/t5/Discussions/How-to-know-if-a-table-is-a-linked-subset/m-p/41417#U41417" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jun 2023 19:42:18 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-06-27T19:42:18Z</dc:date>
    <item>
      <title>interactive HTML - file size?</title>
      <link>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596256#M79991</link>
      <description>&lt;P&gt;I wanted to export a plot to an interactive HTML file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The file was quite large, therefore I tried to reduce the size by generating the plot from a &lt;STRONG&gt;data view&lt;/STRONG&gt; of the non-excluded rows.&lt;/P&gt;&lt;P&gt;Surprisingly, the file size was even bigger&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1675368259412.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49739iD0015625E35CEB2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1675368259412.png" alt="hogi_0-1675368259412.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution was:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Remove the link&lt;/STRONG&gt; between data view and the original table (alternative: generate the subset without link :).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The behavior seems to depend on the plot type; for other plot types, the plot from the data view has a reduced file size compared to a plot from the original data table - but it's still quite big compared to a file that is generated with out a link.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it make sense that the html export is automatically generated for a temporary data set with cut link -&lt;BR /&gt;or alternatively: a warning could show up in the log telling the user that he could reduce the file size by cutting the link.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;concerning "cutting the link" - I posted a wish to provide a single click solution to do so:&lt;BR /&gt;&lt;LI-MESSAGE title="functionality to cut the connection between a linked table and the main table" uid="573201" url="https://community.jmp.com/t5/JMP-Wish-List/functionality-to-cut-the-connection-between-a-linked-table-and/m-p/573201#U573201" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt0 = Open( "$SAMPLE_DATA/Airline Delays.jmp" );


step1= dt0 &amp;lt;&amp;lt; Concatenate(dt0, dt0, dt0, dt0, dt0, dt0, dt0, dt0);
dt = step1 &amp;lt;&amp;lt; Concatenate(step1,step1,step1,step1);

SubsetLinked = dt &amp;lt;&amp;lt; Select Where( :Airline == "Delta" ) &amp;lt;&amp;lt; Data View;

SubsetWithoutLink = SubsetLinked&amp;lt;&amp;lt; Subset( All rows, Selected columns only( 0 ) );

gb1 = dt  &amp;lt;&amp;lt; Graph Builder(
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :Airline ), Y( :Arrival Delay ) ),
	Elements( Box Plot( X, Y, Legend( 4 ) ) )
);

gb2 = SubsetLinked  &amp;lt;&amp;lt; Graph Builder(
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :Airline ), Y( :Arrival Delay ) ),
	Elements( Box Plot( X, Y, Legend( 4 ) ) )
);

gb3 = SubsetWithoutLink  &amp;lt;&amp;lt; Graph Builder(
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :Airline ), Y( :Arrival Delay ) ),
	Elements( Box Plot( X, Y, Legend( 4 ) ) )
);

gb1 &amp;lt;&amp;lt; Save Interactive HTML( "$TEMP/fullTable.html" );
gb2 &amp;lt;&amp;lt; Save Interactive HTML( "$TEMP/linkedSubset.html" );
gb3 &amp;lt;&amp;lt; Save Interactive HTML( "$TEMP/SubsetWithoutLink.html" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 19:43:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596256#M79991</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T19:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: interactive HTML - file size?</title>
      <link>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596368#M80004</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting this question and the wish accompanying it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maintaining the link between a subset and its source table(s) requires storing relevant source table information and the links to that table. So, the additional information is expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In many cases, the link is not required for the report or dashboard you're exporting, but our export process does not have enough information to detect those situations.&amp;nbsp;It would be best if that could be explicitly stated before exporting by cutting the link as you suggest.&amp;nbsp; That way, any change in behavior caused by cutting the link in some cases can be experienced before exporting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We can consider adding a warning in the log about the additional data requirements of linked data sets, but it will need to be written in a way that doesn't alarm users that do intend to maintain the linked behavior.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 14:47:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596368#M80004</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2023-02-02T14:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: interactive HTML - file size?</title>
      <link>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596371#M80005</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2557"&gt;@John_Powell_JMP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the explanation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to easily detect if a subset is linked or not?&lt;BR /&gt;&lt;LI-MESSAGE title="How to know if a table is a linked subset?" uid="41417" url="https://community.jmp.com/t5/Discussions/How-to-know-if-a-table-is-a-linked-subset/m-p/41417#U41417" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 19:42:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/596371#M80005</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T19:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: interactive HTML - file size?</title>
      <link>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/619444#M81885</link>
      <description>&lt;P&gt;A JSL query to query a table about whether it is a linked subset did not previously exist. However, this conversation has caught the attention of JMP Development, and now a JSL message has been added in the next major release of JMP (JMP 18).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dt &amp;lt;&amp;lt; Is Linked Subset; //will return 1 or 0&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(I posted in the other thread linked to by &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;as well.)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 12:35:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/interactive-HTML-file-size/m-p/619444#M81885</guid>
      <dc:creator>Audrey_Shull</dc:creator>
      <dc:date>2023-04-03T12:35:51Z</dc:date>
    </item>
  </channel>
</rss>

