blob: d90d0823129c251dbc3f28d63f71b0f0b4b72426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import os
import WrightTools as wt
from WrightTools import datasets
here = os.path.abspath(os.path.dirname(__file__))
ps = datasets.KENT.LDS821_TRSF
data = wt.data.from_KENT(ps, ignore=['d1', 'd2', 'wm'], verbose=False)
wt.artists.quick1D(data, 'w1', at={'w2': [1520, 'wn']}, autosave=True,
save_directory=here, fname='quick1D')
|