lego_population | R Documentation |
Data about Lego Sets for sale. Based on JSDSE article by Anna Peterson and Laura Ziegler Data from their article was scrapped from multiple sources including brickset.com
lego_population
A data frame with 1304 rows and 14 variables.
Set Item number
Name of the set.
Set theme: Duplo, City or Friends.
Number of pieces in the set.
Recommended retail price from LEGO.
Price of the set at Amazon.
Year that it was produced.
LEGO's recommended ages of children for the set
Pages in the instruction booklet.
Number of LEGO people in the data, if unknown "NA" was recorded.
Type of packaging: bag, box, etc.
Weight of the set of LEGOS in pounds and kilograms.
Number of pieces classified as unique in the instruction manual.
Size of the lego pieces: Large if safe for small children and Small for older children.
Peterson, A. D., & Ziegler, L. (2021). Building a multiple linear regression model with LEGO brick data. Journal of Statistics and Data Science Education, 29(3),1-7. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1080/26939169.2021.1946450")}
BrickInstructions.com. (n.d.). Retrieved February 2, 2021 from
Brickset. (n.d.). BRICKSET: Your LEGO® set guide. Retrieved February 2, 2021 from
library(ggplot2)
library(dplyr)
lego_population |>
filter(theme == "Friends" | theme == "City") |>
ggplot(aes(x = pieces, y = amazon_price)) +
geom_point(alpha = 0.3) +
labs(
x = "Pieces in the Set",
y = "Amazon Price",
title = "Amazon Price vs Number of Pieces in Lego Sets",
subtitle = "Friends and City Themes"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.