import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns plt.style.use('fivethirtyeight') # to avoid warnings import warnings warnings.filterwarnings("ignore", category=DeprecationWarning) from sklearn.model_selection import train_test_split from sklearn.preprocessing import StandardScaler import xgboost as xgb from xgboost.sklearn import XGBClassifier from sk..