" plt.ylabel(\"Number of question associations\")\n", " for i in range(len(y)):\n", " plt.plot(i,y[i], marker='o', linestyle='',ms=area[i],label=x[i])\n", "\n", " plt.legend(numpoints=1)\n", " plt.show()" ] }, { "cell_type": "code", "execution...