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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
TinaHensel
Contributor III
Contributor III

Boxplots for non aggregated measures

Hello,

I have some issues on using Boxplots in Qlik Sense.

Lets say I have the following data:

date | seconds

16.04.2021 | 1

16.04.2021 | 4

16.04.2021 | 8

16.04.2021 | 3

15.04.2021 | 1

15.04.2021 | 2

15.04.2021 | 1

...

 

Now i want to create a Boxplot with the dimension date and seconds as measure. I have no ideas how to setup the values for "dimenson -> box" and "dimenson -> x axis".

Any ideas on how to do this?

Thank you very much!

 

 

 

1 Solution

Accepted Solutions
rubenmarin

Hi, you can add an identifier for each row, like a new field with just "RowNo() as row".

The set this row fied as box, date as x-axis and seconds as y-axis

LOAD *, RowNo() as row Inline [
date | seconds
16.04.2021 | 1
16.04.2021 | 4
16.04.2021 | 8
16.04.2021 | 3
15.04.2021 | 1
15.04.2021 | 2
15.04.2021 | 1
](delimiter is '|')

rubenmarin_0-1618647780302.png

 

View solution in original post

2 Replies
rubenmarin

Hi, you can add an identifier for each row, like a new field with just "RowNo() as row".

The set this row fied as box, date as x-axis and seconds as y-axis

LOAD *, RowNo() as row Inline [
date | seconds
16.04.2021 | 1
16.04.2021 | 4
16.04.2021 | 8
16.04.2021 | 3
15.04.2021 | 1
15.04.2021 | 2
15.04.2021 | 1
](delimiter is '|')

rubenmarin_0-1618647780302.png

 

TinaHensel
Contributor III
Contributor III
Author

Working, thank you!