Is there a way to configure pandas to use numpy.nan as its NaN constant, or at least a single module-global constant pandas.nan = float('nan'), rather than a brand-new and unique float('nan')for each NaN it needs to represent?
(Alternatively, is there any justification for not using a single, globally unique NaN constant, the way that numpy does?)