Get Attributes Detail¶
DataDefinitionResource.
getAttributesDetail
(request, sub_analysis_id, **kwargs)¶Prior mandatory steps 1) Upload dataset 2) Create analysis 3) Create sub analysis
Using the sub-analysis ID, user can get the details of attributes in the dataset. Purpose of this function is to provide the data definitions format and attribute details that are automatically detected by Intuceo back to user. Refer to define attribute function next function in this document.
Arguments
sub_analysis_id Give sub analysis id Possible errors
Error message Invalid sub analysis id GET Request Example
curl -u username:password {url_prefix}/attributes_detail/{sub_analysis_id}/Response Example
{ "error": false, "error_msg": "", "result": [ { "Actionable": "N", "Business Name": "job", "Group Name": "General", "Intuceo name": "job", "Merge": "N", "Type": "categorical" }, { "Actionable": "Y", "Business Name": "marital", "Group Name": "General", "Intuceo name": "marital", "Merge": "N", "Type": "categorical" }, ] }