51 lines
1.7 KiB
HTML
51 lines
1.7 KiB
HTML
<!-- Navigation -->
|
|
{% extends "base.html" %}
|
|
{% block title %}Pembobotan Kata{% endblock %}
|
|
<!-- Page Content -->
|
|
{% block content %}
|
|
<div class="container">
|
|
{% include "menu_dataset.html" %}
|
|
{% if msg %}
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>TF-IDF Seluruh Kata</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ df_bobotdata|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>TF-IDF Positif</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ df_bobotdata_pos|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>TF-IDF Netral</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ df_bobotdata_net|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>TF-IDF Negatif</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ df_bobotdata_neg|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
Data Kosong!!
|
|
</div>
|
|
|
|
{% endif %}
|
|
</div>
|
|
<!-- /.container -->
|
|
{% endblock %} |