# importing pandas to read the CSV file | |
import pandas as pd | |
# read the data | |
data_classification = pd.read_csv('datasets/loan_train_data.csv') | |
# view the top rows of the data | |
data_classification.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment