Skip to content

Instantly share code, notes, and snippets.

@Remonhasan
Last active August 3, 2020 09:19
Show Gist options
  • Save Remonhasan/0067e7f6008dc8ae15bcd0eedfd3901d to your computer and use it in GitHub Desktop.
Save Remonhasan/0067e7f6008dc8ae15bcd0eedfd3901d to your computer and use it in GitHub Desktop.
Machine Learning - Import Dataset and Libreries
#Author: Remon Hasan
#University of Asia Pacific
#Data Preprocessing
#Import Libraries
#import Numpy -[ Numpy is a library that contains mathematical tools ]
import numpy as np
#import matplotlib & sublibrary Pyplot - [These library help us to plot]
import matplotlib.pyplot as plt
#import pandas - [It helps to import and manage dataset]
import pandas as pd
#importing dataset
data = pd.read_csv('Data.csv')
print(data) # print the dataset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment