+<p>A little further digging (by Nick Vincent) revealed that these two outliers come from auctions where the Mario kart game was being sold as part of a bundle along with other games. You can look this up in the <code>title</code> field from the original dataset using the following block of code:</p>
+<pre class="r"><code>data(mariokart)
+
+mariokart %>%
+ filter(total_pr > 100) %>%
+ select(id, total_pr, title)</code></pre>
+<pre><code>## # A tibble: 2 x 3
+## id total_pr title
+## <dbl> <dbl> <fct>
+## 1 110439174663 327. "Nintedo Wii Console Bundle Guitar Hero 5 Mario Kart "
+## 2 130335427560 118. "10 Nintendo Wii Games - MarioKart Wii, SpiderMan 3, et…</code></pre>
+<p>What do you make of the textbook authors’ decision to drop the observations? Can you make a case for/against doing so? What seems like the right decision and the best way to handle this kind of situation?</p>