Releases: alteryx/woodwork
v0.11.1
v0.11.1 Jan 4, 2022
- Changes
- Update inference process to only check for NaturalLanguage if no other type matches are found first (#1234)
- Documentation Changes
- Updating contributing doc with Spark installation instructions (#1232)
- Testing Changes
Thanks to the following people for contributing to this release:
@gsheni, @thehomebrewnerd, @willsmithorg
v0.11.0
v0.11.0 Dec 22, 2021
- Enhancements
- Add type inference for natural language (#1210)
- Changes
- Make public method
get_subset_schema
(#1218)
- Make public method
Thanks to the following people for contributing to this release:
@jeff-hernandez, @thehomebrewnerd, @tuethan1999
v0.10.0
v0.10.0 Nov 30, 2020
- Enhancements
- Changes
- Return histogram bins as a list of floats instead of a
pandas.Interval
object (#1207)
- Return histogram bins as a list of floats instead of a
Thanks to the following people for contributing to this release:
@tamargrey, @thehomebrewnerd
v0.9.1
v0.9.1 Nov 19, 2021
- Fixes
- Fix bug that causes
mutual_information
to fail with certain index types (#1199)
- Fix bug that causes
- Changes
- Update pip to 21.3.1 for test requirements (#1196)
- Documentation Changes
- Update install page with updated minimum optional dependencies (#1193)
Thanks to the following people for contributing to this release:
@gsheni, @thehomebrewnerd
v0.9.0
v0.9.0 Nov 11, 2021
- Enhancements
- Added
read_file
parameter for replacing empty string values with NaN values (#1161)
- Added
- Fixes
- Changes
- Make box plot low/high indices/values optional to return in
box_plot_dict
(#1184)
- Make box plot low/high indices/values optional to return in
- Documentation Changes
- Update docs dependencies (#1176)
- Testing Changes
Thanks to the following people for contributing to this release:
@bchen1116, @davesque, @gsheni, @rwedge, @tamargrey, @thehomebrewnerd
v0.8.2
v0.8.2 Oct 12, 2021
- Fixes
- Testing Changes
Thanks to the following people for contributing to this release:
@bchen1116, @davesque, @jeff-hernandez, @thehomebrewnerd
v0.8.1
v0.8.1 Sep 16, 2021
- Changes
- Update
Datetime.transform
to use default nrows value when calling_infer_datetime_format
(#1137)
- Update
- Documentation Changes
- Hide spark config in Using Dask and Koalas Guide (#1139)
Thanks to the following people for contributing to this release:
@jeff-hernandez, @simha104, @thehomebrewnerd
v0.8.0
- Enhancements
- Changes
- Update
get_invalid_schema_message
to improve performance (#1132)
- Update
- Documentation Changes
Thanks to the following people for contributing to this release:
@ajaypallekonda, @davesque, @jeff-hernandez, @thehomebrewnerd
v0.7.1
v0.7.1 Aug 25, 2021
- Fixes
Thanks to the following people for contributing to this release:
@tamargrey
v0.7.0
v0.7.0 Aug 25, 2021
- Enhancements
Thanks to the following people for contributing to this release:
@davesque, @jeff-hernandez, @tamargrey, @tuethan1999
Breaking Changes
- #1100:
The behavior forinit
has changed. A full schema is a
schema that contains all of the columns of the dataframe it describes
whereas a partial schema only contains a subset. A full schema will also
require that the schema is valid without having to make any changes to
the DataFrame. Before, only a full schema was permitted by theinit
method so passing a partial schema would error. Additionally, any
parameters likelogical_types
would be ignored if passing in a schema.
Now, passing a partial schema to theinit
method calls the
init_with_partial_schema
method instead of throwing an error.
Information from keyword arguments will override information from the
partial schema. For example, if columna
has the Integer Logical Type
in the partial schema, it's possible to use thelogical_type
argument
to reinfer it's logical type by passing{'a': None}
or force a type by
passing in{'a': Double}
. These changes mean that Woodwork init is less
restrictive. If no type inference takes place and no changes are required
of the DataFrame at initialization,init_with_full_schema
should be
used instead ofinit
.init_with_full_schema
maintains the same
functionality as when a schema was passed to the oldinit
.