Newer
Older
.. algorithm::
.. summary::
.. alias::
.. properties::
Description
-----------
Save 1D plots to a png file, as part of autoreduction. Multiple spectra
in the same workspace will be represented by curves on the same plot.
Groupped workspaces will be shown as subplots. If the workspace has more
than one spectra, but less or equal to ten, labels will be shown.
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.. Note::
The figures contain lines between points, no error bars.
.. Note::
Requires matplotlib version>= 1.2.0
Usage
-----
.. testcode:: SavePlot1D
#create some workspaces
CreateWorkspace(OutputWorkspace='w1',DataX='1,2,3,4,5,1,2,3,4,5',DataY='1,4,5,3,2,2,3,1',DataE='1,2,2,1,1,1,1,1',NSpec='2',UnitX='DeltaE')
CreateWorkspace(OutputWorkspace='w2',DataX='1,2,3,4,5,1,2,3,4,5',DataY='4,2,5,3,3,1,3,1', DataE='1,2,2,1,1,1,1,1',NSpec='2',UnitX='Momentum',VerticalAxisUnit='Wavelength',VerticalAxisValues='2,3',YUnitLabel='Something')
wGroup=GroupWorkspaces("w1,w2")
#write to a file
try:
import mantid
filename=mantid.config.getString("defaultsave.directory")+"SavePlot1D.png"
SavePlot1D(InputWorkspace=wGroup,OutputFilename=filename)
print "Success: You can now view SavePlot1D.png"
except:
print "Some problem occured"
.. testcleanup:: SavePlot1D
DeleteWorkspace("wGroup")
import os,mantid
filename=mantid.config.getString("defaultsave.directory")+"SavePlot1D.png"
os.remove(filename)
Output:
.. testoutput:: SavePlot1D
Success: You can now view SavePlot1D.png
The file should look like
.. figure:: /images/SavePlot1D.png
:alt: SavePlot1D.png
.. categories::