Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

standard deviation (rangestdev) for my values

Dear community,

I am trying to calculate the standard deviation for my values but whatever I try (also with this community) it is not workin.

I guess I need to change the table into a crosstable to use the function rangestdev, but I am not quite sure how to do it.

For each month (1.2011, 2.2011) I need the standard deviation.

09.01.jpg

attached you will find the excel table.

Thanks a lot in advanced

Thomas

1 Solution

Accepted Solutions
nagaiank
Specialist III
Specialist III

The following script works:

Data:

LOAD ArtNum,

     month,

     value

FROM

TB02_20130109_165037.xls

(biff, embedded labels, table is Tabelle1$);

Data2:

NoConcatenate

LOAD month

          , Stdev(value) as StdDev

          Resident Data Group By          month;

Alternatively after loading the Data table, create a straight table chart with name as Dimension and stdev(value) as expression, which also displays the standard deviation.

View solution in original post

2 Replies
nagaiank
Specialist III
Specialist III

The following script works:

Data:

LOAD ArtNum,

     month,

     value

FROM

TB02_20130109_165037.xls

(biff, embedded labels, table is Tabelle1$);

Data2:

NoConcatenate

LOAD month

          , Stdev(value) as StdDev

          Resident Data Group By          month;

Alternatively after loading the Data table, create a straight table chart with name as Dimension and stdev(value) as expression, which also displays the standard deviation.

Not applicable
Author

Thank you very much. I did not found this function Stdev but only rangestdev