Method
Gets the Collinearity between all features for the Exploratory Data Analysis.
| REQUIRED |
KEY |
TYPE |
DESCRIPTION |
| Yes |
edaVersion |
str |
Unique string identifier associated with the EDA instance.
|
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.
| KEY |
TYPE |
DESCRIPTION |
| success |
Boolean |
true if the call succeeded, false if there was an error |
| result |
EdaCollinearity |
| KEY |
TYPE |
Description |
| columnNames |
list |
Name of all the features in the y axis of the collinearity matrix |
| collinearityMatrix |
dict |
A dict describing the collinearity between all the features |
| groupFeatureDict |
dict |
A dict describing the index of the group from collinearity_groups a feature exists in |
| collinearityGroups |
list |
Groups created based on a collinearity threshold of 0.7 |
| columnNamesX |
list |
Name of all the features in the x axis of the collinearity matrix |
|