Learn practical skills, build real-world projects, and advance your career

Project title: Titanic case study and Twitter sentiment analysis in machine learning (Hello world of ML)

# Question 1
import pandas as pd
d=pd.read_csv("1Q.csv")
d.head()

Data Preparation and Cleaning

The training-set has 891 examples and 11 features + the target variable (survived). 2 of the features are floats, 5 are integers and 5 are objects.