datasauRus (version 0.1.4)

twelve_from_slant_long: Twelve From Slant (long) data

Description

A dataset demonstrating the utility of visualization. These 12 datasets are equal in standard measures: mean, standard deviation, and Pearson's correlation.

Usage

twelve_from_slant_long

Arguments

Format

A data frame with 2184 rows and 3 variables:

  • dataset: the dataset the data are from

  • x: x-values

  • y: y-values

References

Matejka, J., & Fitzmaurice, G. (2017). Same Stats, Different Graphs: Generating Datasets with Varied Appearance and Identical Statistics through Simulated Annealing. CHI 2017 Conference proceedings: ACM SIGCHI Conference on Human Factors in Computing Systems. Retrieved from https://www.autodeskresearch.com/publications/samestats.

Examples

Run this code
# NOT RUN {
if(require(ggplot2)){
  ggplot(twelve_from_slant_long, aes(x=x, y=y, colour=dataset))+
    geom_point()+
    theme_void()+
    theme(legend.position = "none")+
    facet_wrap(~dataset, ncol=3)
}
# }

Run the code above in your browser using DataCamp Workspace