Skip to content

Instantly share code, notes, and snippets.

@omairaasim
Created September 2, 2019 17:52
Show Gist options
  • Save omairaasim/752b240e540b00e21aeb2f0496469376 to your computer and use it in GitHub Desktop.
Save omairaasim/752b240e540b00e21aeb2f0496469376 to your computer and use it in GitHub Desktop.
project_2_step_1_load_data
# Step 1 - Load Data
import pandas as pd
dataset = pd.read_csv("50_Startups.csv")
X = dataset.iloc[:,:-1].values
y = dataset.iloc[:,4].values
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment