diff --git a/网工20102班202014050217黎成哲.py b/网工20102班202014050217黎成哲.py deleted file mode 100644 index 74f6d02..0000000 --- a/网工20102班202014050217黎成哲.py +++ /dev/null @@ -1,9 +0,0 @@ -import pandas as pd -import matplotlib.pyplot as plt - -df = pd.DataFrame({'height':[180,170,172,183,179,178,160], - 'weight':[85,80,85,75,78,78,70]}) -df.plot(x='height', y='weight', kind='scatter', - marker='*', s=60, label='height-weight') #绘制散点图 -# plt.figure(figsize=(8,5)) -plt.show()