Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AggregatedVariablesImpactExplanation

import type { AggregatedVariablesImpactExplanation } from "https://aws-api.deno.dev/v0.4/services/frauddetector.ts?docs=full";

The details of the impact of aggregated variables on the prediction score.

Account Takeover Insights (ATI) model uses the login data you provide to continuously calculate a set of variables (aggregated variables) based on historical events. For example, the model might calculate the number of times an user has logged in using the same IP address. In this case, event variables used to derive the aggregated variables are IP address and user.

interface AggregatedVariablesImpactExplanation {
eventVariableNames?: string[] | null;
logOddsImpact?: number | null;
relativeImpact?: string | null;
}

§Properties

§
eventVariableNames?: string[] | null
[src]

The names of all the event variables that were used to derive the aggregated variables.

§
logOddsImpact?: number | null
[src]

The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from -infinity to +infinity.

  • A positive value indicates that the variables drove the risk score up.
  • A negative value indicates that the variables drove the risk score down.
§
relativeImpact?: string | null
[src]

The relative impact of the aggregated variables in terms of magnitude on the prediction scores.