String title="Data"; String author= "Kelmor"; int many=15; //array size int[] numbers= new int[many]; float max, avg, sig; float w, h; // float w40; float barmax; void setup () { size(725, 530); //size of cell w=width /(many+4); h=height/(many+3); barmax= width -3*w; reset(); } void reset (){ reset (numbers, many); } void reset(int[] a, int m) { //randoms numbers for (int j=0; j