| Data type |
{{ spectrum._data_type }} |
{%- for unit in units %}
{%- if loop.index == 1 %}
| Units |
{%- endif %}
{{ unit }} |
{%- endfor %}
| Data source |
{{ inst_type }} |
{%- if inst_type == "Epochs" %}
| Number of epochs |
{{ spectrum.shape[0] }} |
{% endif -%}
| Dims |
{{ spectrum._dims | join(", ") }} |
| Estimation method |
{{ spectrum.method }} |
{% if "taper" in spectrum._dims %}
| Number of tapers |
{{ spectrum._mt_weights.size }} |
{% endif %}
| Number of channels |
{{ spectrum.ch_names|length }} |
| Number of frequency bins |
{{ spectrum.freqs|length }} |
| Frequency range |
{{ '%.2f'|format(spectrum.freqs[0]) }} – {{ '%.2f'|format(spectrum.freqs[-1]) }} Hz |