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
To solve a warning in issue DOC: DeprecationWarning on "Intro to data structures" user guide pandas-dev#60490.
I have checked other parts of the page, and there are no such warnings.
To solve a warning in issue DOC: DeprecationWarning on "Intro to data structures" user guide #60490.
I have checked other parts of the page, and there are no such warnings.
To solve a warning in issue DOC: DeprecationWarning on "Intro to data structures" user guide pandas-dev#60490.
I have checked other parts of the page, and there are no such warnings.
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/user_guide/dsintro.html
Documentation problem
I got warning at
In [48]: data = np.zeros((2,), dtype=[("A", "i4"), ("B", "f4"), ("C", "a10")])
. Warning isSuggested fix for documentation
Following the warning's instructions, I changed
("C","a10")
to("C","S10")
, and the warning resolved.The text was updated successfully, but these errors were encountered: