<?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: Generating sparklines for each row in a column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/380796#M63120</link>
    <description>&lt;P&gt;Thanks for sharing this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Excel and Gsheets have a direct way to create sparklines with a simple formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder when JMP will include that on their headers (so far only showing distributions).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Column-headers-with-sparklines/idi-p/279970" target="_blank"&gt;https://community.jmp.com/t5/JMP-Wish-List/Column-headers-with-sparklines/idi-p/279970&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Apr 2021 11:26:32 GMT</pubDate>
    <dc:creator>FN</dc:creator>
    <dc:date>2021-04-29T11:26:32Z</dc:date>
    <item>
      <title>Generating sparklines for each row in a column</title>
      <link>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/280285#M54321</link>
      <description>&lt;P&gt;What I want to do is something I have seen in one of the FDE tutorials&amp;nbsp;&lt;A title="Using JMP® Pro to Pre-Process Functional Data and Create Surrogate Models" href="http://www.jmp.com/en_us/events/ondemand/mastering-jmp/functional-data-explorer-part-1.html" target="_self"&gt;Using JMP® Pro to Pre-Process Functional Data and Create Surrogate Models&lt;/A&gt;, but I can't find the code that describes how the shown data was created:&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I create a column like X3 with my own data?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is X3 an interactive column (e.g., can be modified or updated) or just a picture column like I have seen in other examples like the Big class families sample data?&lt;/P&gt;&lt;P&gt;The former would be more interesting, but I could live with the latter if necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your help&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:03:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/280285#M54321</guid>
      <dc:creator>Feli</dc:creator>
      <dc:date>2023-06-11T11:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Generating sparklines for each row in a column</title>
      <link>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/280472#M54335</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15287"&gt;@Feli&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Create a graph using graph builder.&lt;/P&gt;
&lt;P&gt;Click the Make Into Data Table option from the red triangle to create a table of graphs.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sparklines using JMP GraphBuilder" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25564iC0AD0E775D62601F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Make into data table graphbuilder graphs.png" alt="Sparklines using JMP GraphBuilder" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Sparklines using JMP GraphBuilder&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the Raleigh Temps sample data table I created a line graph using Graph Builder as follows--&lt;/P&gt;
&lt;P&gt;I changed year to ordinal from continuous so I can have a single year for each graph.&lt;/P&gt;
&lt;P&gt;Y: Temperature&lt;/P&gt;
&lt;P&gt;X: Month&lt;/P&gt;
&lt;P&gt;Page By: Year&lt;/P&gt;
&lt;P&gt;JSL Script for creating the graph--&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables( X( :Month ), Y( :Temperature ), Page( :Year ) ),
	Elements( Line( X, Y, Legend( 4 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				4,
				Properties( -1, {Line Width( 4 )}, Item ID( "Mean", 1 ) )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&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>Mon, 20 Jul 2020 14:16:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/280472#M54335</guid>
      <dc:creator>stan_koprowski</dc:creator>
      <dc:date>2020-07-20T14:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Generating sparklines for each row in a column</title>
      <link>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/380796#M63120</link>
      <description>&lt;P&gt;Thanks for sharing this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Excel and Gsheets have a direct way to create sparklines with a simple formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder when JMP will include that on their headers (so far only showing distributions).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Column-headers-with-sparklines/idi-p/279970" target="_blank"&gt;https://community.jmp.com/t5/JMP-Wish-List/Column-headers-with-sparklines/idi-p/279970&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 11:26:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Generating-sparklines-for-each-row-in-a-column/m-p/380796#M63120</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2021-04-29T11:26:32Z</dc:date>
    </item>
  </channel>
</rss>

