I'm just failing to wrap my head around this. Basically it should be an easy thing to solve, but I'm not getting it right.
I set up an numpy array, and fill it with NaN values. Then I wanted to assign strings to it's fields (that is what I definitely want to do) I get "ValueError: could not convert string to float". All I found here in StackOverflow's search was how to convert the strings into floats - but that's not what I want to do.
Here's a small code example that describes what I'm talking about:
a = np.empty((6, 7))
a[:] = np.nan
# later in a loop
a[0,0] = 'abc'
Thanks in advance