python subplot
f, axarr = plt.subplots(1, 3, figsize=_figsize) r = get_s4reward(rewards) axarr[0].scatter(zmu_proj[idx_l,0],zmu_proj[idx_l,1],s=r[idx_l],marker='o',edgecolors='g',facecolors=_facecolors,linewidths=2,label='Left') axarr[0].set_xlim([-m,m]); axarr[0].set_ylim([-m,m]); axarr[0].set_title('Left', fontsize=25) axarr[1].scatter(zmu_proj[idx_r,0],zmu_proj[idx_r,1],s=r[idx_r],marker='o',edgecolors='r',..
더보기