alteryx / featuretools

An open source python library for automated feature engineering
https://www.featuretools.com
BSD 3-Clause "New" or "Revised" License
7.25k stars 879 forks source link

Add PhoneNumber, DateOfBirth, URL variable types #443

Closed gsheni closed 5 years ago

gsheni commented 5 years ago

Add PhoneNumber, DateOfBirth, URL variable types


class DateOfBirth(Datetime): _dtype_repr = "date_of_birth" _default_pandas_dtype = np.datetime64

class URL(Variable): _dtype_repr = "url" _default_pandas_dtype = str

glentennis commented 5 years ago

@gsheni , some small questions:

gsheni commented 5 years ago