I have a big dataset contains numeric data and in some of its rows there are variable spaces delimiting columns, like:
4 5 6
7 8 9
2 3 4
When I use this line:
dataset=numpy.loadtxt("dataset.txt", delimiter=" ")
I get this error:
ValueError: Wrong number of columns at line 2
How can I change the code to ignore multiple spaces as well?