My data looks like this:
var1, var2, mean, std
1 , 2 , 3 , 4
etc..
I want to plot these into a heat map that looks like this one but I want to add text labels inside each cell, in this style: mean±std (i.e. mean plus minus error). in above case, the value in the cell would be 3±4 for var1 column = 1 and var2 row = 2, and similarly different values for other cells.
It's not important that it is a heatmap, it could be the label to a point or to a bar, i just want to generate the labels so that I get the strings "mean±std" for each label: 3±4. In my case, I will be making a heatmap where the colors are based on the value of mean, such as in here: https://stackoverflow.com/a/14290705/1504411
Thank you!