Changeset 1151
- Timestamp:
- 08/16/06 15:29:05 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r1144 r1151 400 400 set_restfreqs - set a list of rest frequencies 401 401 flag - flag selected channels in the data 402 save - save the scantable to disk as either 'ASAP' 403 or 'SDFITS'402 save - save the scantable to disk as either 'ASAP', 403 'SDFITS' or 'ASCII' 404 404 nbeam,nif,nchan,npol - the number of beams/IFs/Pols/Chans 405 405 nscan - the number of scans in the scantable … … 464 464 merge - merge a list of scantables 465 465 466 [Line Catalog] 467 linecatalog - a linecatalog wrapper, taking an ASCII or 468 internal format table 469 summary - print a summary of the current selection 470 set_name - select a subset by name pattern, e.g. '*OH*' 471 set_strength_limits - select a subset by line strength limits 472 set_frequency_limits - select a subset by frequency limits 473 reset - unset all selections 474 save - save the current subset to a table (internal 475 format) 476 get_row - get the name and frequency from a specific 477 row in the table 466 478 [Fitting] 467 479 fitter … … 486 498 called 'plotter' 487 499 plot - plot a scantable 500 plot_lines - plot a linecatalog overlay 488 501 save - save the plot to a file ('png' ,'ps' or 'eps') 489 502 set_mode - set the state of the plotter, i.e. … … 500 513 set_linestyles - specify a set of linestyles to use if only 501 514 using one color 515 set_font - set general font properties, e.g. 'family' 502 516 set_histogram - plot in historam style 503 517 set_mask - set a plotting mask for a specific polarization … … 538 552 539 553 """ 540 print x 554 if rcParams['verbose']: 555 try: 556 from IPython.genutils import page as pager 557 except ImportError: 558 from pydoc import pager 559 pager(x) 560 else: 561 print x 541 562 return 542 563
Note:
See TracChangeset
for help on using the changeset viewer.