density
Paints markers using a configurable colour map to indicate how many points are plotted over each other. Specifically, it colours each pixel according to how many times that pixel has has been covered by one of the markers plotted by the layer in question. To put it another way, it generates a false-colour density map with pixel granularity using a smoothing kernel of the form of the markers plotted by the layer. The upshot is that you can see the plot density of points or other markers plotted.
This is like auto mode, but with more user-configurable options.
Usage:
shadingN=density colorN=<rrggbb>|red|blue|... densemapN=scale_v|pastel|rainbow|... denseclipN=<lo>,<hi> denseflipN=true|false densequantN=<number> densefuncN=log|linear|sqrt|square densesubN=<lo>,<hi>
All the parameters listed here
affect only the relevant layer,
identified by the suffix
N
.
Associated parameters are as follows:
colorN = <rrggbb>|red|blue|...
(Color)
The value may be a six-digit hexadecimal number
giving red, green and blue intensities,
e.g. "ff00ff
" for magenta.
Alternatively it may be the name of one of the
pre-defined colors.
These are currently
red
, blue
, green
, grey
, magenta
, cyan
, orange
, pink
, yellow
, black
, white
.
[Default: ff0000
]
denseclipN = <lo>,<hi>
(Subrange)
If the full range 0,1
(the default) is used,
the whole range of colours specified by the selected
shader will be used.
But if, for instance a value of 0,0.5
is given,
only those colours at the left hand end of the ramp
will be seen.
[Default: 0,1
]
denseflipN = true|false
(Boolean)
[Default: false
]
densefuncN = log|linear|sqrt|square
(Scaling)
The available options are:
log
: Logarithmic scalinglinear
: Linear scalingsqrt
: Square root scalingsquare
: Square scaling[Default: log
]
densemapN = scale_v|pastel|rainbow|...
(Shader)
A mixed bag of colour ramps are available:
scale_v
,
pastel
,
rainbow
,
rainbow2
,
rainbow3
,
accent
,
gnuplot
,
gnuplot2
,
cubehelix
,
specxby
,
set1
,
paired
,
cyan-magenta
,
red-blue
,
brg
,
heat
,
cold
,
light
,
greyscale
,
scale_v
,
scale_s
,
colour
,
standard
,
bugn
,
bupu
,
orrd
,
pubu
,
purd
.
Note:
many of these, including rainbow-like ones,
are frowned upon by the visualisation community.
[Default: scale_v
]
densequantN = <number>
(Double)
If left blank, the colour map is nominally continuous (though in practice it may be quantised to a medium-sized number like 256).
densesubN = <lo>,<hi>
(Subrange)
The default value "0,1
" therefore has
no effect.
The range could be restricted to its lower half
with the value 0,0.5
.
[Default: 0,1
]