Dataset Visualization

Back to Dataset Analysis | Exit

{% for col in columns %} {% if col not in ['Project URL', 'Buggy Commit', 'Fixed Commit'] %} {% if col in ['Lizard Features Buggy', 'Lizard Features Fixed'] %} {% elif col == 'Constructs' %} {% else %} {% endif %} {% endif %} {% endfor %} {% for index, row in data.iterrows() %} {% for col in columns %} {% if col not in ['Project URL', 'Buggy Commit', 'Fixed Commit'] %} {% endif %} {% endfor %} {% endfor %}
{{ col|safe }}{{ col|safe }}{{ col }}
{% if col == 'Location' %} {{ row[col]|replace('\n', '
')|safe }} {% elif col == 'After Bug fix' %} {% set commit_hash = row['Fixed Commit'] %} {{ row[col]|replace('\n', '
')|replace(' ', ' ')|safe }}
{% elif col == 'Before Bug fix' %} {% set commit_hash = row['Buggy Commit'] %} {{ row[col]|replace('\n', '
')|safe }}
{% elif col in ['Lizard Features Buggy', 'Lizard Features Fixed', 'Constructs'] %}
{{ row[col]|pretty_print_dict|safe }}
{% elif col == 'bert_score' %} {% set bert_score_tensor = row[col] %} {% set bert_score_value = bert_score_tensor.split(',')[2] %} {{ bert_score_value|tensor2float }} {% elif col in ['BLEU', 'crystalBLEU_score'] %} {{row[col]|round(3)}} {% else %}
{{ row[col] }}
{% endif %}
{% if current_page < total_pages %} More {% endif %}