Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Heat map on table 8X12 (96 well map)

Hi everyone,

Does anyone can point me to some documentation, extension or strategy on how to perform a heat map on a 96 well plate (8x12 table). I attached example of the well map that I do in R with a data table. To give some context, we are performing an assay in a 96 well plate which is like a 8x12 table. I would like to identify pattern due to process failure. The data table will be a list of plate ID with all the coordinate and value, the list of plate will be shown in a table then when a plate is clicked the heat map will be shown.

The reported data look like this:

 

Plate IDPlate WellValue
P7379-BARG:34365868
P7379-BARH:13845954
P7379-BARD:13939838
P7379-BARF:85251712
P7379-BARA:14319556
P7379-BARF:74572828
P7379-BARG:44722496
P7379-BARD:23966063
P7379-BARC:64822168
P7379-BARC:44831038
P7379-BARD:54335659
P7379-BARC:85168929
P7379-BARA:64654479
P7379-BARH:23973021
P7379-BARH:34596488

Many thanks,

Christian

4 Replies
maxgro
MVP
MVP

IIf I understand with a pivot table

1.png

Some help here http://qlikviewcookbook.com/list-recipes/

Look at Heat table chart

and Pivot table grids

MarcoWedel

Hi,

maybe one solution could be:

QlikCommunity_Thread_241601_Pic1.JPG

QlikCommunity_Thread_241601_Pic2.JPG

QlikCommunity_Thread_241601_Pic3.JPG

QlikCommunity_Thread_241601_Pic4.JPG

QlikCommunity_Thread_241601_Pic5.JPG

tabPlateWellAssay:

LOAD [Plate ID],

    [Plate Well],

    SubField([Plate Well],':',1) as [Plate Row],

    SubField([Plate Well],':',2) as [Plate Column],

    Num(Value,'#,##0') as Value

FROM [https://community.qlik.com/servlet/JiveServlet/download/1169145-255874/QV%20plate.xlsx] (ooxml, embedded labels, table is Sheet1);

hope this helps

regards

Marco

Not applicable
Author

This look good. I will try to replicate.

Many thanks,

Christian

MarcoWedel

You're welcome.

Please close your thread if your question is answered:

Qlik Community Tip: Marking Replies as Correct or Helpful

thanks

regards

Marco