Baselight

Credit Card Fraud Detection

Fraud detection credit card

@kaggle.shayannaveed_credit_card_fraud_detection

Loading...
Loading...

About this Dataset

Credit Card Fraud Detection

It is important that credit card companies are able to recognize fraudulent credit card transactions so that customers are not charged for items that they did not purchase.
The data sets contains transactions made by credit cards by cardholders. This dataset we have found 492 frauds out of 284,807 transactions. The dataset is highly unbalanced, the frauds account for 0.172% of all transactions.
It contains only numerical input variables which are the result of a PCA transformation. Features V1, V2, ... V28 are the principal components obtained with PCA, the only features which have not been transformed with PCA is Time and Amount. Feature Time contains the seconds between each transaction and the first transaction in the dataset. The feature Amount is the transaction Amount, this feature can be used for example-dependant cost-senstive learning. Feature Class is the response variable and it takes value 1 in case of fraud and 0 otherwise.
Time
Number of seconds elapsed between this transaction and the first transaction in the dataset
V1….V28
may be result of a PCA Dimensionality reduction to protect user identities and sensitive features(v1-v28)
Amount
Transaction amount
Class
The value 1 is for fraudulent transactions, value 0 is for nonfraudulent transactions

Tables

Creditcard

@kaggle.shayannaveed_credit_card_fraud_detection.creditcard
  • 69.84 MB
  • 284807 rows
  • 31 columns
Loading...

CREATE TABLE creditcard (
  "time" DOUBLE,
  "v1" DOUBLE,
  "v2" DOUBLE,
  "v3" DOUBLE,
  "v4" DOUBLE,
  "v5" DOUBLE,
  "v6" DOUBLE,
  "v7" DOUBLE,
  "v8" DOUBLE,
  "v9" DOUBLE,
  "v10" DOUBLE,
  "v11" DOUBLE,
  "v12" DOUBLE,
  "v13" DOUBLE,
  "v14" DOUBLE,
  "v15" DOUBLE,
  "v16" DOUBLE,
  "v17" DOUBLE,
  "v18" DOUBLE,
  "v19" DOUBLE,
  "v20" DOUBLE,
  "v21" DOUBLE,
  "v22" DOUBLE,
  "v23" DOUBLE,
  "v24" DOUBLE,
  "v25" DOUBLE,
  "v26" DOUBLE,
  "v27" DOUBLE,
  "v28" DOUBLE,
  "amount" DOUBLE,
  "class" BIGINT
);

Share link

Anyone who has the link will be able to view this.