Description Usage Format Details Source References Examples
Dataset seen at Sarah Bird's PyData Talk in 2016. https://twitter.com/birdsarah/status/776470450184617985
1 |
An object of class tbl_df
(inherits from tbl
, data.frame
) with 142 rows and 2 columns.
Original post for the data can be found by Alberto Cairo here: http://www.thefunctionalart.com/2016/08/download-datasaurus-never-trust-summary.html
http://www.thefunctionalart.com/2016/08/download-datasaurus-never-trust-summary.html
Alberto Cairo (2016) Download the Datasaurus: Never trust summary statistics alone; always visualize your data ()
1 2 3 4 5 6 | data(anscombosaurus)
plot(anscombosaurus$x, anscombosaurus$y)
library(ggplot2)
ggplot(data = anscombosaurus, aes(x = x, y = y)) + geom_point()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.