We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd36a68 + b9c9752 commit bc15b6bCopy full SHA for bc15b6b
1 file changed
netpyne_ui/netpyne_geppetto.py
@@ -331,6 +331,14 @@ def getNetPyNELFPLocationsPlot(self):
331
svgs.append(ui.getSVG(fig[0][0]))
332
333
return svgs.__str__()
334
+
335
+ def getNetPyNERxDConcentrationPlot(self):
336
+ args = self.getPlotSettings('plotRxDConcentration')
337
+ fig = analysis.plotRxDConcentration(showFig=False, **args)
338
+ if fig==-1:
339
+ return fig
340
+ else:
341
+ return ui.getSVG(fig)
342
343
def getAvailablePops(self):
344
return netParams.popParams.keys()
0 commit comments