Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
v0.3.1 (March 7, 2024)
Changes and enhancements have been made to the API since version
v0.3.0
, leading to the introduction of new features and the resolution of various bugs.|API change| From now on, only the selected utilities listed below are available as the public API, which has led to shorter loading times for the package. The available
public API functions include:
watex.utils.bi_selector
available publicly as :func:watex.bi_selector
watex.utils.cleaner
available publicly as :func:watex.cleaner
watex.utils.erpSelector
available publicly as :func:watex.erpSelector
watex.utils.erpSmartDetector
available publicly as :func:watex.erpSmartDetector
watex.utils.fetch_data
available publicly as :func:watex.fetch_data
watex.utils.fittensor
available publicly as :func:watex.fittensor
watex.utils.get2dtensor
available publicly as :func:watex.get2dtensor
watex.utils.make_erp
available publicly as :func:watex.make_erp
watex.utils.make_naive_pipe
available publicly as :func:watex.make_naive_pipe
watex.utils.make_ves
available publicly as :func:watex.make_ves
watex.utils.magnitude
available publicly as :func:watex.magnitude
watex.utils.naive_imputer
available publicly as :func:watex.naive_imputer
watex.utils.naive_scaler
available publicly as :func:watex.naive_scaler
watex.utils.ohmicArea
available publicly as :func:watex.ohmicArea
watex.utils.plotAnomaly
available publicly as :func:watex.plotAnomaly
watex.utils.plot_confidence_in
available publicly as :func:watex.plot_confidence_in
watex.utils.plotOhmicArea
available publicly as :func:watex.plotOhmicArea
watex.utils.plot_sfi
available publicly as :func:watex.plot_sfi
watex.utils.power
available publicly as :func:watex.power
watex.utils.qc
available publicly as :func:watex.qc
watex.utils.read_data
available publicly as :func:watex.read_data
watex.utils.selectfeatures
available publicly as :func:watex.selectfeatures
watex.utils.sfi
available publicly as :func:watex.sfi
watex.utils.shape
available publicly as :func:watex.shape
watex.utils.smart_label_classifier
available publicly as :func:watex.smart_label_classifier
watex.utils.to_numeric_dtypes
available publicly as :func:watex.to_numeric_dtypes
watex.utils.type_
available publicly as :func:watex.type_
watex.utils.vesSelector
available publicly as :func:watex.vesSelector
|API change| The parameter
edi_obj
in :func:watex.utils.plot_skew
has been deprecated and replaced byedis_list
, which refers to either a collection of :term:EDI
files or a full path to EDI files. Two-dimensional skewness, represented as :math:eta
, can now be visualized by setting the parameterview='2D'
.|API change| The
xgboost
library is no longer automatically installed as a dependency. Users must install it separately for complete model functionality or use thedev
option as shown below:.. code-block:: bash
pip install watex[dev]
|Fix| The :class:
watex.em.EM
module now throws a :class:watex.exceptions.EDIError
instead of anAttributeError
when an EDI file is expected but an object is passed.|Fix| The
base_estimator
parameter is no longer available in scikit-learn versions greater than 1.2; it has been renamed toestimator
. Consequently, :mod:watex.models
and :mod:watex.models.premodels
have been updated to reflect this change.|Feature| The :func:
watex.utils.plotutils.plot_l_curve
function has been introduced to plot the Hansen L-curve, with an option to highlight the Hansen point. This feature uses the L-curve criterion to determine the most suitable model after performing multiple inversions with different :math:\tau
values.