<?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: how to plot an overlay variability chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87705#M38701</link>
    <description>&lt;P&gt;You can create a new virtual column by right clicking on one of the variables in the column names in the Columns area, you can select Formula to create a new column in which you can concatenate the 3 column's values into one column, and then use that column to drag into the Page drop area&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="customtransfer.PNG" style="width: 960px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14992iCFBD54E23C4C2F55/image-size/large?v=v2&amp;amp;px=999" role="button" title="customtransfer.PNG" alt="customtransfer.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Jan 2019 20:24:04 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-01-03T20:24:04Z</dc:date>
    <item>
      <title>how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86641#M38649</link>
      <description>&lt;P&gt;I am a new one for JMP :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;For example, &lt;SPAN&gt;I have&amp;nbsp;4 columns&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;Gender&amp;nbsp;Score1 Score2:&lt;/P&gt;&lt;P&gt;Jason&amp;nbsp; M&amp;nbsp;98 87&lt;/P&gt;&lt;P&gt;Alice&amp;nbsp;F 67 78&lt;/P&gt;&lt;P&gt;Emma&amp;nbsp;F 89 79&lt;/P&gt;&lt;P&gt;John&amp;nbsp;M 70 89&lt;/P&gt;&lt;P&gt;Jennifer 76 65&lt;/P&gt;&lt;P&gt;I would like to generate a varibility chart (although the example only has 1 data for each people). I want to plot 2 curves (in different color for example) in 1 figure grouped by&amp;nbsp;Gender, and connect the data with a line for each group. The x axis names need to be the listing order, like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 564px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14986iDAA2D3A3C65224FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 17:51:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86641#M38649</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T17:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86642#M38650</link>
      <description>&lt;P&gt;Graph Builder is what you want to use.&amp;nbsp; It is documented in the Essential Graphics document&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help==&amp;gt;Books==&amp;gt;Essential Graphing&lt;/P&gt;
&lt;P&gt;The below graph was generated interactively, using the Big Class sample data table.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="builder.PNG" style="width: 950px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14966i023C7983676D9A3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="builder.PNG" alt="builder.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is a script that also generates the above graph&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Variables( X( :sex ), Y( :weight ), Color( :sex ) ),
	Elements( Points( X, Y, Legend( 3 ) ), Line( X, Y, Legend( 4 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 44.3877551020408 ), Max( 164.387755102041 ),
			Inc( 20 ), Minor Ticks( 0 )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Jan 2019 04:19:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86642#M38650</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T04:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86658#M38654</link>
      <description>&lt;P&gt;Hi, you can use also&lt;/P&gt;&lt;P&gt;Analyze --&amp;gt; QUALITY and PROCESS --&amp;gt; VARIABILITY /ATTRIBUTE GAUGE CHART&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled1.jpg" style="width: 768px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14969i6F8B5E810DBE11E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled1.jpg" alt="Untitled1.jpg" /&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="Untitled.jpg" style="width: 628px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14968i6E062457FB414272/image-dimensions/628x502?v=v2" width="628" height="502" role="button" title="Untitled.jpg" alt="Untitled.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 09:07:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/86658#M38654</guid>
      <dc:creator>gianpaolo</dc:creator>
      <dc:date>2019-01-03T09:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87628#M38670</link>
      <description>&lt;P&gt;This is an extension of&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4137"&gt;@gianpaolo&lt;/a&gt;&amp;nbsp;suggestions.&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sort your data by your grouping ( gender )&lt;/LI&gt;&lt;LI&gt;Add a sequence column call it rowid which is just the row number (this is needed for GraphBuilder)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Below are 3 examples&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Variability which has only one connection color,&lt;/LI&gt;&lt;LI&gt;GraphBuilder allows different colored connectors but can be combersome if you want a true overlay with an X-axis like datetime&lt;/LI&gt;&lt;LI&gt;Bivariate with GroupBy allows colored connectors to match the group points, and here if you wanted x to be the original row order (like a Date axis) where the groups are spread, the graph will produce a true overlay&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Variability" style="width: 980px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14978i69792584CDCC03BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="Variability" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Variability&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraphBuilder" style="width: 683px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14979i29386ED012A62789/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="GraphBuilder" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;GraphBuilder&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bivariate Group By :sex" style="width: 414px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14980i99357B4E865BC5A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="Bivariate Group By :sex" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Bivariate Group By :sex&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 12:50:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87628#M38670</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2019-01-03T12:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87682#M38686</link>
      <description>&lt;P&gt;Thanks guys. Sorry, I didn't make it clear. Is there any possible way to plot like this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 564px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14985i45B327C7D7BBFBE0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 17:44:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87682#M38686</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T17:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87687#M38688</link>
      <description>&lt;P&gt;I wasn't sure about Score 1 and Score 2. I assumed that the two scores provides the range for your error bars. That means I stacked the Score columns first. For the Name column I turned on the Row Order Levels property so that JMP would plot them in the order they appear in the data table.&lt;/P&gt;
&lt;P&gt;At the graph builder I drug the Name to the X-axis. I drug the Score column to the Y-axis. I changed the statistic to be the Mean with an Error Bar using the Range. I then drug the Gender column to the Overlay field and added the connector line. Results look like below. The JSL is below the graph.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Graph Builder.png" style="width: 599px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14987iB90FCEDA7C28ADF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Graph Builder.png" alt="Graph Builder.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;Graph Builder(
	Size( 528, 465 ),
	Show Control Panel( 0 ),
	Variables( X( :Name ), Y( :Score ), Overlay( :Gender ) ),
	Elements(
		Points(
			X,
			Y,
			Legend( 5 ),
			Summary Statistic( "Mean" ),
			Error Bars( "Range" )
		),
		Line( X, Y, Legend( 6 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				5,
				Base( 0, 0, 0, Item ID( "F", 1 ) ),
				Base( 1, 0, 0, Item ID( "M", 1 ) )
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox, {Marker Size( 6 )} )
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Jan 2019 18:09:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87687#M38688</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2019-01-03T18:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87689#M38689</link>
      <description>&lt;P&gt;Thanks Dan! It works! A further question. How I can I generate group plot in graph builder. Similar example as above&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name Gender Score1 Score2 Class&lt;/P&gt;&lt;P&gt;Jason&amp;nbsp; M&amp;nbsp;98 87 1&lt;/P&gt;&lt;P&gt;Alice&amp;nbsp;F 67 78&amp;nbsp;1&lt;/P&gt;&lt;P&gt;John&amp;nbsp;M 70 89&amp;nbsp;2&lt;/P&gt;&lt;P&gt;Emma&amp;nbsp;F 89 79&amp;nbsp;2&lt;/P&gt;&lt;P&gt;Patrick 65 98 1&lt;/P&gt;&lt;P&gt;Jennifer 76 65 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;Dan 100 99 2&lt;/P&gt;&lt;P&gt;Wendy 78 84 2&lt;/P&gt;&lt;P&gt;Would like generate 2 plots by class, just like when you using group in varibility plot:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture3.PNG" style="width: 831px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14988i65CEBE3A4E1C4FAB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture3.PNG" alt="Capture3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Further more,&amp;nbsp;i&lt;SPAN&gt;f I have&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;varibales for grouping, such as class, area, school, so I would like to have&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;2x2x2=8&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;seperate plots, j&lt;/SPAN&gt;&lt;SPAN&gt;ust like&amp;nbsp;we use the group function in varibility plot.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:30:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87689#M38689</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T19:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87691#M38690</link>
      <description>Just drag the Class variable to the Page drop area, or the Group By X drop area</description>
      <pubDate>Thu, 03 Jan 2019 19:21:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87691#M38690</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T19:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87692#M38691</link>
      <description>&lt;P&gt;Thanks Jim. Is it possible to create 2 seperate plots instead squeezing all data in 1 plot? . If I have&amp;nbsp;3 varibales for grouping, such as class, area, school, so I would like to have&amp;nbsp;2x2x2=8&amp;nbsp;seperate plots, just like&amp;nbsp;we use the group function in varibility plot.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:29:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87692#M38691</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T19:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87693#M38692</link>
      <description>Dragging to the Page area will create the separate graphs, or you can click on the "Dialog" button, and go to a User Entry Dialog box that will let you specify all of your settings, and then select the Class variable for the BY selection</description>
      <pubDate>Thu, 03 Jan 2019 19:30:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87693#M38692</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T19:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87695#M38694</link>
      <description>&lt;P&gt;Thanks Jim, but could you please show where is the Page area?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:39:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87695#M38694</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T19:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87697#M38695</link>
      <description>&lt;P&gt;Assuming you are running JMP version 12 or later, here is where the Page drop area is&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="page.PNG" style="width: 952px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14990i0CF0A1152AC5BAE8/image-size/large?v=v2&amp;amp;px=999" role="button" title="page.PNG" alt="page.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:45:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87697#M38695</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T19:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87698#M38696</link>
      <description>&lt;P&gt;hmm... I am usning JMP11, and doesn't have this area :(&lt;/img&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any suggestion?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:46:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87698#M38696</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T19:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87701#M38698</link>
      <description>&lt;P&gt;You can run the Graph Builder platform twice and within each run, add a Local Data Filter, and only select Class 1 for the first instance of Graph Builder, and selec Class 2 for the second instance.&amp;nbsp; Here is an example using the Big Class Sample data table, and using the variable Age instead of the variable Class.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="localfilter.PNG" style="width: 989px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14991i732AE710657E517C/image-size/large?v=v2&amp;amp;px=999" role="button" title="localfilter.PNG" alt="localfilter.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 19:59:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87701#M38698</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T19:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87703#M38700</link>
      <description>&lt;P&gt;Thanks! I updated the JMP to 12 from company software center so I can use Page now. However, it only allow me to drag 1 column into the page area. If I have 3 varaibles for group, how to generate 2x2x2=8 seperate plots?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 20:07:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87703#M38700</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T20:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87705#M38701</link>
      <description>&lt;P&gt;You can create a new virtual column by right clicking on one of the variables in the column names in the Columns area, you can select Formula to create a new column in which you can concatenate the 3 column's values into one column, and then use that column to drag into the Page drop area&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="customtransfer.PNG" style="width: 960px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14992iCFBD54E23C4C2F55/image-size/large?v=v2&amp;amp;px=999" role="button" title="customtransfer.PNG" alt="customtransfer.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 20:24:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87705#M38701</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-03T20:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to plot an overlay variability chart</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87716#M38707</link>
      <description>&lt;P&gt;Thanks a lot! It works!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 21:42:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-plot-an-overlay-variability-chart/m-p/87716#M38707</guid>
      <dc:creator>jasongao</dc:creator>
      <dc:date>2019-01-03T21:42:29Z</dc:date>
    </item>
  </channel>
</rss>

