From: W. Trevor King Date: Fri, 21 Jun 2013 13:30:37 +0000 (-0400) Subject: figures/order-dep/order-dep.asy: Reduce x ticks on inset histograms X-Git-Tag: v1.0~45 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=35b9585d13b2b926e678054647bcdd74648d5514;p=thesis.git figures/order-dep/order-dep.asy: Reduce x ticks on inset histograms Having three ticks (with N=2?) makes for integer tick labels. The change from N=3 to N=2 may be due to a regression in Asymptote, but I don't have the time to track that down now. Thanks for pointing out the problem, Prof. Cruz. --- diff --git a/src/figures/order-dep/order-dep.asy b/src/figures/order-dep/order-dep.asy index 6bf91f0..3afca9b 100644 --- a/src/figures/order-dep/order-dep.asy +++ b/src/figures/order-dep/order-dep.asy @@ -63,7 +63,7 @@ picture hist_picture(string datafile, /* ^-- yscale b/c bins are in Force */ xlimits(pic, xmin, xmax); ylimits(pic, ymin, ymax); - xaxis(pic, sLabel("Force (pN)"), BottomTop, LeftTicks(N=3), above=true); + xaxis(pic, sLabel("Force (pN)"), BottomTop, LeftTicks(N=2), above=true); yaxis(pic, sLabel("Frequency"), LeftRight, RightTicks, above=true); return pic; }