Lab 7 Comp 170-201 -- Dordal/Nabicht -- Wed, October 9, 2002 Final version due Fri Oct 18 In this lab we will create a histogram, using arrays. At the end, we'll draw a graph of the data, so your project will be an *applet*. (Not to worry; I supply the drawing code.) All the data analysis will go into init(); only the actual drawing will go into paint(). First, let's generate a big array of random data: // will need "import java.util.Random;" final int DATASIZE = 1000; double [] data = new double [DATASIZE]; for (int i=0; i