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.
/* ^-- 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;
}