You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may not be the robust solution that would be ideal, but isn't it easy enough to convert to an np array, conjugate, and then recast into a DataFrame?
Ah, you're right. I didn't realize np.conj() was a function, thought that .conj() only existed as an instance method of a numpy array. I guess this problem is solved, thanks.
From mailing list
I noticed that Series has methods .conj() and .conjugate() but dataframe does not. Doing a search on complex numbers in pandas, I found this issue.
#1083
Is there any hope of getting .conj() onto the dataframe? Or should I convert to an np-array, then convert back to a df?
The text was updated successfully, but these errors were encountered: