Relatively new and trying to split some data with python from a CSV file. My data is structured as follows:
Time| Signature
--------------------
0 | Class1#Method1
1 | Class4#Method5
2 | Class5# <--note that Class 5 has no method
What I try to accomplish is to manipulate the data set such that it becomes
Time| Class | Method
--------------------
0 | Class1 | Method1
1 | Class4 | Method5
Class 5 is removed in the splitting process since it has no method.
I've tried to iterate over the whole dataset - works, but it is VERY slow when dealing with a 5gb csv file. Does anyone have a faster approach? Speed is everything that counts