plot_prop_report
Command line utility for plotting property reports.
call_plot_traces(args, trace_values)
Call the internal plot_traces
function and, optionally, save the results to disk.
Source code in emod_api/channelreports/plot_prop_report.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
list_channels_and_ips(channel_keys)
List the channels and properties found in a property report from the CHANNEL:IP:value,...,IP:value keys of the channel dictionary.
Source code in emod_api/channelreports/plot_prop_report.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
main(args)
Plot specified property report with the given options.
Source code in emod_api/channelreports/plot_prop_report.py
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 |
|
process_cmd_line()
Put command line processing here rather than in if 'name' == '__main__'
.
Source code in emod_api/channelreports/plot_prop_report.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
prop_report_json_to_csv(output_path, channel_name='Infected', groupby='Geographic')
Converts selected channel of PropertyReportXXX.json into a CSV file, rolled up into a single property.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_path
|
str
|
Subdirectory in which to find a file called PropertyReportXXX.json. XXX can be blank or a disease named like 'TB'. |
required |
channel_name
|
str
|
Name of the channel to process from the property report. Defaults to "Infected". |
'Infected'
|
groupby
|
str
|
Property to group by. Defaults to "Geographic". |
'Geographic'
|
Returns:
Raises:
Type | Description |
---|---|
ValueError
|
If no PropertyReportXXX.json file is found in the directory. |
Source code in emod_api/channelreports/plot_prop_report.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|