Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
zied_ahmed1
Specialist
Specialist

expressions of box plot

Hello,

I used a box plot and I have these results :

boite_a_moustache.png

Now I would like to have the expressions for all (Min,Max,first quartile,Mediane..etc ) I choosed the Percentile-based to define it

Thanks for help omarbensalemstalwar1

1 Solution

Accepted Solutions
zied_ahmed1
Specialist
Specialist
Author

Hello,

I find the solution :

Median(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))

Min(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))



Max(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))


Thanks for all

View solution in original post

4 Replies
OmarBenSalem

Min , max could be calculated using the min/max functions (their use depends on ur case)

to be able to have the quartiles; u'll have to use the Fractile() method:

here's a link found in the qlik's help site that could guide u through this:

Fractile - fonction de graphique ‒ Qlik Sense

and here's a link for the median:

Median - fonction de graphique ‒ Qlik Sense

zied_ahmed1
Specialist
Specialist
Author

Thanks for help,

My expression is :

(sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))

/

sum(CALLSANSWERED)

When I try to add functions like Min or Max or Fractile they don't work , also i used variables for every sum and i have the same problem

pradosh_thakur
Master II
Master II

have you tried using max(aggr(sum()) . aggregating the aggregation function won't work unless you are using the AGGR Function.

Learning never stops.
zied_ahmed1
Specialist
Specialist
Author

Hello,

I find the solution :

Median(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))

Min(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))



Max(aggr((sum(CALLSANSWERED) - sum(CALLSANSWEREDAFTTHRESHOLD))/sum(CALLSANSWERED), DateCal))


Thanks for all