plt.scatter散点图


import matplotlib.pyplot as plt
import numpy as np
import pandas as pd

df = pd.read_csv("transcount.csv")
df = df.groupby("Date of introduction").aggregate(np.mean)

gpu = pd.read_csv("gpu_transcount.csv")
gpu = gpu.groupby("Date of introduction").aggregate(np.mean)

df = pd.merge(df, gpu, how="outer", left_index=True, right_index=True)
df = df.replace(np.nan, 0)

print(df)
years = df.index.values
counts = df['Transistor count_x'].values
gpu_counts = df['Transistor count_y'].values

poly = np.polyfit(years, np.log(counts), deg = 1)
plt.plot(years, np.polyval(poly, years), label='Fit')

gpu_start = gpu.index.values.min()
y_ann = np.log(df.at[gpu_start, 'Transistor count_x'])
ann_str = "First GPU\n %d" %gpu_start
plt.annotate(ann_str, xy = (gpu_start, y_ann), arrowprops=dict(arrowstyle="->"), xytext=(-30, + 70), textcoords="offset points")

cnt_log= np.log(counts)
plt.scatter(years, cnt_log, c = 200 * years, s=20 + 200 * gpu_counts/gpu_counts.max(), alpha=0.5, label="Scatter Plot")
plt.legend(loc='upper left')
plt.grid()
plt.xlabel("Year")
plt.ylabel("Log Transistor Counts", fontsize=16)
plt.title("Moore's Law & Transistor Counts")
plt.show()




  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值