Tamar Grey
Tamar Grey
The following sentence was not included in the second markdown cell because the Featuretools Time Series Guide was not yet completed > A full explanation of how these terms are...
Currently the ColumnSchema utils `is_numeric` and `is_categorical` only look at the logical type when determining if a column schema is numeric or categorical in nature. In Featuretools, we often set...
Pandas bug was stopping us from being able to initialize Woodwork on a column of numeric strings, so we had to convert to the `string` dtype first. https://github.com/alteryx/woodwork/pull/755/files#diff-75cb54847db4ed09b32148b93f1f543df16a421473154cb17085ff4932277ba8L402 This should...
Many of the stats calculated by `_get_describe_dict` rely on having sorted data, (min, max, quartiles, top values, recent values), and the current implementation is likely repeating some of the sorting...
There are several things we can improve about the outputs to our `list_logical_types` function, which gets used in several places in the Woodwork documentation: - The descriptions in the `description`...
When showing the Woodwork Column Accessor in docs, the semantic tag information can get cut off and need to be scrolled to see the entire repr. The only current usage...
I noticed the following warning getting raised a decent amount in our test suite: `UserWarning: Insufficient elements for `head`. 100000 elements requested, only 4 elements available. Try passing larger `npartitions`...
- As a user, I wish I could indicate that certain columns contain tweets, as there are certain primitives being proposed (https://github.com/alteryx/nlp_primitives/issues/140 and https://github.com/alteryx/nlp_primitives/issues/139) that are really meant to be...
Woodwork `ColumnSchema` objects have several properties `is_numeric`, `is_boolean`, `is_categorical`, and `is_datetime` that can be used for determining what operations can be performed on a column. Using these will have a...
- As a user, I wish I could access a table's column schema with a `column_schemas` attribute that is a dictionary of column schemas. ```python df.ww.column_schemas ``` This could be...