<?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 Overlay several histograms in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3973#M3973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you can combine histograms onto one plot using Analyze &amp;gt; Distributions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, if your data is categorical you can simply make a bar chart of the different variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing that your data is not categorical, in which case you need to bin your data into categorical columns, and then make a barchart of the categorical columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give us a better idea of what your data looks like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Nov 2011 21:32:11 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2011-11-07T21:32:11Z</dc:date>
    <item>
      <title>Overlay several histograms</title>
      <link>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3972#M3972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a way in JMP to overlay histograms coming from 3 different sources on one plot.&lt;/P&gt;&lt;P&gt;I've been trying several things but all I could do thus far is put the three histograms next to or below one another.&lt;/P&gt;&lt;P&gt;What I would like to have is one plot containing the different histograms in different colors.&lt;/P&gt;&lt;P&gt;Any pointers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 16:03:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3972#M3972</guid>
      <dc:creator>jeroenbornauw</dc:creator>
      <dc:date>2011-11-07T16:03:54Z</dc:date>
    </item>
    <item>
      <title>Overlay several histograms</title>
      <link>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3973#M3973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you can combine histograms onto one plot using Analyze &amp;gt; Distributions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, if your data is categorical you can simply make a bar chart of the different variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing that your data is not categorical, in which case you need to bin your data into categorical columns, and then make a barchart of the categorical columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give us a better idea of what your data looks like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 21:32:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3973#M3973</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2011-11-07T21:32:11Z</dc:date>
    </item>
    <item>
      <title>Overlay several histograms</title>
      <link>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3974#M3974</link>
      <description>&lt;P&gt;Below is a jsl example of PMroz' suggestion using the Chart platform or alternatively Graph Builder to generate overlaid "histograms". Both platforms leave space between bars which may not be desired. It seems not to be possible to adjust spacing as in e.g. Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier; color: #a70096;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$ENGLISH_SAMPLE_DATA/Big Class.jmp" );
// get bins from histogram
dist = dt &amp;lt;&amp;lt; Distribution(
          Column( :Weight ),
          save( level midpoints ),
          invisible
);
dist &amp;lt;&amp;lt; close window;
col = Column( dt, N Col( dt ) );
col &amp;lt;&amp;lt; set modeling type( Nominal );
// Chart histogram
Chart( X( col, :sex ), Y( N ), Bar Chart( 1 ) );
// Graph Builder histogram
Graph Builder(
          Show Control Panel( 0 ),
          Variables( X( col ), Overlay( :sex ) ),
          Elements(
                    Bar(
                              X,
                              Legend( 2 ),
                              Bar Style( "Side by side" ),
                              Summary Statistic( "Mean" )
                    )
          )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 17.0px Courier; color: #a70096;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 14:12:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3974#M3974</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2018-06-14T14:12:33Z</dc:date>
    </item>
    <item>
      <title>Overlay several histograms</title>
      <link>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3975#M3975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't had good results trying to overlay histograms because one obscures the other or the details get muddied if using transparency. However, you can do it in JMP with the Right-Click in Graph &amp;gt; Edit &amp;gt; Copy Frame Contents from one graph and use Paste Frame Contents into another graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option is Compare Densities in the Oneway platform which shows overlaid (or stacked) smooth density curves.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2011 20:28:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Overlay-several-histograms/m-p/3975#M3975</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2011-11-09T20:28:22Z</dc:date>
    </item>
  </channel>
</rss>

