Skip to content
New issue

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

ENH: Support μs Greek small letter mu #58472

Open
1 of 3 tasks
covracer opened this issue Apr 29, 2024 · 0 comments
Open
1 of 3 tasks

ENH: Support μs Greek small letter mu #58472

covracer opened this issue Apr 29, 2024 · 0 comments
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member

Comments

@covracer
Copy link

Feature Type

  • Adding new functionality to pandas

  • Changing existing functionality in pandas

  • Removing existing functionality in pandas

Problem Description

Microseconds may be abbreviated as μs, using the 0x3bc Greek small letter mu, instead of the 0xb5 Latin Extended micro sign. Examples:

Feature Description

Timedelta('1 μs')

Alternative Solutions

Unit conversion could be delegated to an external package like pint:

In [34]: from pint import UnitRegistry
In [35]: ur = UnitRegistry()
In [36]: ur('1us') == ur('1\u00b5s') == ur('1\u03bcs')
Out[36]: True

Additional Context

No response

@covracer covracer added Enhancement Needs Triage Issue that has not been reviewed by a pandas team member labels Apr 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Needs Triage Issue that has not been reviewed by a pandas team member
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant