Procedure features: |
PROC FORMAT statement option:
|
SELECT statement |
|
Format: |
|
Informat: |
|
This example illustrates how to print a
description of an informat and
a format. The description shows the values that are input and output.
|
libname library 'SAS-library'; |
|
options nodate pageno=1 linesize=80 pagesize=60; |
|
proc format library=library fmtlib; |
|
select @evaluation nozeros; |
|
title 'FMTLIB Output for the NOZEROS. Format and the';
title2 'Evaluation. Informat';
run; |
|
FMTLIB Output for the NOZEROS. Format and the 1
Evaluation. Informat
----------------------------------------------------------------------------
| FORMAT NAME: NOZEROS LENGTH: 5 NUMBER OF VALUES: 4 |
| MIN LENGTH: 1 MAX LENGTH: 40 DEFAULT LENGTH 5 FUZZ: STD |
|--------------------------------------------------------------------------|
|START |END |LABEL (VER. V7|V8 10APR2002:18:55:08)|
|----------------+----------------+----------------------------------------|
|LOW | -1|00.00 P- F M100 |
| -1< 0<99 P-. F M100 |
| 0| 1<99 P. F M100 |
| 1|HIGH |00.00 P F M100 |
----------------------------------------------------------------------------
----------------------------------------------------------------------------
| INFORMAT NAME: @EVALUATION LENGTH: 1 |
| MIN LENGTH: 1 MAX LENGTH: 40 DEFAULT LENGTH 1 FUZZ: 0 |
|--------------------------------------------------------------------------|
|START |END |INVALUE(VER. 9.2 26JAN2007:16:11:56)|
|----------------+----------------+----------------------------------------|
|C |C | 1|
|E |E | 2|
|N |N | 0|
|O |O | 4|
|S |S | 3|
----------------------------------------------------------------------------
| |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.