Shripad Badithe

Results 13 issues of Shripad Badithe

-- Add `series_library` instance variable for `PrimitiveBase `

- Adds `series_library` attribute to `primitive_base` - Attribute is stored on `EntitySet` during serialization to lessen complexity (the alternative would be to store it on every primitive object) - Modifies...

We should figure out a way to have the code be executable in the `featuretools_sql` documentation (/docs/source/guides/sql_database_integration.ipynb). Currently, we just use code blocks. The reason this is a challenge is...

documentation

- Adds `featuretools_sql` to `conda-forge`

We could potentially add a `logical_xor` primitive using this numpy function: https://numpy.org/doc/stable/reference/generated/numpy.logical_xor.html

new feature

After the completion of alteryx/woodwork#1555 and #2129, we can explore updating the `RollingOutlierCount` to include alternate options for outlier detection.

enhancement
time series

The reason we have the `importlib_resources` dependency is because the `importlib.resources.files` API is only supported for 3.9+ and so we need a backport. Once we drop support for 3.8, we...

dependencies

Series with PostalCode logical type can have `float` or `str` elements. For example, ```python ser = pd.Series([12345, 67890]).astype('category') ser = ww.init_series(ser, logical_type='PostalCode') ``` In the above code block, the elements...

I don't think we need to create a list in this comprehension: https://github.com/alteryx/nlp_primitives/blob/11837a50de79fd05e067f58075100f39f639e563/nlp_primitives/stopword_count.py#L42 Instead, I think we can just iterate over `words` and keep a `count` variable. For very large...

As a user, I wish there was a NLP primitive that computed the frequency of hashtags given a list of texts, as in https://stackoverflow.com/questions/49865756/extract-and-count-hashtags-from-a-dataframe/49865854#49865854. #139 is similar, but computes the...