Results 7 comments of Nrezhang

```python >>> df = pd.DataFrame({'column': [0.0, 1.0, 2.0]}) >>> df.dtypes column float64 dtype: object >>> df.convert_dtypes() column 0 0 1 1 2 2 >>> df.convert_dtypes().dtypes column Int64 dtype: object ```...

Modified my PR to parse the characters in freqstr and check that for more flexibility

Hi, when I run the pre-commit hooks pre-commit run --hook-stage manual --all-files, all the lines pass, but it seems like I have many failing checks. Could I have some guidance...

Hi, is is_year_start supposed to return false for both since they are not on 01/01? or is it supposed to both be True. I guess my question is clarifying what...

Changed it to check the last character of the string so it handles if there are numbers in front. Works with the example, but not sure about if there are...

Thank you. I guess we will have to see how @natmokval tackles this issue