From b726b71bd2afe5ec712050d0f91d8edcceeb8311 Mon Sep 17 00:00:00 2001 From: rasbt Date: Sun, 26 Jan 2025 10:00:27 -0600 Subject: [PATCH] Deployed 9bef9005 with MkDocs version: 1.5.3 --- .../StackingCVClassifier/index.html | 4 + .../StackingClassifier/index.html | 4 + .../association_rules/index.html | 14 +- .../fpgrowth/index.html | 6 +- .../fpmax/index.html | 6 +- .../TransactionEncoder/index.html | 11 + api_subpackages/mlxtend._base/index.html | 2 +- api_subpackages/mlxtend.classifier/index.html | 10 +- api_subpackages/mlxtend.cluster/index.html | 2 +- api_subpackages/mlxtend.data/index.html | 2 +- api_subpackages/mlxtend.evaluate/index.html | 2 +- api_subpackages/mlxtend.externals/index.html | 2 +- .../mlxtend.feature_extraction/index.html | 2 +- .../mlxtend.feature_selection/index.html | 2 +- api_subpackages/mlxtend.file_io/index.html | 2 +- .../mlxtend.frequent_patterns/index.html | 28 +- api_subpackages/mlxtend.image/index.html | 2 +- api_subpackages/mlxtend.math/index.html | 2 +- api_subpackages/mlxtend.plotting/index.html | 2 +- .../mlxtend.preprocessing/index.html | 13 +- api_subpackages/mlxtend.regressor/index.html | 2 +- api_subpackages/mlxtend.text/index.html | 2 +- api_subpackages/mlxtend.utils/index.html | 2 +- index.html | 2 +- search/search_index.json | 2 +- sitemap.xml | 428 +++++++++--------- sitemap.xml.gz | Bin 1969 -> 1969 bytes 27 files changed, 317 insertions(+), 239 deletions(-) diff --git a/api_modules/mlxtend.classifier/StackingCVClassifier/index.html b/api_modules/mlxtend.classifier/StackingCVClassifier/index.html index a98782fe0..e2617c9d3 100644 --- a/api_modules/mlxtend.classifier/StackingCVClassifier/index.html +++ b/api_modules/mlxtend.classifier/StackingCVClassifier/index.html @@ -753,6 +753,10 @@

StackingCVClassifier

