Rotulando valores em um mapa de calor GNUplot

0

Estou tentando gerar um mapa de calor usando o gráfico do gnu.

set title "Heat Map"

plot '-' matrix with image

10  20  30  40  50  60  70  80  90  100
20  30  40  50  60  70  80  90  100 0
30  40  50  60  70  80  90  100 0   0
40  50  60  70  80  90  100 0   0   0
50  60  70  80  90  100 0   0   0   0
60  70  80  90  100 0   0   0   0   0
70  80  90  100 0   0   0   0   0   0
80  90  100 0   0   0   0   0   0   0
90  100 0   0   0   0   0   0   0   0
100 0   0   0   0   0   0   0   0   0
e

Ao longo dos eixos, recebo os valores -2 0 2 4 6 8 10 e gostaria de substituí-los por uma string personalizada. Não consigo descobrir como fazer isso.

    
por André van Schoubroeck 07.04.2012 / 12:43

1 resposta

0

Experimente esta solução:

set border 0 # remove box around map
set xtics ("first" 0, "sec." 2, "last" 9) # set special strings on selected position on x axes
set ytics ("first" 0, "sec." 2, "last" 9) # set special strings on selected position on y axes
unset key # without key

set title "Heat Map"
plot '-' matrix with image

10  20  30  40  50  60  70  80  90  100
20  30  40  50  60  70  80  90  100 0
30  40  50  60  70  80  90  100 0   0
40  50  60  70  80  90  100 0   0   0
50  60  70  80  90  100 0   0   0   0
60  70  80  90  100 0   0   0   0   0
70  80  90  100 0   0   0   0   0   0
80  90  100 0   0   0   0   0   0   0
90  100 0   0   0   0   0   0   0   0
100 0   0   0   0   0   0   0   0   0
e
    
por 18.04.2012 / 11:08

Tags