Skip to content

Instantly share code, notes, and snippets.

@PhilipPurwoko
Last active September 8, 2020 15:44
Show Gist options
  • Save PhilipPurwoko/1eadae9b86b91e9d9954841a2f9babea to your computer and use it in GitHub Desktop.
Save PhilipPurwoko/1eadae9b86b91e9d9954841a2f9babea to your computer and use it in GitHub Desktop.
Gist untuk materi medium machine learning project
# Import standard library
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
# Memuat file drug200.csv menjadi pandas dataframe
dataframe = pd.read_csv('drug200.csv')
# Menampilkan 5 baris pertama dari dataframe
dataframe.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment