Skip to content

Commit

Permalink
updates mean
Browse files Browse the repository at this point in the history
  • Loading branch information
jadiehm committed Jan 6, 2025
1 parent ac27b9f commit a56d2f1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/Scatter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@
<p class="tot-count">{animalData.length} wines</p>
<p class="tot-count">{Math.round(steepness)} avg. steepness</p>
<p class="tot-count">{Math.round(lowPriceGoodRating/animalData.length*100)}% ({lowPriceGoodRating}/{animalData.length})</p>
<p>{avgPrice}, {avgRating}</p>
<div class="chart-container" id="scatterplot" style="pointer-events:none">
<LayerCake
padding={{ top: 20, right: 0, bottom: 20, left: 20 }}
Expand Down
2 changes: 0 additions & 2 deletions src/components/layercake/Scatter.svg.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
const priceAVG = d3.mean(meanData, d => d.price);
const ratingAVG = d3.mean(meanData, d => d.rating);
console.log(priceAVG, ratingAVG)
let path;
let mounted = false;
let randomCountNode;
Expand Down

0 comments on commit a56d2f1

Please sign in to comment.