I've try delete numpy ndarray's 1st column (eg. A, B, C ... A, B ) through
x = np.delete(x, 0, axis=1)
or
x = np.delete(x, 0, axis=0)
However, it's not work.
ndarray shape = ( 30000, 120, 15)
[[['A' 0.0 0.0 ..., 0.0 0.0 'Y']
['B' 0.0 0.0 ..., 0.0 0.0 'Y']
['C' 0.0 0.0 ..., 0.0 0.0 'N']
...,
['A' 0.0 0.0 ..., 0.0 0.0 'Y']
['B' 41.0 0.0 ..., 0.0 0.0 'N']]]
How do I resolve this... Thank you.