Order Column Profile¶
- class dataprofiler.profilers.order_column_profile.OrderColumn(name, options=None)¶
Bases:
dataprofiler.profilers.base_column_profilers.BaseColumnProfiler
Index column profile subclass of BaseColumnProfiler. Represents a column in the dataset which is an index column.
Initialization of column base properties and itself.
- Parameters
name (String) – Name of the data
options (OrderOptions) – Options for the Order column
- type = 'order'¶
- report(remove_disabled_flag=False)¶
Private abstract method for returning report.
- Parameters
remove_disabled_flag (boolean) – flag to determine if disabled options should be excluded in the report.
- property profile¶
Property for profile. Returns the profile of the column.
- Returns
- diff(other_profile, options=None)¶
Generates the differences between the orders of two OrderColumns
- Returns
Dict containing the differences between orders in their
appropriate output formats :rtype: dict
- update(df_series)¶
Updates the column profile.
- Parameters
df_series (pandas.core.series.Series) – df series
- Returns
None
- col_type = None¶