reproduce/plot_iterate_distance.py [91:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    plt.xlim([0.0, 1.0])

    # Format x axis as percentage
    def myfunc(x, pos=0):
     return '%1.0f%%'%(100*x)
    ax.xaxis.set_major_formatter(FuncFormatter(myfunc))


    ax.grid(False)
    ax.xaxis.set_tick_params(direction='in')
    ax.yaxis.set_tick_params(direction='in', right="on")
    #pdb.set_trace()
    labelLines(plt.gca().get_lines(), align=False, fontsize=label_fontsize, xvals=xvals)
    figname = "{}/{}.pdf".format(plot_dir, plot_name)

    fig.savefig(figname, bbox_inches='tight', pad_inches=0)
    print("saved", figname)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



reproduce/plot_transform_locking.py [94:109]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    plt.xlim([0.0, 1.0])

    # Format x axis as percentage
    def myfunc(x, pos=0):
     return '%1.0f%%'%(100*x)
    ax.xaxis.set_major_formatter(FuncFormatter(myfunc))


    ax.grid(False)
    ax.xaxis.set_tick_params(direction='in')
    ax.yaxis.set_tick_params(direction='in', right="on")
    labelLines(plt.gca().get_lines(), align=False, fontsize=label_fontsize, xvals=xvals)
    figname = "{}/{}.pdf".format(plot_dir, plot_name)

    fig.savefig(figname, bbox_inches='tight', pad_inches=0)
    print("saved", figname)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



