# -*- coding: utf-8 -*-
"""
Created on Mon May 31 15:31:09 2021

@author: Sim
"""
import matplotlib.pyplot as plt
import pandas as pd

df = pd.read_csv(r'D:\HTEX\Pythonbk\codesdata\bmi.csv')
plt.plot(df['height'], df['weight'], 'b+')
plt.show()
plt.scatter(df['height'], df['weight'], marker='+', color='blue')
plt.show()


df.plot('height', 'weight', kind='scatter')
plt.show()
df.plot.scatter('height', 'weight')
plt.show()
# plt.plot('height', 'weight', data=df, color='blue', marker='+')
