代码拉取完成,页面将自动刷新
import sys
import csv
from matplotlib import pyplot as plt
filename = 'insDependDist.csv'
MAX_DISPLAY = int(sys.argv[1]) if len(sys.argv) == 2 else 45
with open(filename) as f:
reader = csv.reader(f)
depend_row = next(reader)
allDepend = 0
for i in range(MAX_DISPLAY):
allDepend += int(depend_row[i])
percent = []
for i in range(MAX_DISPLAY):
percent.append(int(depend_row[i]) / allDepend)
fig = plt.figure(dpi = 100, figsize = (7, 4))
plt.plot([n for n in range(1, MAX_DISPLAY + 1)], percent[0:MAX_DISPLAY], c = 'red', marker = '.')
plt.title("Instuction Dependance Distance Distribution", fontsize = 16)
plt.xlabel('Dependence Distance', fontsize = 12)
plt.ylabel('Percent of Dependence', fontsize = 12)
plt.xlim(0, MAX_DISPLAY)
plt.ylim(0, percent[0] * 1.05)
plt.gca().xaxis.set_major_locator(plt.MultipleLocator(5))
plt.grid(linestyle = ':')
plt.show()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。