# import necessary libraries
import pandas as pd

# read data frame 
df = pd.read_csv('http://bit.ly/kaggletrain', nrows=10)

# select some or all features of the dataset
cols = ['Embarked', 'Sex', 'Age']
X = df[cols]

# view the selected columns
print(f'\nSelected Columns: \n{X}')