/* Example of loading a simple dataset into sgt using the cplab methods */ import gov.noaa.pmel.sgt.cplab.SimpleGraph; public class load_simple_set { public static void main(String[] args) { SimpleGraph d = new SimpleGraph("Sine Wave Dataset Demo", "Angle", "Degrees", "Amplitude", "Displacement", "sine_wave.txt"); //d.addData("/scratch/andy/datasets/four_a.txt"); }//end of main }//end of class