Skip to content

Instantly share code, notes, and snippets.

@ishritam
Created October 9, 2019 06:53
Show Gist options
  • Save ishritam/ed0a8a3e24f7fc0218a52581191f3800 to your computer and use it in GitHub Desktop.
Save ishritam/ed0a8a3e24f7fc0218a52581191f3800 to your computer and use it in GitHub Desktop.
importing libraries and load the dataset
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
'''downlaod iris.csv from https://raw.githubusercontent.com/uiuc-cse/data-fa14/gh-pages/data/iris.csv'''
#Load Iris.csv into a pandas dataFrame.
iris = pd.read_csv("iris.csv")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment