<?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 class(), increment by standard deviation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/class-increment-by-standard-deviation/m-p/552106#M550074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;want to show a chart with count of error on y, and standard deviation group of error on x&lt;/P&gt;&lt;P&gt;error is a field already in table, need to calculate standard deviation group on front end. I know i can do it in the back end, but i what to keep standard dev dynamic based on selected criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outcome of the chart in table format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say standard devation is 2, and mean is 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;stdev group&amp;nbsp;&amp;nbsp; error range&lt;/P&gt;&lt;P&gt;-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 18&amp;lt;=x&amp;lt;20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;lt;x&amp;lt;=22&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jan 2014 20:11:55 GMT</pubDate>
    <dc:creator>yelin_nyu</dc:creator>
    <dc:date>2014-01-03T20:11:55Z</dc:date>
    <item>
      <title>class(), increment by standard deviation</title>
      <link>https://community.qlik.com/t5/QlikView/class-increment-by-standard-deviation/m-p/552106#M550074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;want to show a chart with count of error on y, and standard deviation group of error on x&lt;/P&gt;&lt;P&gt;error is a field already in table, need to calculate standard deviation group on front end. I know i can do it in the back end, but i what to keep standard dev dynamic based on selected criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outcome of the chart in table format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say standard devation is 2, and mean is 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;stdev group&amp;nbsp;&amp;nbsp; error range&lt;/P&gt;&lt;P&gt;-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 18&amp;lt;=x&amp;lt;20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;lt;x&amp;lt;=22&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 20:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/class-increment-by-standard-deviation/m-p/552106#M550074</guid>
      <dc:creator>yelin_nyu</dc:creator>
      <dc:date>2014-01-03T20:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: class(), increment by standard deviation</title>
      <link>https://community.qlik.com/t5/QlikView/class-increment-by-standard-deviation/m-p/552107#M550075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your buckets are not of equal size, which is not supported by the class function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create two variables vSTD and vAVG:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=stdev(error)&lt;/P&gt;&lt;P&gt;=avg(error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then a chart with a calculated dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=class(error, vSTD, 'error', vAVG)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and an expression&lt;/P&gt;&lt;P&gt;=count(x)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to show a histogram with buckets of size of the standard deviation grouped around the mean value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 21:09:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/class-increment-by-standard-deviation/m-p/552107#M550075</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-01-03T21:09:19Z</dc:date>
    </item>
  </channel>
</rss>

