So I'm thinking of making a data visualizer with multiple tabs - my first task being to make correlations between all the variables (one tab).
I was thinking of doing this in wxPython and doing the calculations in Numpy/Scipy.
My question is, do you think it would be faster/utilize less resources to do this using Qt and C++? I would prefer to go with Numpy since it has significant optimizations that typically? make it better than naive C code.
Would it be possible to make the front end in Qt and write the backend in Python - if so, how?