Skip to content
#

python-api

Here are 204 public repositories matching this topic...

beckernick
beckernick commented Jul 7, 2021

For feature engineering tasks, I'd like to be able to determine whether a datetime is the beginning or end of a year, like I can in pandas.

import pandas as pds = pd.Series(["2021-02-27", "2020-03-31"], dtype="datetime64[ms]")
s.dt.is_year_end
0    False
1    False
dtype: bool
import pandas as pds = pd.Series(["2021-01-01", "2020-04-01"], dtype="datet
hzeller
hzeller commented May 15, 2020

When running the regression, the resulting logs seem to end up in third_party/tests/$TEST/.... This of course is not unnoticed by git, so a git status shows a ton of non-added new files added.

To reproduce:

make
make regression
git status   # observe all the files

Build or test artifacts should never clutter the rest of the code-base (we should regard them as read-only in

Improve this page

Add a description, image, and links to the python-api topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the python-api topic, visit your repo's landing page and select "manage topics."

Learn more