<?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: Graph Builder. Combine Smoother and Line - how? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/809337#M98920</link>
    <description>&lt;P&gt;&amp;nbsp;a formalism like "curve ID column" in Fit curve to split the data into individual curves - but still to bundle similar curves based on another column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Fit Curve&lt;/STRONG&gt; has this feature - &lt;STRONG&gt;Graph Builder&lt;/STRONG&gt; could benefit from the feature as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1730324550411.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69707i0EAB21AC1C4C8A1F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1730324550411.png" alt="hogi_1-1730324550411.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Nov 2024 16:23:22 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-11-26T16:23:22Z</dc:date>
    <item>
      <title>Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658341#M84767</link>
      <description>&lt;P&gt;I have groups of measurement that I want to plot "together".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The individual measurement curves of a group should have the same color and be semi-transparent.&lt;BR /&gt;For each group there should be an additional &lt;EM&gt;&lt;STRONG&gt;smoother&lt;/STRONG&gt; &lt;/EM&gt;curve with the same color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this possible in Jmp? - without "workarounds"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;version 1:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;measurements of one groups have same color&lt;/LI&gt;
&lt;LI&gt;one curve per measurement&lt;/LI&gt;
&lt;LI&gt;transparency works&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;1 smoother line instead of 3&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#999999"&gt;the smoother curve doesn't have the "right" color [consequential error]&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1689325538795.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54691i1B2516124B12964E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1689325538795.png" alt="hogi_2-1689325538795.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;version 2:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;measurements of one groups have same color&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;nasty jumps back for the individual curves&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;transparency works&lt;/LI&gt;
&lt;LI&gt;each group has it's own smoother curve&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;smoother curves have the wrong color&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1689325503986.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54690i877252594736924A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1689325503986.png" alt="hogi_1-1689325503986.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt =Open( "$SAMPLE_DATA/Functional Data/Weekly Weather Data.jmp" );
dt &amp;lt;&amp;lt; New Column( "group",Character,"Nominal",Formula( Substr( :STATION, 8, 1 ) ));

//version 1
dt &amp;lt;&amp;lt; Graph Builder(
	Variables(
		X( :DATE ),
		Y( :TAVG ),
		Overlay( :STATION ),
		Color( :group )
	),
	Elements(
		Line( X, Y, Legend( 31 ) ),
		Smoother( X, Y, Overlay( 0 ), Legend( 32 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				31,
				Properties( 0, {Transparency( 0.2 )}, Item ID( "2", 1 ) ),
				Properties( 1, {Transparency( 0.2 )}, Item ID( "3", 1 ) ),
				Properties( 2, {Transparency( 0.2 )}, Item ID( "4", 1 ) )
			)}
		)
	)
	
);


//version 2
dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :DATE ), Y( :TAVG ), Overlay( :group ), Color( :group ) ),
	Elements(
		Line( X, Y, Legend( 31 ), Row order( 1 ) ),
		Smoother( X, Y, Legend( 32 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				31,
				Properties( 0, {Transparency( 0.2 )}, Item ID( "2", 1 ) ),
				Properties( 1, {Transparency( 0.2 )}, Item ID( "3", 1 ) ),
				Properties( 2, {Transparency( 0.2 )}, Item ID( "4", 1 ) )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 20:53:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658341#M84767</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-22T20:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658349#M84768</link>
      <description>&lt;P&gt;Try removing group from color for smoother and to remove zigzag disable Row order&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1689326214527.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54692i92361EA04427190F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1689326214527.png" alt="jthi_0-1689326214527.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 09:19:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658349#M84768</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-07-14T09:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658356#M84769</link>
      <description>&lt;P&gt;Ah, the Color = "Group" is just too much. It can be removed completely.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;concerning Zig-Zag:&lt;BR /&gt;I &lt;U&gt;want to have&lt;/U&gt; separate curves per station, this is why I enabled&amp;nbsp;&lt;STRONG&gt;row order&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Disabling the option leads to one combined curve for all stations of a group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;version 2 (b):&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;measurements of one group have same color&lt;/LI&gt;&lt;LI&gt;&lt;STRIKE&gt;&lt;FONT color="#000000"&gt;nasty jumps back for the individual curves (fixed by removing row order)&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRIKE&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;unfortunately not anymore:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt; one curve per station&lt;/EM&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;transparency works&lt;/LI&gt;&lt;LI&gt;each group has it's own smoother curve&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#000000"&gt;smoother curves with matching color&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1689326899601.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54695i7ECDA341BE1E6929/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1689326899601.png" alt="hogi_2-1689326899601.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2024 12:09:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658356#M84769</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-01T12:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658599#M84784</link>
      <description>&lt;P&gt;I hope somebody finds a way to get this graph created in Jmp (17)&amp;nbsp; - without adding new rows and columns to the graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Overlay by multiple column" uid="188405" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Overlay-by-multiple-columns/m-p/188405#U188405" 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;will solve the problem. If Overlay accepts more than one column, the user can select different Overlays for the two plot types:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Overlay for the smoother element:&lt;BR /&gt;:group-&amp;gt; one fit curve per group&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Overlay for the line element:&lt;BR /&gt;:Station -&amp;gt; separate traces per station =&amp;nbsp; no zig-zag lines&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Besides enhancing the Overlay functionality , here is another wish&lt;LI-MESSAGE title="Graph Builder: Line - possibility to add breaks" uid="658586" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Line-possibility-to-add-breaks/m-p/658586#U658586" 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;which uses a simple trick to add the breaks:&lt;BR /&gt;The idea: a measurement trace runs from left to right.&lt;BR /&gt;Each step from right to left marks the start of a new trace -&amp;gt; add a break.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1725209526019.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/67782iC915AFB4C43C47DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1725209526019.png" alt="hogi_0-1725209526019.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2024 16:58:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658599#M84784</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-01T16:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658705#M84799</link>
      <description>&lt;P&gt;Till&lt;LI-MESSAGE title="Graph Builder - Overlay by multiple columns" uid="188405" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Overlay-by-multiple-columns/m-p/188405#U188405" 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; or&amp;nbsp;&lt;LI-MESSAGE title="Graph Builder: Line - possibility to add breaks" uid="658586" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Line-possibility-to-add-breaks/m-p/658586#U658586" 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; &amp;nbsp;becomes available,&lt;/P&gt;&lt;P&gt;you can use this workaround:&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;add dummy rows with missing x / y value and select &lt;STRONG&gt;no connection&lt;/STRONG&gt; for missing values.&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1689433692693.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54747iD731F1BE93F982CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1689433692693.png" alt="hogi_0-1689433692693.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;version 3:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;same group = same color&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;no nasty zig-zag curves&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;transparency works&lt;/LI&gt;&lt;LI&gt;each group has it's own smoother curve&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#000000"&gt;smoother curves with matching color&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;new rows added to the data table&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1689433848246.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54748i25221D92AEDF19AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1689433848246.png" alt="hogi_1-1689433848246.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt =Open( "$SAMPLE_DATA/Functional Data/Weekly Weather Data.jmp" );
dt &amp;lt;&amp;lt; New Column( "group",Character,"Nominal",Formula( Substr( :STATION, 8, 1 ) ));

//version 3
stations = dt &amp;lt;&amp;lt; Summary(Group( :STATION, :NAME ));
For EACH({station}, stations[0,0], dt &amp;lt;&amp;lt; add row({:STATION=station[1],:NAME=station[2]})); 
dt &amp;lt;&amp;lt; sort( BY(:NAME, :DATE ), Replace Table);

dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :DATE ), Y( :TAVG ), Overlay( :group ) ),
	Elements(
		Line( X, Y, Legend( 1 ), Row order( 1 ), Missing Values( "No Connection" ) ),
		Smoother( X, Y, Legend( 2 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				1,
				Properties( 0, {Transparency( 0.3 )}, Item ID( "2", 1 ) ),
				Properties( 1, {Transparency( 0.3 )}, Item ID( "3", 1 ) ),
				Properties( 2, {Transparency( 0.3 )}, Item ID( "4", 1 ) )
			), Legend Model(
				2,
				Base( 0, 0, 0, Item ID( "2", 1 ) ),
				Base( 1, 0, 0, Item ID( "3", 1 ) ),
				Base( 2, 0, 0, Item ID( "4", 1 ) )
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#1000&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2024 17:12:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/658705#M84799</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-01T17:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/724714#M90780</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/494"&gt;@XanGregg&lt;/a&gt;&amp;nbsp;, will&amp;nbsp;&lt;STRONG&gt;Overlay Encoding&lt;/STRONG&gt; facilitate the creation of such plots (different color and individual fit curves for different variants - but more than one measurement curve per variant).&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 18:43:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/724714#M90780</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-19T18:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/793274#M97083</link>
      <description>&lt;P&gt;And &lt;STRONG&gt;Configure Levels&lt;/STRONG&gt;?&lt;BR /&gt;no: again the zig-zag lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1725211431688.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/67783i823DE6E052C001D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1725211431688.png" alt="hogi_1-1725211431688.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt =Open( "$SAMPLE_DATA/Functional Data/Weekly Weather Data.jmp" );
Graph Builder(
	Transform Column(
		"STATION'",
		Character,
		Set Property( "Configure Levels", 1 ),
		Formula(
			Map Value(
				:STATION,
				{"USW00092811", "USW00012924", "USW00014922", "USW00014751",
				"USW00024024", "USW00014751", "USW00024144", "USW00014751",
				"USW00094626", "USW00014751", "USW00003868", "USW00003195",
				"USW00003949", "USW00003195", "USW00013733", "USW00003195",
				"USW00013877", "USW00003195", "USW00053182", "USW00003195",
				"USW00093067", "USW00003195", "USW00093242", "USW00003195",
				"USW00093718", "USW00003195"},
				Unmatched( :STATION )
			)
		)
	),
	Variables( X( :DATE ), Y( :TAVG ), Overlay( :STATION' ) ),
	Elements(
		Line( X, Y, Legend( 1 ), Row order( 1 ), Missing Values( "No Connection" ) ),
		Smoother( X, Y, Legend( 2 ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Sun, 01 Sep 2024 17:34:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/793274#M97083</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-01T17:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/793289#M97084</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;If you generate such plots regularly, please have a look at&amp;nbsp;&lt;LI-MESSAGE title="QuickSelect Toolbar" uid="566965" url="https://community.jmp.com/t5/JMP-Add-Ins/QuickSelect-Toolbar/m-p/566965#U566965" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;.&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;There is a Shortcut Icon to&amp;nbsp;create the dummy rows automatically and to sort the table to put the dummy rows in the right position.&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;The feature was removed from QuickSelect Toolbar.&lt;BR /&gt;A similar feature in now available via the GraphBuilder Toolbar&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1766422127486.png" style="width: 16px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/89511i74D9C6DF9811789E/image-dimensions/16x20?v=v2" width="16" height="20" role="button" title="hogi_0-1766422127486.png" alt="hogi_0-1766422127486.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_4-1725212238363.png" style="width: 229px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/67786iCB3F732E3E2979BA/image-dimensions/229x86?v=v2" width="229" height="86" role="button" title="hogi_4-1725212238363.png" alt="hogi_4-1725212238363.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 16:49:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/793289#M97084</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-22T16:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/799156#M97507</link>
      <description>&lt;P&gt;&lt;BR /&gt;We are just beta testing a "remote control" AddIn for Graph Builder which will facilitate the manual formatting of the plots.&lt;BR /&gt;I added a button to remove the zig-zag lines : )&lt;BR /&gt;&lt;BR /&gt;compared to "add dummy rows" it has the benefit that it doesn't collided with&amp;nbsp;&lt;LI-MESSAGE title="Sort data table + add rows + concatenate -- make it possible" uid="724336" url="https://community.jmp.com/t5/JMP-Wish-List/Sort-data-table-add-rows-concatenate-make-it-possible/m-p/724336#U724336" 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;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6362020820112w800h540r372" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6362020820112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6362020820112w800h540r372');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6362020820112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 13:25:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/799156#M97507</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-16T13:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/809337#M98920</link>
      <description>&lt;P&gt;&amp;nbsp;a formalism like "curve ID column" in Fit curve to split the data into individual curves - but still to bundle similar curves based on another column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Fit Curve&lt;/STRONG&gt; has this feature - &lt;STRONG&gt;Graph Builder&lt;/STRONG&gt; could benefit from the feature as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1730324550411.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69707i0EAB21AC1C4C8A1F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1730324550411.png" alt="hogi_1-1730324550411.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 16:23:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/809337#M98920</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-11-26T16:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/921044#M107980</link>
      <description>&lt;P&gt;A nice improvement in JMP19 is the &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt; feature, which allows us to apply transparency much easier:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1766437141151.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/89518i0D734511054559B9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1766437141151.png" alt="hogi_0-1766437141151.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;same group = same color&lt;/LI&gt;
&lt;LI&gt;transparency via Type Properties - no need to set it manually for every curve.&lt;/LI&gt;
&lt;LI&gt;each group has it's own smoother curve (overlay encoding = auto or color)&lt;/LI&gt;
&lt;LI&gt;&lt;FONT color="#000000"&gt;smoother curves with matching color&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;just the &lt;FONT style="font-size: 1em;" color="#FF0000"&gt;&lt;STRONG&gt;zig-zag lines &lt;/STRONG&gt;&lt;FONT color="#000000"&gt;need some extra effort *)&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;*) and this topic may be addressed in a future version of JMP:&lt;BR /&gt;&lt;/SPAN&gt;&lt;A style="font-size: 1em;" href="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Line-possibility-to-add-breaks/idc-p/921029/highlight/true#M8150" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Line-possibility-to-add-breaks/idc-p/921029/highlight/true#M8150&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;cool!&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables(
		X( :DATE ),
		Y( :TAVG ),
		Overlay( :group, Overlay Encoding( "Color" ) )
	),
	Elements(Smoother( X, Y, Legend( 2 ) ),  Line( X, Y, Legend( 1 ), Ordering( "Row Order" ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				1,
				Type Properties( 0, "H Line", {Transparency( 0.2 )} )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 09:59:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/921044#M107980</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-07T09:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/931369#M108815</link>
      <description>&lt;P&gt;cool, JMP20 will bring a very easy solution for the issue with&amp;nbsp;&lt;SPAN&gt;the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;zig-zag lines&amp;nbsp;&lt;/FONT&gt;:&amp;nbsp;&lt;/STRONG&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Line-possibility-to-add-breaks/idc-p/929879/highlight/true#M8256" target="_blank"&gt;Yes, stay Tuned!&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1771349759556.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94084iFE887F048BE08F48/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1771349759556.png" alt="hogi_0-1771349759556.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt =Open( "$SAMPLE_DATA/Functional Data/Weekly Weather Data.jmp" );
dt &amp;lt;&amp;lt; New Column( "group",Character,"Nominal",Formula( Substr( :STATION, 8, 1 ) ));&lt;BR /&gt;
Graph Builder(
	Variables( X( :DATE ), Y( :TAVG ), Overlay( :group ) ),
	Elements( Line( X, Y,  Ordering( "Row Ascending" ) ), Smoother( X, Y ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1771349918234.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94087i2526491B5FCE8AE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1771349918234.png" alt="hogi_1-1771349918234.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 17:38:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/931369#M108815</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-17T17:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graph Builder. Combine Smoother and Line - how?</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/931372#M108816</link>
      <description>&lt;P&gt;It feels like a game changer for specific types of plots, such as grouped I-V curves.&lt;BR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2738"&gt;@isabelleswaenep&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 17:43:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-Builder-Combine-Smoother-and-Line-how/m-p/931372#M108816</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-17T17:43:45Z</dc:date>
    </item>
  </channel>
</rss>

