I am doing the Titanic problem in Kaggle and I have problems displaying the dataframe:
import pandas as pd
import numpy as np
titanic = pd.read_csv("input/train.csv")
titanic.head()
This should display the train.csv
but it doesn't. Do you know why?