Search notes:

SAS: proc gplot

Simple example

data tq84_dat;
  do i = 1 to 25;
     x = 50 + 20 * rand('norm');
     y = 10 + x * 1.8 + rand('unif') * 8;
     output;
  end;
run;

filename graph '/share/home/tq84/sas/img/gplot.png';

goptions
  reset   = all
  device  = png
  gsfname = graph;

proc gplot data = tq84_dat;
     plot y * x; /* Note: the y axis comes first */
run;
Github repository about-SAS, path: /programming/proc/gplot/basic.sas

See also

SAS programming: proc

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Companie...', 1759407972, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/proc/gplot/index(61): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78