Datarobot Score
Parameters
Name
Type
Description
Is Optional
Example
toscore = rasgo.get.dataset(resource_key='adventureworks_sales_by_day_toscore')
# with explanations
scored = toscore.datarobot_score(function_name = 'PUBLIC.DEMO_PREDICT_NEXT_WEEK_SALES_V2',
include_cols = ['ORDERDATE','SALESAMOUNT'],
num_explains=2,
threshold_low=100,
threshold_high=100000)
# without explanations
scored = toscore.datarobot_score(function_name = 'PUBLIC.DEMO_PREDICT_NEXT_WEEK_SALES',
include_cols = ['ORDERDATE','SALESAMOUNT'])
scored.preview()Source Code
Last updated