The DOCUMENT Procedure |
IMPORT DATA= data-set-name<data-set-option(s)>| GRSEG=grseg TO path </ option(s)>; |
Required Arguments |
stores a reference to a graph segment.
specifies the 3-level catalog path name. For example, GRSEG=SASUSER.grseg.mygraph.
See: | GRSEG= option in the SAS/GRAPH: Reference |
specifies the location where you want to import the data set or graph segment.
Tip: | You can use the symbol '^' to represent the current path and the symbol '^^' to represent the parent path. |
Options |
imports the data set or graph segment into the file location after the specified path.
Tip: | You can use the symbol '^' to represent the current path and the symbol '^^' to represent the parent path. |
imports the data set or graph segment into the file location before the specified path. For example, the following IMPORT TO statement imports the data set SASHELP.Class to the current directory, and inserts the data set before the entry MyInfo:
import data=sashelp.class to ^ /before=MyInfo; run;
Tip: | You can use the symbol '^' to represent the current path and the symbol '^^' to represent the parent path. |
specify actions that apply only to the SAS data set.
See also: | SAS Language Reference: Dictionary for information about SAS data sets and their options |
imports the data set or graph segment at the beginning of the file location.
imports the data set or graph segment at the end the file location.
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.