woodwork.table_accessor.
WoodworkTableAccessor
__init__
Initialize self. See help(type(self)) for accurate signature.
Methods
__init__(dataframe)
Initialize self.
add_semantic_tags(semantic_tags)
add_semantic_tags
Adds specified semantic tags to columns, updating the Woodwork typing information.
describe([include, callback])
describe
Calculates statistics for data contained in the DataFrame.
describe_dict([include, callback, …])
describe_dict
drop(columns[, inplace])
drop
Drop specified columns from a DataFrame.
get_valid_mi_columns([include_index])
get_valid_mi_columns
Retrieves a list of columns from the DataFrame with valid Logical Types that support mutual information.
init(**kwargs)
init
Initializes Woodwork typing information for a DataFrame with a partial schema.
init_with_full_schema(schema[, validate])
init_with_full_schema
Initializes Woodwork typing information for a DataFrame with a complete schema.
init_with_partial_schema([schema, index, …])
init_with_partial_schema
mutual_information([num_bins, nrows, …])
mutual_information
Calculates mutual information between all pairs of columns in the DataFrame that support mutual information.
mutual_information_dict([num_bins, nrows, …])
mutual_information_dict
pop(column_name)
pop
Return a Series with Woodwork typing information and remove it from the DataFrame.
remove_semantic_tags(semantic_tags)
remove_semantic_tags
Remove the semantic tags for any column names in the provided semantic_tags dictionary, updating the Woodwork typing information.
rename(columns[, inplace])
rename
Renames columns in a DataFrame, maintaining Woodwork typing information.
reset_semantic_tags([columns, retain_index_tags])
reset_semantic_tags
Reset the semantic tags for the specified columns to the default values.
select([include, exclude, return_schema])
select
Create a DataFrame with Woodwork typing information initialized that includes only columns whose Logical Type and semantic tags match conditions specified in the list of types and tags to include or exclude.
set_index(new_index)
set_index
Sets the index column of the DataFrame.
set_time_index(new_time_index)
set_time_index
Set the time index.
set_types([logical_types, semantic_tags, …])
set_types
Update the logical type and semantic tags for any columns names in the provided types dictionaries, updating the Woodwork typing information for the DataFrame.
to_dictionary()
to_dictionary
Get a dictionary representation of the Woodwork typing information.
to_disk(path[, format, compression, …])
to_disk
Write Woodwork table to disk in the format specified by format, location specified by path.
value_counts([ascending, top_n, dropna])
value_counts
Returns a list of dictionaries with counts for the most frequent values in each column (only
Attributes
iloc
Integer-location based indexing for selection by position.
index
The index column for the table
loc
Access a group of rows by label(s) or a boolean array.
logical_types
A dictionary containing logical types for each column
metadata
Metadata of the DataFrame
name
Name of the DataFrame
physical_types
A dictionary containing physical types for each column
schema
A copy of the Woodwork typing information for the DataFrame.
semantic_tags
A dictionary containing semantic tags for each column
time_index
The time index column for the table
types
DataFrame containing the physical dtypes, logical types and semantic tags for the schema.
use_standard_tags
A dictionary containing the use_standard_tags setting for each column in the table