Fields:
Show only numeric columns
{% for field in this.fieldNamesAndTypes %} {% if field[0] in this.fieldNames %}
{{field.0}}
{{field.1}}
if '{{field.0}}' in self.keyFields: self.keyFields.remove('{{field.0}}') elif '{{field.0}}' in self.valueFields: self.valueFields.remove('{{field.0}}')
{% endif %} {% endfor %}
{%if this.keyFieldsSupported %}
Keys:
Keys: Only {% for kf in this.keyFieldsType %}{% if this.keyFieldsType|length > 1%}{% if loop.last %}or {% endif %}{% endif %}{{kf}}{% if not loop.last %}, {% endif %}{% endfor %} columns are supported
Keys: Adding the same Field to Keys and Values is not supported.
{% for field in this.fieldNamesAndTypes %} {% if field[0] in this.keyFields and field[0] in this.fieldNames %}
{{field.0}}
{{field.1}}
if '{{field.0}}' in self.keyFields: self.keyFields.remove('{{field.0}}') elif '{{field.0}}' in self.valueFields: self.valueFields.remove('{{field.0}}')
{% endif %} {% endfor %}
{%endif%}
Values:
Values: Only {% for vf in this.valueFieldsType %}{% if this.valueFieldsType|length > 1%}{% if loop.last %}or {% endif %}{% endif %}{{vf}}{% if not loop.last %}, {% endif %}{% endfor %} columns are supported
Values: Adding the same Field to Keys and Values is not supported.
{% for field in this.fieldNamesAndTypes %} {% if field[0] in this.valueFields and field[0] in this.fieldNames %}
{{field.0}}
{{field.1}}
if '{{field.0}}' in self.keyFields: self.keyFields.remove('{{field.0}}') elif '{{field.0}}' in self.valueFields: self.valueFields.remove('{{field.0}}')
{% endif %} {% endfor %}
{%if this.keyFieldsSupported %}
PixieDust will automatically use count aggregation for each key
{%endif%}