<?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 Re: Skew() in Qlik vs skewness() in R in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278470#M26600</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure about Skewness, but I have noticed that QlikView has it own different way to calculate Fractile (or percentile). My guess is that it might have its own way to calculate Skewness also. Have you tried to replicate your expression in QlikSense to see if the calculation (rather than the function) gives the right output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Mar 2017 13:36:51 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-03-13T13:36:51Z</dc:date>
    <item>
      <title>Skew() in Qlik vs skewness() in R</title>
      <link>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278469#M26599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;BR /&gt;Maybe someone know why value of skewness computed by Qlik Sense different from value computed by R-studio for same data&lt;/P&gt;&lt;P&gt;sample.&lt;/P&gt;&lt;P&gt;Here is evidence &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;In Qlik Sense:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RangeSkew( 35,40,12,15,21,14,46,10,28,48,16,30,32,48,31,22,12,39,19,25) &lt;SPAN style="font-size: 13.3333px;"&gt;gives&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; color: #800000;"&gt;&lt;STRONG&gt;0.3263&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RangeKurtosis( 35,40,12,15,21,14,46,10,28,48,16,30,32,48,31,22,12,39,19,25)&amp;nbsp; gives&amp;nbsp; &lt;STRONG style="color: #800000;"&gt;-&lt;/STRONG&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #800000;"&gt;1.1149&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;In R-studio:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x &amp;lt;- c(35,40,12,15,21,14,46,10,28,48,16,30,32,48,31,22,12,39,19,25)&lt;/P&gt;&lt;P&gt;&amp;gt; skewness(x)&lt;/P&gt;&lt;P&gt;[1] &lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;0.3012561&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; kurtosis(x)&lt;/P&gt;&lt;P&gt;[1] &lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;1.859267&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Wrote formulas&amp;nbsp; of skewness and &lt;SPAN style="font-size: 13.3333px;"&gt;kurtosis&lt;/SPAN&gt; in R. &lt;/P&gt;&lt;P&gt;b1 &amp;lt;- ( ( 1 / n ) * ( sum( ( x - mean ( x ) ) ^ 3 )) ) /&lt;/P&gt;&lt;P&gt;( ( 1 / n ) * sum ( ( x - mean ( x ) )^2 ) ) ^ (3/2)&amp;nbsp; ##&lt;/P&gt;&lt;P&gt;&amp;gt; b1 &lt;/P&gt;&lt;P&gt;[1] &lt;STRONG style="color: #800000;"&gt;0.3012561&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b2 &amp;lt;- ( ( 1 / n ) * ( sum( ( x - mean ( x ) ) ^ 4 )) ) / &lt;/P&gt;&lt;P&gt;( ( 1 / n ) * sum ( ( x - mean ( x ) )^2 ) ) ^ (2) &lt;/P&gt;&lt;P&gt;&amp;gt; b2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;[1] &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;1.859267&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it really bug in Qlik Sense or i just don't know something?&amp;nbsp; &lt;/P&gt;&lt;P&gt;Hope for exhaustive explanation. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 13:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278469#M26599</guid>
      <dc:creator />
      <dc:date>2017-03-13T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Skew() in Qlik vs skewness() in R</title>
      <link>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278470#M26600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure about Skewness, but I have noticed that QlikView has it own different way to calculate Fractile (or percentile). My guess is that it might have its own way to calculate Skewness also. Have you tried to replicate your expression in QlikSense to see if the calculation (rather than the function) gives the right output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 13:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278470#M26600</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-13T13:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Skew() in Qlik vs skewness() in R</title>
      <link>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278471#M26601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Working on it &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;P&gt;Problem that easiest way doesn't work. By the way I need kurtosis and skewness for Jarque bera test. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 14:30:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Skew-in-Qlik-vs-skewness-in-R/m-p/1278471#M26601</guid>
      <dc:creator />
      <dc:date>2017-03-13T14:30:34Z</dc:date>
    </item>
  </channel>
</rss>

