Why am I writing this article? Combatting Fraud and Cyber Crime with Python
My passion has always been in fraud analytics. I just think it’s really interesting how you use that data and what writing some clever code can mean for a company’s bottom line.
As a data engineer, I’m constantly surrounded by data, in some point of the spectrum. Could be the quality of the data — are the data types correct, are they optimally stored; could be the manipulation of data — analysis and modeling; could be presentation of the data — report/dashboard building; could be the delivery of the data — is it in the right location, data warehouse, database types of thing; whatever it may be, I’ve worked on it. But using data to find fraud — it’s like using data to build a puzzle. It’s awesome.
Or at least, what do people mean when they say “we’re looking for a fraud or risk analyst”? Depending on your industry, it usually means digital fraud; things like CNP (card not present) fraud, account takeover — basically extracting cash off of a stolen credit card. There are bigger definitions, but you didn’t come here for a history lesson. You came here for the code, am I right?
Not going to get into this too much either — but there are deep corners of the internet where you wouldn’t want to even visit unless you were completely hidden. And by hidden I mean using a vpn, an encrypted browser and it would be best not to do it on your personal device.
#first thing's first
import pandas as pd
import itertools
import plotly.express as px
In this post, we will learn about pandas’ data structures/objects. Pandas provide two type of data structures:- ### Pandas Series Pandas Series is a one dimensional indexed data, which can hold datatypes like integer, string, boolean, float...
Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
In this tutorial, you’re going to learn a variety of Python tricks that you can use to write your Python code in a more readable and efficient way like a pro.
Today you're going to learn how to use Python programming in a way that can ultimately save a lot of space on your drive by removing all the duplicates. We gonna use Python OS remove( ) method to remove the duplicates on our drive. Well, that's simple you just call remove ( ) with a parameter of the name of the file you wanna remove done.
In the programming world, Data types play an important role. Each Variable is stored in different data types and responsible for various functions. Python had two different objects, and They are mutable and immutable objects.