This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import the Pandas library | |
import pandas as pd | |
# Load the train and test datasets to create two DataFrames | |
train_url = "train.csv" | |
train = pd.read_csv(train_url) | |
test_url = "test.csv" | |
test = pd.read_csv(test_url) | |
#Print the `head` of the train and test dataframes | |
print(train.head()) |