We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently have a public Index.to_native_types() method (https://dev.pandas.io/docs/reference/api/pandas.Index.to_native_types.html) that somehow formats the values of the index.
Index.to_native_types()
Example:
In [3]: pd.date_range("2012", periods=3).to_native_types() Out[3]: array(['2012-01-01', '2012-01-02', '2012-01-03'], dtype=object)
I don't think this needs to be in the public API?
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
+1 from me too.
Successfully merging a pull request may close this issue.
We currently have a public
Index.to_native_types()
method (https://dev.pandas.io/docs/reference/api/pandas.Index.to_native_types.html) that somehow formats the values of the index.Example:
I don't think this needs to be in the public API?
The text was updated successfully, but these errors were encountered: