File tree Expand file tree Collapse file tree 7 files changed +34
-41
lines changed
python/lsst/analysis/tools/actions/plot Expand file tree Collapse file tree 7 files changed +34
-41
lines changed Original file line number Diff line number Diff line change 2
2
Action Types
3
3
============
4
4
5
- Here is a list of the current actions implemented in ``analysis tools ``, please look at these carefully before
5
+ Here is a list of the current actions implemented in ``analysis_tools ``, please look at these carefully before
6
6
adding new actions to avoid duplication.
7
7
8
8
Plot actions are covered in a separate :doc: `section <plot-types >`.
@@ -12,21 +12,9 @@ Vector Actions
12
12
13
13
.. automodapi :: lsst.analysis.tools.actions.vector
14
14
:no-inherited-members:
15
- :skip: ConfigurableActionField
16
- :skip: ConfigurableActionStructField
17
- :skip: DictField
18
- :skip: Field
19
- :skip: Vector
20
- :skip: VectorAction
21
15
22
16
Scalar Actions
23
17
==============
24
18
25
19
.. automodapi :: lsst.analysis.tools.actions.scalar
26
20
:no-inherited-members:
27
- :skip: ChoiceField
28
- :skip: Field
29
- :skip: Scalar
30
- :skip: ScalarAction
31
- :skip: Vector
32
-
Original file line number Diff line number Diff line change @@ -15,15 +15,19 @@ It is a very powerful way to explore and interact with the pipeline outputs.
15
15
16
16
Using lsst.analysis.tools
17
17
=========================
18
+
18
19
For a tutorial on working with
19
20
``analysis_tools `` please see the :ref: `getting started guide <analysis-tools-getting-started >`.
20
21
21
22
.. toctree linking to topics related to using the module's APIs.
22
23
23
- .. .. toctree::
24
- .. :glob:
25
- .. currentActions
26
- .. currentPlots
24
+ .. toctree ::
25
+ :glob:
26
+ :maxdepth: 1
27
+
28
+ getting-started
29
+ action-types
30
+ plot-types
27
31
28
32
Need Help?
29
33
==========
@@ -37,7 +41,6 @@ channel on slack and hopefully someone will help you!
37
41
Contributing
38
42
============
39
43
40
-
41
44
``lsst.analysis.tools `` is developed at https://github.com/lsst/analysis_tools.
42
45
You can find Jira issues for this module under the `analysis_tools <https://jira.lsstcorp.org/issues/?jql=project%20%3D%20DM%20AND%20component%20%3D%20analysis_tools >`_ component.
43
46
Original file line number Diff line number Diff line change
1
+ ##########
1
2
Plot Types
2
- ==========
3
- Details of current plot types are here, these plots are all in ``python/lsst/analysis/tools/actions/plot `` and
4
- can all be found on `github <https://github.com/lsst/analysis_tools/blob/main/python/lsst/analysis/tools/actions/plot/ >`__.
3
+ ##########
4
+
5
+ This page lists the plot types provided by ``analysis_tools ``.
6
+ The modules for these plots are all in ``python/lsst/analysis/tools/actions/plot `` and
7
+ can all be found on `GitHub <https://github.com/lsst/analysis_tools/blob/main/python/lsst/analysis/tools/actions/plot/ >`__.
5
8
6
9
7
10
.. automodapi :: lsst.analysis.tools.actions.plot
8
11
:no-inherited-members:
12
+ :noindex:
9
13
:skip: BarPanel
10
14
:skip: DiaSkyPanel
11
15
:skip: HistPanel
Original file line number Diff line number Diff line change @@ -93,21 +93,21 @@ def makePlot(
93
93
An optional dictionary of information about the data being
94
94
plotted with keys:
95
95
`"run"`
96
- Output run for the plots (`str`).
96
+ Output run for the plots (`str`).
97
97
`"tractTableType"`
98
- Table from which results are taken (`str`).
98
+ Table from which results are taken (`str`).
99
99
`"plotName"`
100
- Output plot name (`str`)
100
+ Output plot name (`str`)
101
101
`"SN"`
102
- The global signal-to-noise data threshold (`float`)
102
+ The global signal-to-noise data threshold (`float`)
103
103
`"skymap"`
104
- The type of skymap used for the data (`str`).
104
+ The type of skymap used for the data (`str`).
105
105
`"tract"`
106
- The tract that the data comes from (`int`).
106
+ The tract that the data comes from (`int`).
107
107
`"bands"`
108
- The bands used for this data (`str` or `list`).
108
+ The bands used for this data (`str` or `list`).
109
109
`"visit"`
110
- The visit that the data comes from (`int`)
110
+ The visit that the data comes from (`int`)
111
111
112
112
Returns
113
113
-------
Original file line number Diff line number Diff line change @@ -57,19 +57,17 @@ class HistStatsPanel(Config):
57
57
customize the HistPlot stats panel.
58
58
59
59
- The ListField parameter a dict to specify names of 3 stat columns accepts
60
- latex formating
60
+ latex formating
61
61
62
62
- The other parameters (stat1, stat2, stat3) are lists of strings that
63
- specify vector keys correspoinding to scalar values computed in the
64
- prep/process/produce steps of an analysis tools plot/metric configurable
65
- action. There should be one key for each group in the HistPanel.
63
+ specify vector keys correspoinding to scalar values computed in the
64
+ prep/process/produce steps of an analysis tools plot/metric configurable
65
+ action. There should be one key for each group in the HistPanel.
66
66
67
67
A separate config class is used instead of constructing
68
68
`~lsst.pex.config.DictField`'s in HistPanel for each parameter for clarity
69
69
and consistency.
70
70
71
-
72
-
73
71
Notes
74
72
-----
75
73
This is intended to be used as a configuration of the HistPlot/HistPanel
Original file line number Diff line number Diff line change @@ -253,9 +253,9 @@ def makePlot(
253
253
A dictionary of information about the data being plotted with (at
254
254
least) keys:
255
255
`"run"`
256
- Output run for the plots (`str`).
256
+ Output run for the plots (`str`).
257
257
`"tableName"`
258
- Name of the table from which results are taken (`str`).
258
+ Name of the table from which results are taken (`str`).
259
259
camera : `lsst.afw.cameraGeom.Camera`, optional
260
260
The camera object associated with the data. This is to enable the
261
261
conversion of to focal plane coordinates (if needed, i.e. for the
Original file line number Diff line number Diff line change @@ -151,13 +151,13 @@ def makePlot(
151
151
plotInfo : `dict`
152
152
A dictionary of information about the data being plotted with keys:
153
153
``"run"``
154
- The output run for the plots (`str`).
154
+ The output run for the plots (`str`).
155
155
``"skymap"``
156
- The type of skymap used for the data (`str`).
156
+ The type of skymap used for the data (`str`).
157
157
``"filter"``
158
- The filter used for this data (`str`).
158
+ The filter used for this data (`str`).
159
159
``"tract"``
160
- The tract that the data comes from (`str`).
160
+ The tract that the data comes from (`str`).
161
161
sumStats : `dict`
162
162
A dictionary where the patchIds are the keys which store the R.A.
163
163
and dec of the corners of the patch.
You can’t perform that action at this time.
0 commit comments