| Data type |
{{ tfr._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 |
{{ tfr.shape[0] }} |
{% endif -%}
{%- if inst_type == "Evoked" %}
| Number of averaged trials |
{{ nave }} |
{% endif -%}
| Dims |
{{ tfr._dims | join(", ") }} |
| Estimation method |
{{ tfr.method }} |
{% if "taper" in tfr._dims %}
| Number of tapers |
{{ tfr._mt_weights.size }} |
{% endif %}
| Number of channels |
{{ tfr.ch_names|length }} |
| Number of timepoints |
{{ tfr.times|length }} |
| Number of frequency bins |
{{ tfr.freqs|length }} |
| Frequency range |
{{ '%.2f'|format(tfr.freqs[0]) }} – {{ '%.2f'|format(tfr.freqs[-1]) }} Hz |