Skip to content

Commit

Permalink
plot fix june24
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudipta Kar committed Sep 21, 2024
1 parent e47d96a commit 1e86b67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iterations/2024/june/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ <h5> (Updated on: <span id="field-update-date"></span>)</h5>
svg.append("text")
.attr("x", legx + 20)
.attr("y", legy + 5)
.text(function(d) { if (type == "review") {return "Avg. Review Score"} else {return "Meta Review Score"} })
.text(function(d) { if (type == "review") {return "Review Scores"} else {return "Meta Review Score"} })
.style("font-size", "13px")
.attr("alignment-baseline","middle")
.attr("opacity", 0.7)
Expand All @@ -496,7 +496,7 @@ <h5> (Updated on: <span id="field-update-date"></span>)</h5>
(height + margin.top + 20) + ")")
.style("text-anchor", "middle")
.style("font-size", "11px")
.text(function(d) { if (type == "review") {return "Avg. Review Scores per Paper ⟶"} else {return "Meta Review Scores per Paper ⟶"} });
.text(function(d) { if (type == "review") {return "Review Scores ⟶"} else {return "Meta Review Scores ⟶"} });

if (type == "meta") {
svg.append("g")
Expand Down

0 comments on commit 1e86b67

Please sign in to comment.