twelve_from_slant_long
From datasauRus v0.1.4
by Stephanie Locke
Twelve From Slant (long) data
A dataset demonstrating the utility of visualization. These 12 datasets are equal in standard measures: mean, standard deviation, and Pearson's correlation.
- Keywords
- datasets
Usage
twelve_from_slant_long
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
# 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)
}
# }
Community examples
Looks like there are no examples yet.