public ScatterPlot(Vector<Vector<Object>> data) { model = new ScatterPlotModel(); model.readTXTData("RPKM.txt"); view = new ScatterPlotView(model); controller = new ScatterPlotController(view, model); }
public ScatterPlot(String input) { model = new ScatterPlotModel(); model.readTXTData(input); view = new ScatterPlotView(model); controller = new ScatterPlotController(view, model); }