md`
Something I don't understand but don't have time to figure out:
- I want to let the eixiting label to turn red and move to the upper-right corner before disappearing, so I specified \`.attr("x", w).attr("y", 0).\` after the transition syntaxes and before \`.remove()\`. However, I noticed that it just cannot move horizontally. It keeps within its original horizontal position.
- I just don't know why and how [Scott Murray's codes](https://github.com/scotthmurray/d3-book/blob/master/chapter_09/26_removing_values.html) worked. Why should we use \`bars.enter()...\` here?
- How to get the transition in [Scott Murray's codes](https://github.com/scotthmurray/d3-book/blob/master/chapter_09/26_removing_values.html) when updating the bars?
- I used \`dataset.pop()\`, which is supposed to delete the last data value. Yes, when I used
\`svg.selectAll("rect")
.data(dataset)
.exit()
.transition()
.attr("x", w)
.attr("y", h)
.remove()
\`
The exiting bar traveled from the left! Why???
`