#!C:/perl/bin/perl.exe use CGI::Carp qw(fatalsToBrowser); use CGI; $query = new CGI; print $query->header; print $query->start_html(-title=>'Fraley Scatterplot Demo'); print " "; # Basic Scatterplot print "Here is an example of a basic scatter plot
"; print "
"; print ""; # Basic Scatterplot/linegraph print "


Here is an example of a basic line plot
"; print "
"; print ""; print $query->end_html;