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