Fitted meta-classifier (clone of the original meta-estimator)

  • +

    classes_ : ndarray of shape (n_classes,) or list of ndarray if y is of type "multilabel-indicator".

    +

    Class labels.

    +
  • +
  • train_meta_features : numpy array, shape = [n_samples, n_classifiers]

    meta-features for training data, where n_samples is the number of samples diff --git a/api_modules/mlxtend.classifier/StackingClassifier/index.html b/api_modules/mlxtend.classifier/StackingClassifier/index.html index 38e6c9bb9..411ed896f 100644 --- a/api_modules/mlxtend.classifier/StackingClassifier/index.html +++ b/api_modules/mlxtend.classifier/StackingClassifier/index.html @@ -714,6 +714,10 @@

    StackingClassifier

    Fitted meta-classifier (clone of the original meta-estimator)

  • +

    classes_ : ndarray of shape (n_classes,) or list of ndarray if y is of type "multilabel-indicator".

    +

    Class labels.

    +
  • +
  • train_meta_features : numpy array, shape = [n_samples, n_classifiers]

    meta-features for training data, where n_samples is the number of samples diff --git a/api_modules/mlxtend.frequent_patterns/association_rules/index.html b/api_modules/mlxtend.frequent_patterns/association_rules/index.html index c17de65e4..5e3e8e606 100644 --- a/api_modules/mlxtend.frequent_patterns/association_rules/index.html +++ b/api_modules/mlxtend.frequent_patterns/association_rules/index.html @@ -617,7 +617,7 @@

    association_rules

    -

    association_rules(df, metric='confidence', min_threshold=0.8, support_only=False)

    +

    association_rules(df: pandas.core.frame.DataFrame, num_itemsets: Union[int, NoneType] = 1, df_orig: Union[pandas.core.frame.DataFrame, NoneType] = None, null_values=False, metric='confidence', min_threshold=0.8, support_only=False, return_metrics: list = ['antecedent support', 'consequent support', 'support', 'confidence', 'lift', 'representativity', 'leverage', 'conviction', 'zhangs_metric', 'jaccard', 'certainty', 'kulczynski']) -> pandas.core.frame.DataFrame

    Generates a DataFrame of association rules including the metrics 'score', 'confidence', and 'lift'

    Parameters

    @@ -628,6 +628,18 @@

    association_rules

    with columns ['support', 'itemsets']

  • +

    df_orig : pandas DataFrame (default: None)

    +

    DataFrame with original input data. Only provided when null_values exist

    +
  • +
  • +

    num_itemsets : int (default: 1)

    +

    Number of transactions in original input data (df_orig)

    +
  • +
  • +

    null_values : bool (default: False)

    +

    In case there are null values as NaNs in the original input data

    +
  • +
  • metric : string (default: 'confidence')

    Metric to evaluate if a rule is of interest. Automatically set to 'support' if support_only=True. diff --git a/api_modules/mlxtend.frequent_patterns/fpgrowth/index.html b/api_modules/mlxtend.frequent_patterns/fpgrowth/index.html index 7c466c12e..0201cea7f 100644 --- a/api_modules/mlxtend.frequent_patterns/fpgrowth/index.html +++ b/api_modules/mlxtend.frequent_patterns/fpgrowth/index.html @@ -617,7 +617,7 @@

    fpgrowth

    -

    fpgrowth(df, min_support=0.5, use_colnames=False, max_len=None, verbose=0)

    +

    fpgrowth(df, min_support=0.5, null_values=False, use_colnames=False, max_len=None, verbose=0)

    Get frequent itemsets from a one-hot DataFrame

    Parameters

      @@ -647,6 +647,10 @@

      fpgrowth

      transactions_where_item(s)_occur / total_transactions.

    • +

      null_values : bool (default: False)

      +

      In case there are null values as NaNs in the original input data

      +
    • +
    • use_colnames : bool (default: False)

      If true, uses the DataFrames' column names in the returned DataFrame instead of column indices.

      diff --git a/api_modules/mlxtend.frequent_patterns/fpmax/index.html b/api_modules/mlxtend.frequent_patterns/fpmax/index.html index 661186227..9b4960614 100644 --- a/api_modules/mlxtend.frequent_patterns/fpmax/index.html +++ b/api_modules/mlxtend.frequent_patterns/fpmax/index.html @@ -617,7 +617,7 @@

      fpmax

      -

      fpmax(df, min_support=0.5, use_colnames=False, max_len=None, verbose=0)

      +

      fpmax(df, min_support=0.5, null_values=False, use_colnames=False, max_len=None, verbose=0)

      Get maximal frequent itemsets from a one-hot DataFrame

      Parameters

        @@ -648,6 +648,10 @@

        fpmax

        transactions_where_item(s)_occur / total_transactions.

      • +

        null_values : bool (default: True)

        +

        In case there are null values as NaNs in the original input data

        +
      • +
      • use_colnames : bool (default: False)

        If true, uses the DataFrames' column names in the returned DataFrame instead of column indices.

        diff --git a/api_modules/mlxtend.preprocessing/TransactionEncoder/index.html b/api_modules/mlxtend.preprocessing/TransactionEncoder/index.html index 7ec4eeccd..a8d92b9b3 100644 --- a/api_modules/mlxtend.preprocessing/TransactionEncoder/index.html +++ b/api_modules/mlxtend.preprocessing/TransactionEncoder/index.html @@ -656,6 +656,17 @@

        Methods

        Fit a TransactionEncoder encoder and transform a dataset.


        +

        get_feature_names_out()

        +

        Used to get the column names of pandas output.

        +
        This method combined with the `TransformerMixin` exposes the
        +set_output API to the `TransactionEncoder`. This allows the user
        +to set the transformed output to a `pandas.DataFrame` by default.
        +
        +See  https://scikit-learn.org/stable/developers/develop.html#developer-api-set-output
        +for more details.
        +
        +
        +

        get_params(deep=True)

        Get parameters for this estimator.

        Parameters

        diff --git a/api_subpackages/mlxtend._base/index.html b/api_subpackages/mlxtend._base/index.html index 12a6f2102..6b19d7736 100644 --- a/api_subpackages/mlxtend._base/index.html +++ b/api_subpackages/mlxtend._base/index.html @@ -611,7 +611,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    diff --git a/api_subpackages/mlxtend.classifier/index.html b/api_subpackages/mlxtend.classifier/index.html index 9fbd9393a..c4292c38d 100644 --- a/api_subpackages/mlxtend.classifier/index.html +++ b/api_subpackages/mlxtend.classifier/index.html @@ -666,7 +666,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    Adaline

    Adaline(eta=0.01, epochs=50, minibatches=None, random_seed=None, print_progress=0)

    ADAptive LInear NEuron classifier.

    @@ -2174,6 +2174,10 @@

    StackingCVClassifier

    Fitted meta-classifier (clone of the original meta-estimator)

  • +

    classes_ : ndarray of shape (n_classes,) or list of ndarray if y is of type "multilabel-indicator".

    +

    Class labels.

    +
  • +
  • train_meta_features : numpy array, shape = [n_samples, n_classifiers]

    meta-features for training data, where n_samples is the number of samples @@ -2494,6 +2498,10 @@

    StackingClassifier

    Fitted meta-classifier (clone of the original meta-estimator)

  • +

    classes_ : ndarray of shape (n_classes,) or list of ndarray if y is of type "multilabel-indicator".

    +

    Class labels.

    +
  • +
  • train_meta_features : numpy array, shape = [n_samples, n_classifiers]

    meta-features for training data, where n_samples is the number of samples diff --git a/api_subpackages/mlxtend.cluster/index.html b/api_subpackages/mlxtend.cluster/index.html index 3a88aa2ad..ae348c46b 100644 --- a/api_subpackages/mlxtend.cluster/index.html +++ b/api_subpackages/mlxtend.cluster/index.html @@ -626,7 +626,7 @@

    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    Kmeans

    Kmeans(k, max_iter=10, convergence_tolerance=1e-05, random_seed=None, print_progress=0)

    K-means clustering class.

    diff --git a/api_subpackages/mlxtend.data/index.html b/api_subpackages/mlxtend.data/index.html index 0aa714a41..9feec1f0f 100644 --- a/api_subpackages/mlxtend.data/index.html +++ b/api_subpackages/mlxtend.data/index.html @@ -661,7 +661,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    autompg_data

    autompg_data()

    Auto MPG dataset.

    diff --git a/api_subpackages/mlxtend.evaluate/index.html b/api_subpackages/mlxtend.evaluate/index.html index caa72cddd..b5a55f251 100644 --- a/api_subpackages/mlxtend.evaluate/index.html +++ b/api_subpackages/mlxtend.evaluate/index.html @@ -736,7 +736,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    BootstrapOutOfBag

    BootstrapOutOfBag(n_splits=200, random_seed=None)

    Parameters

    diff --git a/api_subpackages/mlxtend.externals/index.html b/api_subpackages/mlxtend.externals/index.html index dbf149711..d5c8aeca0 100644 --- a/api_subpackages/mlxtend.externals/index.html +++ b/api_subpackages/mlxtend.externals/index.html @@ -611,7 +611,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    diff --git a/api_subpackages/mlxtend.feature_extraction/index.html b/api_subpackages/mlxtend.feature_extraction/index.html index 2f9e8f24e..ea7fd777c 100644 --- a/api_subpackages/mlxtend.feature_extraction/index.html +++ b/api_subpackages/mlxtend.feature_extraction/index.html @@ -636,7 +636,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    LinearDiscriminantAnalysis

    LinearDiscriminantAnalysis(n_discriminants=None)

    Linear Discriminant Analysis Class

    diff --git a/api_subpackages/mlxtend.feature_selection/index.html b/api_subpackages/mlxtend.feature_selection/index.html index 9b7ca2e24..74081280c 100644 --- a/api_subpackages/mlxtend.feature_selection/index.html +++ b/api_subpackages/mlxtend.feature_selection/index.html @@ -636,7 +636,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    ColumnSelector

    ColumnSelector(cols=None, drop_axis=False)

    Object for selecting specific columns from a data set.

    diff --git a/api_subpackages/mlxtend.file_io/index.html b/api_subpackages/mlxtend.file_io/index.html index dfab77868..e26b82eb9 100644 --- a/api_subpackages/mlxtend.file_io/index.html +++ b/api_subpackages/mlxtend.file_io/index.html @@ -631,7 +631,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    find_filegroups

    find_filegroups(paths, substring='', extensions=None, validity_check=True, ignore_invisible=True, rstrip='', ignore_substring=None)

    Find and collect files from different directories in a python dictionary.

    diff --git a/api_subpackages/mlxtend.frequent_patterns/index.html b/api_subpackages/mlxtend.frequent_patterns/index.html index bbf81dfb1..b3b82a82f 100644 --- a/api_subpackages/mlxtend.frequent_patterns/index.html +++ b/api_subpackages/mlxtend.frequent_patterns/index.html @@ -646,7 +646,7 @@
    -

    mlxtend version: 0.23.1

    +

    mlxtend version: 0.23.4

    apriori

    apriori(df, min_support=0.5, use_colnames=False, max_len=None, verbose=0, low_memory=False)

    Get frequent itemsets from a one-hot DataFrame

    @@ -717,7 +717,7 @@

    apriori

    For usage examples, please see https://rasbt.github.io/mlxtend/user_guide/frequent_patterns/apriori/

    association_rules

    -

    association_rules(df, metric='confidence', min_threshold=0.8, support_only=False)

    +

    association_rules(df: pandas.core.frame.DataFrame, num_itemsets: Union[int, NoneType] = 1, df_orig: Union[pandas.core.frame.DataFrame, NoneType] = None, null_values=False, metric='confidence', min_threshold=0.8, support_only=False, return_metrics: list = ['antecedent support', 'consequent support', 'support', 'confidence', 'lift', 'representativity', 'leverage', 'conviction', 'zhangs_metric', 'jaccard', 'certainty', 'kulczynski']) -> pandas.core.frame.DataFrame

    Generates a DataFrame of association rules including the metrics 'score', 'confidence', and 'lift'

    Parameters

    @@ -728,6 +728,18 @@

    association_rules

    with columns ['support', 'itemsets']

  • +

    df_orig : pandas DataFrame (default: None)

    +

    DataFrame with original input data. Only provided when null_values exist

    +
  • +
  • +

    num_itemsets : int (default: 1)

    +

    Number of transactions in original input data (df_orig)

    +
  • +
  • +

    null_values : bool (default: False)

    +

    In case there are null values as NaNs in the original input data

    +
  • +
  • metric : string (default: 'confidence')

    Metric to evaluate if a rule is of interest. Automatically set to 'support' if support_only=True. @@ -787,7 +799,7 @@

    association_rules

    For usage examples, please see https://rasbt.github.io/mlxtend/user_guide/frequent_patterns/association_rules/

    fpgrowth

    -

    fpgrowth(df, min_support=0.5, use_colnames=False, max_len=None, verbose=0)

    +

    fpgrowth(df, min_support=0.5, null_values=False, use_colnames=False, max_len=None, verbose=0)

    Get frequent itemsets from a one-hot DataFrame

    Parameters