Plot a chart for the impulse response's `SPL` by frequency `bands`.
(self, label='SPL', yaxis='Level [dB]', **kwargs)
| 1101 | return self.plot_param('rms', dataLabel=label, **kwargs) |
| 1102 | |
| 1103 | def plot_SPL(self, label='SPL', yaxis='Level [dB]', **kwargs): |
| 1104 | """Plot a chart for the impulse response's `SPL` by frequency `bands`.""" |
| 1105 | return self.plot_param('SPL', dataLabel=label, yLabel=yaxis, **kwargs) |
| 1106 | |
| 1107 | def plot_C80(self, label='C80', yaxis='Clarity [dB]', **kwargs): |
| 1108 | """Plot a chart for the impulse response's `C80` by frequency `bands`.""" |
nothing calls this directly
no test coverage detected