From 35b9585d13b2b926e678054647bcdd74648d5514 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 21 Jun 2013 09:30:37 -0400 Subject: [PATCH] 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. --- src/figures/order-dep/order-dep.asy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.26.2