mantono / DuplicateSearcher

Identification of Duplicate Tickets in Issue Tracking Systems for Software Development
0 stars 0 forks source link

Create HTML reports for experiment results of ExperimentEvaluator #52

Closed mantono closed 8 years ago

mantono commented 8 years ago

Generate tables with reports of true positives, false positives and false negatives. It should also display

mantono commented 8 years ago

Report report = new Report(EnumSet<ProcessingFlags>, EnumMap<IssueComponent, Double>, RepositoryId, Duration processing, Duration analysis, ExperimentSetGenerator, Set<Duplicate> foundDuplicates)

Skapa ExperimentEvaluator i Report.

mantono commented 8 years ago
    List<String> output = new ArrayList<String>();
    final String header = "<html><head><title>"+repoId+"</title></head>";
    final String stats = "<p>F1-score: "+eval.printScore()+"</p>";

    output.add(header);
    output.add(stats);
mantono commented 8 years ago
    <table>
        <tr>
            <td>Issue #duplicate</td><td>Issue #master</td>
        </tr>
        <tr>
            <td>duplicate field 2</td><td> master field 2</td>
        </tr>
        <tr>
             <td>duplicate field 3</td><td> master field 3</td>
        </tr>
    </table>