Faculty Data Analysis
Upload Faculty Data CSV
{% if departments %}
Enter Student Counts by Department
{% for department in departments %}
{{ department }}
{% endfor %} {% endif %}
Analyze
{% if error %}
{{ error }}
{% endif %} {% if graded_csv %}
Download Graded CSV
{% endif %} {% if plots %}
Visualizations with Insights
{% for plot_title, plot_html in plots.items() %}
{{ plot_title }}
{{ plot_html | safe }}
Insights for {{ plot_title }}
{{ gemini_insights[plot_title] }}
{% endfor %}
{% endif %} {% if department_tables %}
Faculty Data by Department
{% for department, table in department_tables.items() %}
{{ department }}
{% for col in table.columns %}
{{ col }}
{% endfor %}
{% for row in table.rows %}
{% for cell in row %}
{{ cell }}
{% endfor %}
{% endfor %}
{% endfor %} {% endif %} {% if deficiency_table %}
Deficiency Comparison: Faculty vs Students
{{ deficiency_table | safe }}
{% endif %} {% if swot_results %}
SWOT Analysis Results
Strengths
{% for strength in swot_results.strengths %}
{{ strength }}
{% endfor %}
Weaknesses
{% for weakness in swot_results.weaknesses %}
{{ weakness }}
{% endfor %}
Opportunities
{% for opportunity in swot_results.opportunities %}
{{ opportunity }}
{% endfor %}
Threats
{% for threat in swot_results.threats %}
{{ threat }}
{% endfor %}
{% endif %}
Get Report