-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
BUG: Either incorrect unit validation for 'T' in to_timedelta() or incorrect documentation #52536
Comments
If you look down the code path, you'll see that the code will be converted to lower case: pandas/pandas/_libs/tslibs/timedeltas.pyx Lines 708 to 730 in 1bf3ff7
So code-wise, the choice of case won't matter. Now if you look into the type definition, you'll only see lowercase t, i.e. upper case T will fail. pandas/pandas/_libs/tslibs/timedeltas.pyi Lines 22 to 64 in 1bf3ff7
Upper case T should probably be in the |
Hi, i would like to take this issue if i can. It would be my first PR in an open source project. |
take |
👍 |
Hi @ezqdavid, I'd like to create a pr for this issue if you don't mind. |
T and l seem really weird here. i think we should deprecate them. |
Hi @natmokval . Yes please, i dont mind. I was unsure of making the pr. Thank you. |
Thank you, @jbrockmendel for the comment. I will update the documentation for I have another question. Do you mean by |
Correct.
I think so, yes. |
+1 from me. The upper and lower t are synomous, so both can be deprecated. |
I haven't figured how 'H' for hour got deprecated after issue? I'd just like to note that the deprecations in pandas cause huge amount of work in dependent projects. |
hi @anttimc - I'll find the issue, looks like the referenced issue was incorrect
sorry about that - which project are you referring to? if you use |
For 'H' in particular, it looks like I'd suggested it here - #54061 (comment). There probably should have been more discussion to be fair, although it did seem in-line with the other renamings suggested here With #55502 in, the rule would then be that sub-daily frequencies (Ticks, fixed frequencies) are all lower-case, whereas daily and above upper-case The issue with allowing case-insensitivity is that then this would happen: In [6]: pandas.date_range('2000', periods=3, freq='NS') # nanosecond, cool
Out[6]:
DatetimeIndex([ '2000-01-01 00:00:00',
'2000-01-01 00:00:00.000000001',
'2000-01-01 00:00:00.000000002'],
dtype='datetime64[ns]', freq='N')
In [7]: pandas.date_range('2000', periods=3, freq='US') # microsecond, cool
Out[7]:
DatetimeIndex([ '2000-01-01 00:00:00', '2000-01-01 00:00:00.000001',
'2000-01-01 00:00:00.000002'],
dtype='datetime64[ns]', freq='U')
In [8]: pandas.date_range('2000', periods=3, freq='MS') # wait, this isn't millisecond?
Out[8]: DatetimeIndex(['2000-01-01', '2000-02-01', '2000-03-01'], dtype='datetime64[ns]', freq='MS') An alternative would have been to keep case-insensitivity, but rename Correcting historic issues is tricky - we either leaves things as they are and leave inconsistencies and issues around, or deprecate towards more consistent and predictable behaviour I understand that this one is a pain for people building on top of pandas, but I thought a simple find-and-replace would be enough here - if that's not the case, please do report an issue, it's a sign that something may not be right. Thanks 🙏 |
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
The specification of the unit parameter for to_timedelta() in https://github.com/pandas-dev/pandas/tree/v2.0.0/pandas/core/tools/timedeltas.py is as follows:
unit: UnitChoices | None = None
The documentation for to_timedelta() (and the comment in the code) allows for (among others):
The allowed values in UnitChoices (https://github.com/pandas-dev/pandas/tree/main/pandas/_libs/tslibs/timedeltas.pyi) include 't', but not 'T'.
Expected Behavior
It seems to me that it is usual to allow upper case 'T' as a specifier for minute, but others may know better.
Either 'T' should be allowed in UnitChoices, or the to_timedelta() documentation should be updated to specify lower case 't'
Installed Versions
INSTALLED VERSIONS
commit : 478d340
python : 3.9.6.final.0
python-bits : 64
OS : Darwin
OS-release : 22.4.0
Version : Darwin Kernel Version 22.4.0: Mon Mar 6 21:00:17 PST 2023; root:xnu-8796.101.5~3/RELEASE_X86_64
machine : x86_64
processor : i386
byteorder : little
LC_ALL : None
LANG : None
LOCALE : en_GB.UTF-8
pandas : 2.0.0
numpy : 1.24.2
pytz : 2023.3
dateutil : 2.8.2
setuptools : 65.5.1
pip : 22.3.1
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.7.1
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.10.1
snappy : None
sqlalchemy : 1.4.47
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None
The text was updated successfully, but these errors were encountered: