<?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 Is it possible to create Histograms from a list? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15368#M14093</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have data sets where data is in Columns.&amp;nbsp; I want to create histograms for each parameter.&lt;/P&gt;&lt;P&gt;I know that I could stack the data and us the following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Current Data Table() &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :param_value ) ), By( :param_name ) );&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to use a list to create the histograms as I have code to work on each column individually.&lt;/P&gt;&lt;P&gt;I have tried the following with no luck:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;::param_list = {:parameter1, :parameter2, :parameter3, &lt;STRONG&gt;&lt;EM&gt;:parameter4&lt;/EM&gt;&lt;/STRONG&gt;};&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Current Data Table() &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( ::param_list ) ));&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Nov 2015 18:22:15 GMT</pubDate>
    <dc:creator>chfields</dc:creator>
    <dc:date>2015-11-10T18:22:15Z</dc:date>
    <item>
      <title>Is it possible to create Histograms from a list?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15368#M14093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have data sets where data is in Columns.&amp;nbsp; I want to create histograms for each parameter.&lt;/P&gt;&lt;P&gt;I know that I could stack the data and us the following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Current Data Table() &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :param_value ) ), By( :param_name ) );&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to use a list to create the histograms as I have code to work on each column individually.&lt;/P&gt;&lt;P&gt;I have tried the following with no luck:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;::param_list = {:parameter1, :parameter2, :parameter3, &lt;STRONG&gt;&lt;EM&gt;:parameter4&lt;/EM&gt;&lt;/STRONG&gt;};&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Current Data Table() &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( ::param_list ) ));&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 18:22:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15368#M14093</guid>
      <dc:creator>chfields</dc:creator>
      <dc:date>2015-11-10T18:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create Histograms from a list?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15369#M14094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could grab the data from the table as a matrix.&amp;nbsp; Take a single row of data and transpose it - giving you the list of data required by the distribution platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 19:50:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15369#M14094</guid>
      <dc:creator>MikeD_Anderson</dc:creator>
      <dc:date>2015-11-10T19:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create Histograms from a list?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15370#M14095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this (you need to evaluate the list!):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Semi_dt = Open( “$SAMPLE_DATA/Semiconductor Capability.jmp” );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cont_lst = Semi_dt &amp;lt;&amp;lt; Get Column Names( Continuous );&lt;/P&gt;&lt;P&gt;Distribution( Column( Eval( cont_lst ) ),&amp;nbsp; Ignore Platform Preferences( 1 ), Histograms Only );&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2015 22:53:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-create-Histograms-from-a-list/m-p/15370#M14095</guid>
      <dc:creator>Kevin_Anderson</dc:creator>
      <dc:date>2015-11-10T22:53:42Z</dc:date>
    </item>
  </channel>
</rss>

