I am puzzled because this toy example (in Mathematica 8)
dist = KernelMixtureDistribution[{{0, 1}, {0.0, 0}, {0, -1}},"Silverman",
MaxMixtureKernels -> All];
DensityPlot[PDF[dist, {x1, x2}], {x1, -3, 3}, {x2, -3, 3}]

produces a density estimate with quite a large extent in x-direction although it has zero standard deviation. I would not have been surprised if that had produced an error because it should be a delta impulse in x-direction and I don't know if that can be represented by Mathematica. But this result does not make sense.
If I change it to
dist = KernelMixtureDistribution[{{0, 1}, {0.01, 0}, {0, -1}},"Silverman",
MaxMixtureKernels -> All];
DensityPlot[PDF[dist, {x1, x2}], {x1, -3, 3}, {x2, -3, 3}]

the result is a very thin distribution as expected. The behaviour is similar for Silverman's and Scott's rules of thumb.
Can someone shed some light on how the standard deviations are interpreted here? Is this a bug maybe ?

with ColorFunctionScaling. My main issue is with the bandwidth of the kernels in x-direction which is nicely visible in the plot you proposed. The datapoints from which the distributions are estimated do not have a standard deviation of ~1 (in x-direction). Thus, I think the results of the automatic bandwidth selection methods are wrong here. – Kai Petersburg Jul 30 '12 at 14:32