Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/7.0.0/doc/emsaplib/node37.html
Дата изменения: Wed Jun 28 23:42:47 2006 Дата индексирования: Sat Dec 22 10:48:36 2007 Кодировка: |
This SAS routine allows to compare real columns from two files, with absolute and relative tolerance. It ends in error whenever two values don't match.
The calling sequence is:
compare_realcols table=newfile(:table) reftable=reffile(:table) colnames="column list" (abstol=tol1 reltol=tol2 operation=op) # newfile(:table): name of the first file with table (first by default) # reffile(:table): name of the second file with table (first by default) # "column list" : names of the columns to be compared (separated by a blank) # tol1 : absolute tolerance on difference (1E-4 is default) # tol2 : relative tolerance on difference (1E-4 is default) # op : OR (default) to apply the less stringent of both tests AND to apply the most stringent of both tests