{% extends "layout.html" %} {% block content %}

File name is {{ file.filename }}

Over View
Numerical Columns{{ process.IV.TotalNumeric }}
Categorical Columns{{ process.IV.TotalCategorical }}
Rows & Columns {{process.IV.Shape[0]}} X {{process.IV.Shape[1]}}
Drop Missing Values

Badge

Action Center

Columns


Actions



Sample {{sample.samplesize}}

{% for n in sample.columns %} {% endfor %} {% for n in sample.sampledata %} {% for i in n %} {% endfor %} {% endfor %}
{{n}}
{{i}}
Total {{sample.length}} X {{sample.number_of_columns}}

{% if quick %}

Quick Statistics

{% for n in quick.numerical_col %} {% endfor %} {% for variable, data in quick.zipped%} {% for values in data %} {% endfor %} {% endfor %}
{{n}}
{{ variable }}{{values}}

{% endif %} {% if corr.empty %}

Correlation Between Variables


{% endif %} {% if process.IV.TotalNumeric %}

Individual Numerical Variable Analysis

{% for values in process.IV.Variables%} {% if values.vtype == 'numeric'%} {{values.vname}}{{ values.vmissing[0] }} {% endif %} {% endfor %}
{% endif %} {% if process.IV.TotalCategorical %}

Individual Categorical Variable Analysis

{% for values in process.IV.Variables%} {% if values.vtype == 'categorical'%} {{values.vname}}{{ values.vmissing[0] }} {% endif %} {% endfor %}
{% endif %}
{% endblock %}