multidim_plotter
plot_from_sql(x_tag, y_tag, output, label, exp_id=None)
Plot colormap/3D figure from data in
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x_tag
|
str
|
Tag to use as x axis. |
required |
y_tag
|
str
|
Tag to use as y axis. |
required |
output
|
str
|
String to use as output, needs to correspond to one of the output cols in the db. |
required |
label
|
str
|
Figure needs a label. |
required |
exp_id
|
str
|
Optional experiment id. If omitted, 'latest_experiment' is used. |
None
|
Source code in emod_api/multidim_plotter.py
12 13 14 15 16 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 |
|