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

Let me see can i combine and see that can i differentiate the payments using geographical location

import matplotlib.pyplot as plt
import numpy as np
from sklearn.linear_model import LogisticRegression ## for performing the logistic Regression
from sklearn.metrics import accuracy_score ## to obtain the accuracy score
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
payment= pd.read_csv("olist_order_payments_dataset.csv")
customer=pd.read_csv("olist_customers_dataset.csv")
customer.head()