Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mrdbourke
GitHub Repository: mrdbourke/zero-to-mastery-ml
Path: blob/master/section-2-data-science-and-ml-tools/example-notebook.ipynb
874 views
Kernel: Python 3
print("hello world")
hello world
1+1
2

Hello world

1. Problem defintion

2. Data

import pandas as pd
df = pd.read_csv("heart-disease.csv")
len(df)
303
df
import matplotlib.pyplot as plt
df.target.value_counts().plot(kind="bar")
<matplotlib.axes._subplots.AxesSubplot at 0x1213c1dd0>
Image in a Jupyter notebook
!ls
6-step-ml-framework.png example-notebook.ipynb env heart-disease.csv