Learn practical skills, build real-world projects, and advance your career

Credit Card Fraud Detection

In this project you will predict fraudulent credit card transactions with the help of Machine learning models. Please import the following libraries to get started.

import numpy as np
import pandas as pd

import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns

from sklearn import metrics
from sklearn import preprocessing

Exploratory data analysis

df = pd.read_csv('creditcard.csv')
df.head()
#observe the different feature type present in the data