import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.impute import SimpleImputer
import matplotlib.pyplot as plt
from sklearn.preprocessing import OneHotEncoder
from sklearn.preprocessing import LabelEncoder
#import data
data = pd.read_csv("../Datasets/insurance.csv")
#see the first 15 lines of data
print(data.head(15))