import java.io.FileNotFoundException; import java.io.IOException; /** * * @author CS2334. Modified by: ????? *

* Date: 2015-09-10
* Project 1 *

* This class creates a DataSet object with a set of test files and reports the * DataSet statistics * */ public class Driver { /** * Main method: create DataSet and report statistics * * @param args */ public static void main(String[] args) throws IOException, NumberFormatException, FileNotFoundException{ String[] files = {"data/august_2010.csv", "data/august_2011.csv", "data/august_2012.csv", "data/august_2013.csv", "data/august_2014.csv"}; DataSet dataSet = new DataSet(files); System.out.println(dataSet); } }