Chapter Contents

Previous

Next
The G4GRID Procedure

Example 2: Output Volume Grid Ranging from 1 to 10


Using the same data set, assume there is also a variable RANDAT2 for which you would like output volume grids. This time, you would like the grid to run from 1 to 10 with values at each even unit distance. You could use the following syntax:

proc g4grid data=mylib.sample;
  grid my_x*my_y*my_z=randat randat2 /
  xaxis=1 to 10 yaxis=1 to 10 zaxis=1 to 10;
  by byit;
run;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.