{% set section = "Acquisition" %} {% set section_class_name = section | lower | append_uuid %} {# Collapse content during documentation build. #} {% if collapsed %} {% set collapsed_row_class = "repr-element-faded repr-element-collapsed" %} {% else %} {% set collapsed_row_class = "" %} {% endif %} {{ section }} {% if duration %} Duration {{ duration }} (HH:MM:SS) {% endif %} {% if inst is defined and inst | has_attr("kind") and inst | has_attr("nave") %} Aggregation {% if inst.kind == "average" %} average of {{ inst.nave }} epochs {% elif inst.kind == "standard_error" %} standard error of {{ inst.nave }} epochs {% else %} {{ inst.kind }} ({{ inst.nave }} epochs) {% endif %} {% endif %} {% if inst is defined and inst | has_attr("comment") %} Condition {{inst.comment}} {% endif %} {% if inst is defined and inst | has_attr("events") %} Total number of events {{ inst.events | length }} {% endif %} {% if event_counts is defined %} Events counts {% if events is not none %} {% for e in event_counts %} {{ e }} {% if not loop.last %}
{% endif %} {% endfor %} {% else %} Not available {% endif %} {% endif %} {% if inst is defined and inst | has_attr("tmin") and inst | has_attr("tmax") %} Time range {{ inst | format_time_range }} {% endif %} {% if inst is defined and inst | has_attr("baseline") %} Baseline {{ inst | format_baseline }} {% endif %} {% if info["sfreq"] is defined and info["sfreq"] is not none %} Sampling frequency {{ "%0.2f" | format(info["sfreq"]) }} Hz {% endif %} {% if inst is defined and inst.times is defined %} Time points {{ inst.times | length | format_number }} {% endif %} {% if inst is defined and inst | has_attr("metadata") %} Metadata {{ inst | format_metadata }} {% endif %}