summaryrefslogtreecommitdiff
path: root/graphics/asymptote/doc/histogram.asy
blob: f41af60123689870d272227a571415885608f072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import graph;
import stats;

size(400,200,IgnoreAspect);

int n=10000;
real[] a=new real[n];
for(int i=0; i < n; ++i) a[i]=Gaussrand();

draw(graph(Gaussian,min(a),max(a)),blue);

// Optionally calculate "optimal" number of bins a la Shimazaki and Shinomoto.
int N=bins(a);

histogram(a,min(a),max(a),N,normalize=true,low=0,lightred,black,bars=true);

xaxis("$x$",BottomTop,LeftTicks);
yaxis("$dP/dx$",LeftRight,RightTicks(trailingzero));