The quantity you plot is dimensionless, it's the ratio of two densities: the difference vs. the sum of the spin up and down densities, or short just the "spin polarization".
However, I must admit the numbers are misleading; when the plot was created the focus was on the qualitative picture (seen by the colors). To also get it quantitatively correct, a more appropriate way would be to average, not sum, the values over the X axis. To do so, you can change the line defining "av" to
av = numpy.average(numpy.array(n[:,:,:]),axis=0)
If you do so, the color axis will run from about -6% to +6%, and now you have a relevant measure of the average spin polarization in the YZ plane.
The 1e-19 is irrelevant, it's just a safeguard against division by zero. However, in the latest implementation we have included this protection behind the scenes and therefore this term can actually be excluded without problems.