<?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 Pattern Recognition in QlikView in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807303#M285002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an application that reports on credit card transactions using credit card "terminals" - these are the handheld machines that you type in your PIN when you pay using a credit card. Each of these terminals has an ID so it is uniquely recognised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is to identify terminals that are no longer used or are out of service. Identifying this fact is a little tricky as some terminals are used every day (so it's easy to identify when they are no longer used) but some are used during the week only and some weekends only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any tools or does anyone have any ideas regarding recognising the pattern of use (from the transactions) and identifying a "break" in that pattern?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Dec 2014 15:40:08 GMT</pubDate>
    <dc:creator>alexis</dc:creator>
    <dc:date>2014-12-10T15:40:08Z</dc:date>
    <item>
      <title>Pattern Recognition in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807303#M285002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an application that reports on credit card transactions using credit card "terminals" - these are the handheld machines that you type in your PIN when you pay using a credit card. Each of these terminals has an ID so it is uniquely recognised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is to identify terminals that are no longer used or are out of service. Identifying this fact is a little tricky as some terminals are used every day (so it's easy to identify when they are no longer used) but some are used during the week only and some weekends only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any tools or does anyone have any ideas regarding recognising the pattern of use (from the transactions) and identifying a "break" in that pattern?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 15:40:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807303#M285002</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-12-10T15:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Pattern Recognition in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807304#M285003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If(Today()-Max(Date)&amp;gt; x, 'unused', 'used') as terminalusage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with x being the maximum allowed number of days since the last usage (date).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 23:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807304#M285003</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-12-10T23:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pattern Recognition in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807305#M285004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you also could create a usage "pattern" per week like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Pow(2, WeekDay(Date)))&amp;nbsp; for all Dates having transactions using one terminal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rank 1 of this pattern count over the last x weeks could be the usual pattern of a specific device and non matching patterns could be marked as a change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 23:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807305#M285004</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-12-10T23:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pattern Recognition in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807306#M285005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marco - you are ion the right track as each terminal has a different length of "inactivity".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I understanding correctly that,for example if a terminal works weekend only then,for a specific week:&lt;/P&gt;&lt;P&gt;2power5 +2power6 = 32 +64 = 96&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you are suggesting is to calculate this on a week by week basis and see how closely it is to the first week by ranking? Can you give an example - sounds really interesting..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Alexs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2014 23:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pattern-Recognition-in-QlikView/m-p/807306#M285005</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-12-10T23:50:55Z</dc:date>
    </item>
  </channel>
</rss>

