Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 15, 2021 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/5365717c464548078084fa8a267edf9d to your computer and use it in GitHub Desktop.
Save amankharwal/5365717c464548078084fa8a267edf9d to your computer and use it in GitHub Desktop.
import numpy
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.tree import DecisionTreeClassifier
from sklearn.metrics import classification_report
data = pd.read_csv("https://raw.githubusercontent.com/amankharwal/Website-data/master/social.csv")
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment