<?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: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/144781#M40037</link>
    <description>&lt;P&gt;I think I have finally figured out your actual stated problem.....please forgive my thick headedness......&lt;/P&gt;
&lt;P&gt;Here is a way to match the point colors with the line colors using a Color Theme.....in this case the SAS Statistical color theme&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sasstat.PNG" style="width: 828px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15758iC18F170DB02EDD7B/image-size/large?v=v2&amp;amp;px=999" role="button" title="sasstat.PNG" alt="sasstat.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

// Set the row state colors
dt &amp;lt;&amp;lt; color by column( :age , color theme("SAS Statistical"));

// Find out how many groupings there are
summarize( dt, grpBy = By( :age ) );

// Create the chart
ow = Oneway(
	Y( :height ),
	X( :age ),
	Plot Actual by Quantile( 1 ),
	Box Plots( 1 )
);

// Get the colors defined by the Color Theme
c = Get Color Theme Detail( "SAS Statistical" );

// Loop across the segments setting the lines to the required colors
For( i = 1, i &amp;lt;= N Items( grpBy ) * 2, i = i + 2,
	seg = (Report( ow )[FrameBox( 2 )] &amp;lt;&amp;lt; Find Seg( Line Seg( i ) ));
	seg &amp;lt;&amp;lt; line color( c[3][Ceiling( i / 2 )] );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Feb 2019 19:19:13 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-02-21T19:19:13Z</dc:date>
    <item>
      <title>Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/124080#M40007</link>
      <description>&lt;P&gt;In Oneway plot, I color the markers with the color theme "SAS Statistical" in Row Legend, but the lines connecting the markers in the Normal Quantile Plot still use "JMP Default" colors:&amp;nbsp;&amp;nbsp;&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="Picture1.png" style="width: 852px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15733i45B565735566A3D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture1.png" alt="Picture1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can manually change the line colors to&amp;nbsp;"SAS Statistical", by going to the "Legend Settings" and change the Color Theme to&amp;nbsp;to&amp;nbsp;"SAS Statistical".&amp;nbsp; However, this method actually hard-code the colors in the JSL as highlighted below, and I cannot use it as a generic solution.&amp;nbsp; For example, in a different dataset with four groups (1C, 2E, 3E and 4E), the line color of 4E is not defined.&amp;nbsp; Is there a generic way using JSL, to keep the line colors consistent with the row colors I set in Row Legend, regardless of how many groups I have?&amp;nbsp; Thanks.&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="Picture2.png" style="width: 852px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15734i46487BE318E1F0FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture2.png" alt="Picture2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Oneway(
	Y( :Data ),
	X( :Group ),
	Plot Actual by Quantile( 1 ),
	Line of Fit( 0 ),
	Box Plots( 1 ),
	X Axis Proportional( 0 ),
	Points Jittered( 1 ),
	Grand Mean( 0 ),
	SendToReport(
		Dispatch(
			{},
			"222",
			ScaleBox,
			&lt;FONT color="#FF0000"&gt;{Legend Model(
				1,
				Properties(
					0,
					{Line Color( -7306931 ), Fill Color( -7306931 )},
					Item ID( "1C", 1 )
				),
				Properties(
					1,
					{Line Color( -13654875 ), Fill Color( -13654875 )},
					Item ID( "2E", 1 )
				),
				Properties(
					2,
					{Line Color( -6727072 ), Fill Color( -6727072 )},
					Item ID( "3E", 1 )
				)
			)}&lt;/FONT&gt;
		),
		Dispatch(
			{},
			"Oneway Plot",
			FrameBox,
			{DispatchSeg( Box Plot Seg( 1 ), Line Color( "Red" ) ),
			DispatchSeg( Box Plot Seg( 2 ), Line Color( "Red" ) ),
			DispatchSeg( Box Plot Seg( 3 ), Line Color( "Red" ) ),
			Row Legend(
				Group,
				Color( 1 ),
				Color Theme( "SAS Statistical" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Feb 2019 02:07:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/124080#M40007</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-21T02:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/130549#M40016</link>
      <description>&lt;P&gt;I believe you can get what you want by just setting the Row State colors for the rows, and then running your Oneway.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="colorby.PNG" style="width: 761px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15736iB6687F70A7E9D198/image-size/large?v=v2&amp;amp;px=999" role="button" title="colorby.PNG" alt="colorby.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

dt &amp;lt;&amp;lt; color by column( :sex );
Oneway(
	Y( :height ),
	X( :sex ),
	Plot Actual by Quantile( 1 ),
	Box Plots( 1 ),
	SendToReport(
		Dispatch(
			{},
			"Oneway Plot",
			FrameBox,
			{DispatchSeg( Box Plot Seg( 1 ), Line Color( "Red" ) ), DispatchSeg(
				Box Plot Seg( 2 ),
				Line Color( "Red" )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Feb 2019 07:02:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/130549#M40016</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-02-21T07:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/141246#M40028</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;Thank you for your reply.&amp;nbsp; However, it doesn't work for color themes other than "JMP Default".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

dt &amp;lt;&amp;lt; color by column( :sex , &lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;color theme("SAS Statistical")&lt;/STRONG&gt;&lt;/FONT&gt;);
Oneway(
	Y( :height ),
	X( :sex ),
	Plot Actual by Quantile( 1 ),
	Box Plots( 1 ),
	SendToReport(
		Dispatch(
			{},
			"Oneway Plot",
			FrameBox,
			{DispatchSeg( Box Plot Seg( 1 ), Line Color( "Red" ) ), DispatchSeg(
				Box Plot Seg( 2 ),
				Line Color( "Red" )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Picture3.png" style="width: 746px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15748i987979D78A50F659/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture3.png" alt="Picture3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 16:03:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/141246#M40028</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-21T16:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/144781#M40037</link>
      <description>&lt;P&gt;I think I have finally figured out your actual stated problem.....please forgive my thick headedness......&lt;/P&gt;
&lt;P&gt;Here is a way to match the point colors with the line colors using a Color Theme.....in this case the SAS Statistical color theme&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sasstat.PNG" style="width: 828px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15758iC18F170DB02EDD7B/image-size/large?v=v2&amp;amp;px=999" role="button" title="sasstat.PNG" alt="sasstat.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

// Set the row state colors
dt &amp;lt;&amp;lt; color by column( :age , color theme("SAS Statistical"));

// Find out how many groupings there are
summarize( dt, grpBy = By( :age ) );

// Create the chart
ow = Oneway(
	Y( :height ),
	X( :age ),
	Plot Actual by Quantile( 1 ),
	Box Plots( 1 )
);

// Get the colors defined by the Color Theme
c = Get Color Theme Detail( "SAS Statistical" );

// Loop across the segments setting the lines to the required colors
For( i = 1, i &amp;lt;= N Items( grpBy ) * 2, i = i + 2,
	seg = (Report( ow )[FrameBox( 2 )] &amp;lt;&amp;lt; Find Seg( Line Seg( i ) ));
	seg &amp;lt;&amp;lt; line color( c[3][Ceiling( i / 2 )] );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Feb 2019 19:19:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/144781#M40037</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-02-21T19:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/145438#M40042</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;Thank you!&amp;nbsp; This works beautifully.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 20:03:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/145438#M40042</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-21T20:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/149481#M40056</link>
      <description>&lt;P&gt;Slightly modified the script so I don't have to go back to&amp;nbsp;dt&amp;nbsp;to find the # of groups, and made it into a function for easier use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;SetNQPLineColor = function({ow,theme},
	{Default Local},
	
	// Get the colors defined by the Color Theme
	c = Get Color Theme Detail( eval(theme) );
	
	// Get the # of line segs
	ow_frmbx = ow &amp;lt;&amp;lt; xpath("//FrameBox[@helpKey=\!"Oneway QuantilePlot\!"]");
	Nseg = ow_frmbx &amp;lt;&amp;lt; segCount("Line Seg");
	Nseg=Nseg[1];
	
	// Loop across the segments setting the lines to the required colors
	For( i = 1, i &amp;lt;= Nseg, i+= 2,
		seg = ow_frmbx &amp;lt;&amp;lt; Find Seg( Line Seg( i ) );
		seg &amp;lt;&amp;lt; Line Color( c[3][Ceiling( i / 2 )] );
	);
	
	"Done!";
);


Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

// Set the row state colors
dt &amp;lt;&amp;lt; color by column( :age , color theme("SAS Statistical"));

// Create the chart
ow1 = Oneway(
	Y( :height ),
	X( :age ),
	Plot Actual by Quantile( 1 ),
	Box Plots( 1 )
);

SetNQPLineColor(ow1,"SAS Statistical");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Picture4.png" style="width: 820px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15771i2A2ADCF1C4B695F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture4.png" alt="Picture4.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 02:21:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/149481#M40056</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-22T02:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156370#M40067</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;A follow-up question:&amp;nbsp; if there are more than 12 groups, I get the following error, and line#13 becomes white:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Ceiling(i / 2) = 13;
Subscript Range in access or evaluation of 'c[3][Ceiling(i / 2)]' , c[3][/*###*/Ceiling( i / 2 )]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Picture6.png" style="width: 712px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15783i322D8B628E2BB9FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture6.png" alt="Picture6.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;P&gt;It seems that "SAS Statistical" only has 12 colors defined:&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;&amp;nbsp;N Items(Eval List(Get Color Theme Detail("SAS Statistical")[3])) = 12;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So how does JMP handle it if there are more groups than the # of colors defined in the color&amp;nbsp;theme?&amp;nbsp; For example, in the plot above&amp;nbsp;group 13 has a marker color different from the other 12 groups.&amp;nbsp; How does JMP determine this color?&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 16:30:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156370#M40067</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-22T16:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156486#M40068</link>
      <description>&lt;P&gt;Off hand I do not know.&amp;nbsp; I would look in the documentation, and/or run some tests, and find out what it does.&amp;nbsp; Another option is for you to take over all control of setting the colors, and for you to come up with your own coloring.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 16:46:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156486#M40068</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-02-22T16:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156598#M40071</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;Thank you for your suggestion.&amp;nbsp; I think I may have solved the problem.&amp;nbsp; If I only set the color of the first 12 groups and leave the rest as they are, it seems that JMP has an algorithm to generate their&amp;nbsp;colors&amp;nbsp;based on these&amp;nbsp;12 groups, and the generated colors&amp;nbsp;match the row colors from "color by column":&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="Picture7.png" style="width: 744px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/15785i994759FAEC90000B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Picture7.png" alt="Picture7.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 17:14:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156598#M40071</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-22T17:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Match Line Color of Normal Quantile Plot to Row Color Set in Row Legend</title>
      <link>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156884#M40078</link>
      <description>&lt;P&gt;Forgot to post the updated JSL function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;SetNQPLineColor = function({ow,theme},
	{Default Local},&lt;BR /&gt;
	// Get the colors defined by the Color Theme
	c = Get Color Theme Detail( eval(theme) );
	
	// Get the # of line segs
	ow_frmbx = ow &amp;lt;&amp;lt; xpath("//FrameBox[@helpKey=\!"Oneway QuantilePlot\!"]");
	Nseg = ow_frmbx &amp;lt;&amp;lt; segCount("Line Seg");
	Nseg=Nseg[1];
	
	// Loop across the segments setting the lines to the required colors
	For( i = 1, i &amp;lt;= min( Nseg , 2 * N Items(Eval List(c[3])) ), i+= 2,
		seg = ow_frmbx &amp;lt;&amp;lt; Find Seg( Line Seg( i ) );
		seg &amp;lt;&amp;lt; Line Color( c[3][Ceiling( i / 2 )] );
	);
	
	"Done";
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 18:20:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Match-Line-Color-of-Normal-Quantile-Plot-to-Row-Color-Set-in-Row/m-p/156884#M40078</guid>
      <dc:creator>pzang</dc:creator>
      <dc:date>2019-02-22T18:20:21Z</dc:date>
    </item>
  </channel>
</rss>

