{% extends "layout.html" %} {% block title %}{{ table.table_id }}{% endblock %} {% load mathfilters %} {% block body %} {% if is_owner %} {% if table.active %}
{% csrf_token %} {% else %} {% csrf_token %} {% endif %} {% endif %}column_name | label | feature | type | unique values | % nulls |
---|---|---|---|---|---|
{{ col.column_name }} | {{ col.label }} {% if is_owner %} {% csrf_token %} {% endif %} | {{ col.feature }} {% if is_owner %} {% csrf_token %} {% endif %} | {% if col.categorical %} categorical {% else %} numerical {% endif %} {% if is_owner %} {% csrf_token %} {% endif %} | {{ col.distinct_values }} | {{ col.prop_null|mul:100|floatformat:"-2" }} |
This function overwrites the entire table.
If the new file does not have exactly the same column names, it might crash previous models.
{% endif %}