A helper function to make a graph.
(ax, data1, data2, param_dict)
| 218 | |
| 219 | |
| 220 | def my_plotter(ax, data1, data2, param_dict): |
| 221 | """ |
| 222 | A helper function to make a graph. |
| 223 | """ |
| 224 | out = ax.plot(data1, data2, **param_dict) |
| 225 | return out |
| 226 | |
| 227 | # %% |
| 228 | # which you would then use twice to populate two subplots: |
no test coverage detected
searching dependent graphs…