Learn R Programming

anscombiser

What does anscombiser do?

Anscombe’s quartet are a set of four two-variable datasets that have several common summary statistics (essentially means, variances and correlation) but which have very different joint distributions. This becomes apparent when the data are plotted, which illustrates the importance of using graphical displays in Statistics. The anscombiser package provides a quick and easy way to create several datasets that have common values for Anscombe’s summary statistics but display very different behaviour when plotted. It does this by transforming (shifting, scaling and rotating) the dataset to achieve target summary statistics.

An example

The mimic() function transforms an input dataset (dino below left) so that it has the same values of Anscombe’s summary statistics as another dataset (trump below right).

library(anscombiser)
library(datasauRus)
dino <- datasaurus_dozen_wide[, c("dino_x", "dino_y")]
new_dino <- mimic(dino, trump)
plot(new_dino, legend_args = list(x = "topright"))
plot(new_dino, input = TRUE, legend_args = list(x = "bottomright"), pch = 20)

In this example these images had similar summary statistics from the outset and therefore the appearance of the dino dataset has changed little. Otherwise, the first dataset will be deformed but its general shape will still be recognisable.

The rotation applied to the input dataset is not unique. The function mimic (and a function anscombise that is specific to Anscombe’s quartet) has an argument idempotent that controls how the rotation is performed. In the special case where the input dataset already has the desired summary statistics, using idempotent = TRUE ensures that the output dataset is the same as the input dataset.

Installation

To get the current released version from CRAN:

install.packages("anscombiser")

Vignette

See vignette("intro-to-anscombiser", package = "anscombiser") for an overview of the package.

Copy Link

Version

Install

install.packages('anscombiser')

Monthly Downloads

274

Version

1.1.0

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Paul Northrop

Last Published

October 2nd, 2022

Functions in anscombiser (1.1.0)

plot.anscombe

Plot method for objects of class "anscombe"
print.anscombe

Print method for objects of class "anscombe"
set_stats

Create a list of summary statistics
trump

Donald Trump
input_datasets

Input datasets for use by anscombise()
mimic_gif

Animation of several mimicking datasets
anscombise_gif

Animation of several Anscombised datasets
mimic

Modify a dataset to mimic another dataset
anscombiser-package

anscombiser: Create Datasets with Identical Summary Statistics
anscombise

Create new versions of Anscombe's quartet
get_stats

Calculate Anscombe's summary statistics
mapdata

Extract longitude and latitude values
anscombiser-internal

Internal anscombiser functions
anscombe

Anscombe's Quartet Separated