Is it worth my learning NumPy?
I have approximately 100 financial markets series, and I am going to create a cube array of 100x100x100 = 1 million cells. I will be regressing (3-variable) each x with each y and z, to fill the array with standard errors.
I have heard that for "large matrices" I should use NumPy as opposed to Python lists, for performance and scalability reasons. Thing is, I know python lists and they seem to work for me.
Is the scale of the above problem worth moving to NumPy?
What if I had 1000 series (ie 1 billion floating point cells in the cube)?
Thanks.