We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
>>> DataFrame([[0.0 + 1j, 0.0 + 2j]]).values array([[1j, 2j]], dtype=object) >>> DataFrame([np.array([1j, 2j])]).values array([[ 0.+1.j, 0.+2.j]])
I think these two examples should yield the same result.