- Timestamp:
- 02/21/05 08:25:39 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapplotter.py
r377 r485 96 96 nplots=n) 97 97 else: 98 self._plotter.set_panels(rows=n,cols=0 )98 self._plotter.set_panels(rows=n,cols=0,nplots=n) 99 99 for i in range(n): 100 100 if n > 1: … … 151 151 nplots=n) 152 152 else: 153 self._plotter.set_panels(rows=n,cols=0 )153 self._plotter.set_panels(rows=n,cols=0,nplots=n) 154 154 i = 0 155 155 for scan in scans: 156 156 if n > 1: 157 157 self._plotter.subplot(i) 158 self._plotter.palette( 0)158 self._plotter.palette(1) 159 159 for j in range(ncol): 160 160 eval(cdict.get(colmode)) … … 206 206 nplots=n) 207 207 else: 208 self._plotter.set_panels(rows=n,cols=0) 208 print n 209 self._plotter.set_panels(rows=n,cols=0,nplots=n) 209 210 for i in range(n): 210 211 if n>1: 211 212 self._plotter.subplot(i) 212 self._plotter.palette( 0)213 self._plotter.palette(1) 213 214 k=0 214 215 j=i … … 353 354 354 355 Example: 355 If the data has t o IFs/rest frequencies with index 0 and 1356 If the data has two IFs/rest frequencies with index 0 and 1 356 357 for CO and SiO: 357 358 plotter.set_stacking('i')
Note:
See TracChangeset
for help on using the changeset viewer.