Method
getEdaDataConsistency GET
Copy GET

Gets the data consistency for the Exploratory Data Analysis.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes edaVersion str Unique string identifier associated with the EDA instance.
No transformationFeature str The transformation feature to get consistency for.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result EdaDataConsistency
KEY TYPE Description
columnNames list Name of all the features in the data
primaryKeys list Name of the primary keys in the data
transformationColumnNames list Name of all the features that are not the primary keys
baseDuplicates DataConsistencyDuplication A DataConsistencyDuplication describing the number of duplicates within the data
KEY TYPE Description
totalCount int Total count of rows in data.
numDuplicates int Number of Duplicates based on primary keys in data.
sample FeatureRecord A list of dicts enumerating rows the rows that contained duplications in primary keys.
KEY TYPE Description
data dict the record's current data
compareDuplicates DataConsistencyDuplication A DataConsistencyDuplication describing the number of duplicates within the data
KEY TYPE Description
totalCount int Total count of rows in data.
numDuplicates int Number of Duplicates based on primary keys in data.
sample FeatureRecord A list of dicts enumerating rows the rows that contained duplications in primary keys.
KEY TYPE Description
data dict the record's current data
deletions DataConsistencyDuplication A DataConsistencyDeletion describing the number of deletion between two versions in the data
KEY TYPE Description
totalCount int Total count of rows in data.
numDuplicates int Number of Duplicates based on primary keys in data.
sample FeatureRecord A list of dicts enumerating rows the rows that contained duplications in primary keys.
KEY TYPE Description
data dict the record's current data
transformations DataConsistencyTransformation A DataConsistencyTransformation the number of changes that occured per feature in the data
Language: