My machine's RAM is 3G on Windows XP and 'float32' data's precision is enough for my current application (based on Pandas 0.10 + NumPy 1.6.2). So I want to reset the default floating datatype to 'float32'
instead of 'float64'
to reduce the memory usage. How to do that ? (I know I can explictly put dtype = 'float32'
in functions, but i just want a global setting)
And is there any bad side-effect if I do so ? (calculation speed, compatible of interacting with other modules, future upgrading etc..)