Upload CSV or Excel File
{% if columns %}
{% endif %}
{% if response1 and response2 %}
Analysis Result
Countplot Barchart
{{ response1|safe }}
Histogram Plot
{{ response2|safe }}
{% endif %}
{% if response5 %}
Pairplot
{{ response5|safe }}
{% endif %}
{% if response3 %}
Multiclass Barplot
{{ response3|safe }}
{% endif %}
{% if response4 %}
Multiclass Histogram Plot
{{ response4|safe }}
{% endif %}
{% if response6 %}
Multiclass Pairplot
{{ response6|safe }}
{% endif %}
{% if response7 %}
Multiclass Pairplot
{{ response7|safe }}
{% endif %}
{% if response8 %}
Decision Tree Regressor
{{ response8|safe }}
{% endif %}
{% if response9 %}
Decision Tree Classifier
{{ response9|safe }}
{% endif %}
{% if response10 %}
Random Forest Regressor
{{ response10|safe }}
{% endif %}
{% if response11 %}
Random Forest Classifier
{{ response11|safe }}
{% endif %}
{% if show_conversation %}
Conversation
{% endif %}
{% if question_responses %}
Conversation History:
{% for question, response in question_responses %}
You: {{ question }}
Response: {{ response|safe }}
{% endfor %}
{% endif %}