MCPcopy Create free account

hub / github.com/alteryx/featuretools / functions

Functions2,586 in github.com/alteryx/featuretools

Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/percent_unique.py:39
Method__init__
(self, lower=0, upper=1, skipna=True)
featuretools/primitives/standard/aggregation/count_outside_range.py:35
Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/max_count.py:32
Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/num_consecutive_greater_mean.py:39
Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/mean.py:31
Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/max_consecutive_zeros.py:34
Method__init__
(self, use_string_for_pd_calc=True)
featuretools/primitives/standard/aggregation/num_unique.py:34
Method__init__
(self, n=1)
featuretools/primitives/standard/aggregation/count_outside_nth_std.py:27
Method__init__
(self, dropna=False, base=None)
featuretools/primitives/standard/aggregation/entropy.py:34
Method__init__
(self, skipna=True)
featuretools/primitives/standard/aggregation/max_consecutive_positives.py:34
Method__init__
(self)
featuretools/primitives/base/primitive_base.py:49
Method__init__
Args: features (list[Feature]): Features of the target dataframe. approximate_feature_trie (Trie[RelationshipPath, se
featuretools/computational_backends/feature_set.py:23
Method__init__
Args: feature_set (FeatureSet): The features to calculate values for. time_last (pd.Timestamp, optional): Last allow
featuretools/computational_backends/feature_set_calculator.py:26
Method__init__
Args: value (float, str, dict) : Value of timedelta, string providing both unit and value, or a dictionary of uni
featuretools/entityset/timedelta.py:48
Method__init__
Creates EntitySet Args: id (str) : Unique identifier to associate with this instance dataframes (dict[str -> tuple(Da
featuretools/entityset/entityset.py:43
Method__init__
Create a relationship Args: entityset (:class:`.EntitySet`): EntitySet to which the relationship belongs parent_dataf
featuretools/entityset/relationship.py:8
Method__init__
(self, relationships_with_direction)
featuretools/entityset/relationship.py:142
Method__invert__
(self)
featuretools/feature_base/feature_base.py:451
Method__iter__
Iterate over all values in the trie. Yields tuples of (path, value). Implemented using depth first search.
featuretools/utils/trie.py:93
Method__iter__
(self)
featuretools/entityset/relationship.py:178
Method__le__
Compares if less than or equal to other
featuretools/feature_base/feature_base.py:315
Method__len__
(self)
featuretools/entityset/relationship.py:182
Method__lt__
(self, other: LiteFeature)
featuretools/feature_discovery/LiteFeature.py:236
Method__lt__
Compares if less than other
featuretools/feature_base/feature_base.py:307
Method__lt__
(self, other)
featuretools/primitives/base/primitive_base.py:60
Method__mod__
Take modulus of other
featuretools/feature_base/feature_base.py:397
Method__ne__
(self, other)
featuretools/feature_discovery/LiteFeature.py:239
Method__ne__
Compares to other by non-equality
featuretools/feature_base/feature_base.py:283
Method__ne__
(self, other, deep=False)
featuretools/entityset/entityset.py:141
Method__ne__
(self, other)
featuretools/entityset/relationship.py:192
Method__neg__
(self)
featuretools/feature_base/feature_base.py:426
Method__neg__
Negate the timedelta
featuretools/entityset/timedelta.py:189
Method__not__
(self, other)
featuretools/feature_base/feature_base.py:420
Method__or__
(self, other)
featuretools/feature_base/feature_base.py:414
Method__radd__
(self, other)
featuretools/feature_base/feature_base.py:331
Method__radd__
Add the Timedelta to a timestamp value
featuretools/entityset/timedelta.py:199
Method__rand__
(self, other)
featuretools/feature_base/feature_base.py:411
Method__repr__
(self)
featuretools/feature_discovery/FeatureCollection.py:30
Method__repr__
(self)
featuretools/feature_base/feature_base.py:203
Method__repr__
(self)
featuretools/entityset/entityset.py:275
Method__repr__
(self)
featuretools/entityset/relationship.py:49
Method__repr__
(self)
featuretools/entityset/relationship.py:195
Method__rmod__
(self, other)
featuretools/feature_base/feature_base.py:405
Method__rmul__
(self, other)
featuretools/feature_base/feature_base.py:394
Method__ror__
(self, other)
featuretools/feature_base/feature_base.py:417
Method__rsub__
(self, other)
featuretools/feature_base/feature_base.py:342
Method__rsub__
Subtract the Timedelta from a timestamp value
featuretools/entityset/timedelta.py:206
Method__rtruediv__
(self, other)
featuretools/feature_base/feature_base.py:356
Method__setitem__
(self, key, value)
featuretools/entityset/entityset.py:747
Method__setstate__
(self, state)
featuretools/entityset/entityset.py:1256
Method__sub__
Subtract other
featuretools/feature_base/feature_base.py:334
Method__truediv__
(self, other)
featuretools/feature_base/feature_base.py:353
Method_calculate_agg_features
(self, features, frame, df_trie, progress_callback)
featuretools/computational_backends/feature_set_calculator.py:652
Method_calculate_direct_features
( self, features, child_df, df_trie, progress_callback, )
featuretools/computational_backends/feature_set_calculator.py:594
Method_calculate_groupby_features
(self, features, frame, _df_trie, progress_callback)
featuretools/computational_backends/feature_set_calculator.py:526
Method_calculate_identity_features
(self, features, df, _df_trie, progress_callback)
featuretools/computational_backends/feature_set_calculator.py:470
Method_calculate_transform_features
( self, features, frame, _df_trie, progress_callback, )
featuretools/computational_backends/feature_set_calculator.py:480
Method_count_upper_case_words
(elem)
featuretools/primitives/standard/transform/natural_language/upper_case_word_count.py:37
Method_get_num_characters
Returns the length of elem, or pd.NA given null input
featuretools/primitives/standard/transform/natural_language/num_characters.py:30
Method_get_number_of_words
Returns the number of words in given element, or pd.NA given null input
featuretools/primitives/standard/transform/natural_language/num_words.py:36
Method_map
(x)
featuretools/tests/primitive_tests/test_transform_features.py:1300
Function_mean_characters_per_word
(value)
featuretools/primitives/standard/transform/natural_language/mean_characters_per_word.py:18
Method_unique_word_helper
(text)
featuretools/primitives/standard/transform/natural_language/number_of_unique_words.py:48
Methodabsolute_diff
(data)
featuretools/primitives/standard/transform/absolute_diff.py:67
Methodadd_scalar
(vals)
featuretools/primitives/standard/transform/binary/add_numeric_scalar.py:28
Methodadd_value
(df, col, val, verbose)
featuretools/entityset/entityset.py:1305
Methodage
(x, time=None)
featuretools/primitives/standard/transform/datetime/age.py:35
Methodall_features
(self)
featuretools/feature_discovery/FeatureCollection.py:34
Methodaverage_count_per_unique
(x)
featuretools/primitives/standard/aggregation/average_count_per_unique.py:46
Functionbad_df
()
featuretools/tests/entityset_tests/test_es.py:803
Functionbad_primitives_files_dir
(this_dir)
featuretools/tests/primitive_tests/test_primitive_utils.py:188
Methodbase_features
(self)
featuretools/feature_discovery/LiteFeature.py:144
Functionboolean_mult_es
()
featuretools/tests/primitive_tests/test_transform_features.py:659
Methodcharacter_counter
(array)
featuretools/primitives/standard/transform/natural_language/num_characters.py:29
Functioncheck_execution
()
docs/notebook_version_standardizer.py:138
Methodchild_column
Column in child dataframe
featuretools/entityset/relationship.py:96
Methodchild_dataframe
Child dataframe object
featuretools/entityset/relationship.py:86
Methodchild_name
The name of the child, relative to the parent.
featuretools/entityset/relationship.py:109
Methodcityblock
(latlong_1, latlong_2)
featuretools/primitives/standard/transform/latlong/cityblock_distance.py:57
Methodcolumn_schema
(self)
featuretools/feature_discovery/LiteFeature.py:275
Methodcolumn_schema
(self)
featuretools/feature_base/feature_base.py:213
Methodcolumn_schema
(self)
featuretools/feature_base/feature_base.py:503
Methodcolumn_schema
(self)
featuretools/feature_base/feature_base.py:608
Methodcopy
Return copy of feature
featuretools/feature_base/feature_base.py:485
Methodcopy
(self)
featuretools/feature_base/feature_base.py:869
Methodcopy
(self)
featuretools/feature_base/feature_base.py:924
Methodcopy
(self)
featuretools/feature_base/feature_base.py:1065
Methodcount_above_mean
(x)
featuretools/primitives/standard/aggregation/count_above_mean.py:36
Methodcount_below_mean
(x)
featuretools/primitives/standard/aggregation/count_below_mean.py:36
Methodcount_func
(values)
featuretools/tests/primitive_tests/test_agg_feats.py:98
Methodcount_greater_than
(x)
featuretools/primitives/standard/aggregation/count_greater_than.py:30
Methodcount_inside_nth_std
(x)
featuretools/primitives/standard/aggregation/count_inside_nth_std.py:34
Methodcount_inside_range
(x)
featuretools/primitives/standard/aggregation/count_inside_range.py:42
Methodcount_less_than
(x)
featuretools/primitives/standard/aggregation/count_less_than.py:30
Methodcount_outside_nth_std
(x)
featuretools/primitives/standard/aggregation/count_outside_nth_std.py:34
Methodcount_outside_range
(x)
featuretools/primitives/standard/aggregation/count_outside_range.py:41
Methodcount_string
(words)
featuretools/primitives/standard/transform/natural_language/count_string.py:101
Methodcount_unique_separator
(s)
featuretools/primitives/standard/transform/natural_language/num_unique_separators.py:38
Methodcount_words_in_quotes
(text)
featuretools/primitives/standard/transform/natural_language/number_of_words_in_quotes.py:60
Functioncount_wrapper
(sub_s)
featuretools/tests/primitive_tests/test_rolling_primitive_utils.py:317
← previousnext →601–700 of 2,586, ranked by callers