v0.1.1 (June 3, 2022)#
This is a minor release with some bug fixes and adaptations to changes in watex dependencies. There are
also several new features. This release is the beginning of writing the project to fit the common open-source library design in the
literature. The release v0.1.1 can be considered as the starting point of the watex project design.
New features#
Enhancement Implement a single reducers
Reducersclass focused on the unsupervised methods dimensionality reduction (PCA,kPCA,LLEandiPCA).Enhancement Improve the transformer module (
watex.transformers) by adding thewatex.transformers.StratifiedUsingBaseCategoryfor auto-category stratification.Enhancement Improved the
watex.cases.BaseStepsby adding the default pipelinewatex.cases.prepare.default_pipeline()for processing the data out of the class in any other datasets.Enhancement Rewritten the
watex.casesmodule to be a boilerplate module for any kind of dataset that objective is to predict the groundwater flow rate from the dedicated predictor [X and y].Feature Designed the
watex.methods.electricalmodule to supplement thewatex.methods.erpmodule that is purely focused on the auto-detection. The new modulewatex.methods.electricalis meaningful, efficient, and complete by henceforth implementing the constraints which are mostly encountered during the CDWS project and affected the drilling location positioning. An example of constraints can be found in the Case-history in Bagoue-region paper.
Bug fixes and adaptations#
Fix Hashed the train and test split using the id methods to avoid an error when singular data is passed to
BaseSteps.stratifydata(), issuing a warning instead.Fix Fixed a bug where values would be excluded from categorical plots from
watex.view.EvalPlotwhen only y was a pandasSerieswith a non-default index.Fix Fixed a bug when passing a
normobject and using color annotations in thepobjalias ofwatex.property.BasePlot.Fix Fixed a bug where data were not rearranged to match the X data in :func:`watex.cases.prepare.base_transform`and standardized the output format of custom color palette functions.
Fix Fixed a bug where legends for numerical variables in a relational plot could show a surprisingly large number of decimal places.
Enhancement Improved robustness to missing values in
watex.view.QuickPlotdistribution plots.