.. _plotting-label: Plotting results in the Signal Processing Tool ============================================== The Signal Processing Tool contains various methods to plot results of signal processing operations. The available plots are listed below. Time Domain Plot - Signal ------------------------- .. figure:: _static/time_domain_plot.png :alt: Time domain plot :align: center The method :py:meth:`~haskoning_atr_tools.signal_processing_tool.time_domain.data.TimeDomainData.plot` is used to create a plot of the transient data of the TimeDomainData object. .. code-block:: python time_domain_data.plot(file='folder/figure_name.png') Time Domain Plot - Signal composition 3D ---------------------------------------- .. figure:: _static/time_domain_plot_composition_3d.png :alt: Time domain composition plot 3D :align: center The method :py:meth:`~haskoning_atr_tools.signal_processing_tool.time_domain.data.TimeDomainData.plot_signal_composition_3d` is used to create a 3D plot of the signal composition for the TimeDomainData. .. code-block:: python time_domain_data.plot_signal_composition_3d() Time Domain Plot - Octaves -------------------------- .. figure:: _static/time_domain_plot_octaves_tdd.png :alt: Time domain octaves plot :align: center The method :py:meth:`~haskoning_atr_tools.signal_processing_tool.time_domain.data.TimeDomainData.plot_octaves_tdd` is used to create the octave or third-octave bands plot for the TimeDomainData. .. code-block:: python time_domain_data.plot_octaves_tdd() Time Domain Plot - SBR-B RMS values ----------------------------------- .. figure:: _static/time_domain_plot_sbr_b_rms.png :alt: Time domain RMS plot according SBR-B :align: center The method :py:meth:`~haskoning_atr_tools.signal_processing_tool.time_domain.data.TimeDomainData.plot_sbr_b_rms` is used to create the RMS plot for the TimeDomainData according SBR-B guideline. The method can also include limit values for the SBR-B guideline, specifying the building type, time of day and activity level. .. code-block:: python time_domain_data.plot_sbr_b_rms(limit_parameters=['office', 'day', 'A1'])