fix cross-device link error
[PyX.git] / examples / graphstyles / density.txt
blobab805be2c5b36eb043dba5e1396f64aa1ef3d00a
1 Drawing a density plot
3 2 dimensional plots where the value of each point is represented by a color can
4 be created by the density style. ... The data points have to be spaced
5 equidistantly in each dimension with the possible exception of missing data.
7 For data which is not equidistantly spaced but still arranged in a grid,
8 `graph.style.surface` can be used, which also provides a smooth representation
9 by means of a color interpolation between the mesh moints. Finally, for
10 completely unstructured data, `graph.style.rect` can be used.
12 !The plot is encoded in an efficient way using a bitmap. Unfortunately, this
13 means, that the HSB color space cannot be used (due to limitations of the
14 bitmap color spaces in PostScript and PDF). Some of the predefined gradients in
15 PyX, e.g. `color.gradient.Rainbow`, cannot be used here. As a workaround, PyX
16 provides those gradients in other color spaces as shown in the example.