/* Example of loading a simple dataset into sgt using the command line! */ import gov.noaa.pmel.sgt.cplab.SimpleGraph; public class graph { public static void main(String[] args) { if (args.length < 6) { System.out.println("Usage:\n\tgraph title xlegend"+ " xunits ylegend yunits datafile"); } else { SimpleGraph d = new SimpleGraph(args[0],args[1],args[2], args[3],args[4],args[5]); } }//end of main }//end of class