<?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 Ignoring outliers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147677#M26086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the advice chaps.&lt;/P&gt;&lt;P&gt;. It certainly gives me ideas for this problem and several other current issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jun 2009 19:18:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-26T19:18:03Z</dc:date>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147672#M26081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm new to the forum and fairly new to qlikview, so please excuse my ignorance! Please could someone help with the following problem:&lt;/P&gt;&lt;P&gt;Basically i've got millions of rows of data and probably a 5% DQ problem, so I'm unable to use the min() or Max () functions in isolation as the DQ issues will always dominate the results. If for example we want to show the minimum weight of a car we would get a return of 1kg from the following data on car weights: 1kg, 2kg, 4kg, 850kg, 875kg, 860kg, 850kg, 850kg, 850kg, 875kg, 115,000kg and a maximum weight of 115,000kg.&lt;/P&gt;&lt;P&gt;Clearly this makes our reports a bit of nonsense to our users. Is there anyway we could get the min() function to return the lowest weight that has more than one occurrence (with the state of our data probably an occurrence rate of 5 would be more appropriate) ? and visa-versa with the maximum weight?&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 22:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147672#M26081</guid>
      <dc:creator />
      <dc:date>2009-06-24T22:35:33Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147673#M26082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if it makes sense in your situation:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;table:&lt;BR /&gt;LOAD&lt;BR /&gt; Weight,&lt;BR /&gt; count(distinct Wieght) as Frequency&lt;BR /&gt;FROM ...;&lt;BR /&gt;//&lt;BR /&gt;MaxMin:&lt;BR /&gt;LOAD&lt;BR /&gt; max(Wieght) as MaxWieght,&lt;BR /&gt; min(Wieght) as MinWieght&lt;BR /&gt;RESIDENT table&lt;BR /&gt;WHERE Frequency&amp;gt;=5&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 23:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147673#M26082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-24T23:10:58Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147674#M26083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think "minimum weight with more than one occurrence" is a good metric. If I can make a typo once, I can make the typo twice. That doesn't mean its a good car weight, and you're back to your original problem. On the opposite side, just because only one car weighs 837.952 KG doesn't make the weight wrong.&lt;/P&gt;&lt;P&gt;You may instead want either a minimum reasonable weight for cars you deal with, such as rangemax(600,min(CarWeight)), or some percentile weight, such as fractile(CarWeight,.05).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 01:13:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147674#M26083</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-25T01:13:03Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147675#M26084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the QV Cookbook example "Removing outlier values from a chart dimension." for some examples of removing outliers using chart expressions.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 02:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147675#M26084</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-06-25T02:58:07Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147676#M26085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;thanks for this, i think this is the direction i need to take.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 19:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147676#M26085</guid>
      <dc:creator />
      <dc:date>2009-06-26T19:15:13Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147677#M26086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the advice chaps.&lt;/P&gt;&lt;P&gt;. It certainly gives me ideas for this problem and several other current issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 19:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147677#M26086</guid>
      <dc:creator />
      <dc:date>2009-06-26T19:18:03Z</dc:date>
    </item>
    <item>
      <title>Ignoring outliers</title>
      <link>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147678#M26087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you point me to the cookbook example? I have the same issue.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 16:17:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignoring-outliers/m-p/147678#M26087</guid>
      <dc:creator />
      <dc:date>2010-03-23T16:17:16Z</dc:date>
    </item>
  </channel>
</rss>

