├── .github
├── .gitignore
├── ISSUE_TEMPLATE
│ └── issue_template.md
├── workflows
│ ├── pkgdown.yaml
│ └── R-CMD-check.yaml
├── SUPPORT.md
└── CODE_OF_CONDUCT.md
├── LICENSE
├── NAMESPACE
├── data
├── box_plots.rda
├── box_plots_long.rda
├── datasaurus_dozen.rda
├── simpsons_paradox.rda
├── datasaurus_dozen_wide.rda
├── simpsons_paradox_wide.rda
├── twelve_from_slant_long.rda
├── twelve_from_slant_wide.rda
├── twelve_from_slant_alternate_long.rda
└── twelve_from_slant_alternate_wide.rda
├── tests
├── testthat.R
└── testthat
│ ├── test-rawfiles.R
│ └── test-datasets.R
├── _pkgdown.yml
├── images
├── datasauRus.pdf
├── datasauRusPRINT.png
└── datasauRusSCREEN.png
├── man
├── figures
│ ├── logo.png
│ └── datasets-1.png
├── datasaurus_dozen.Rd
├── twelve_from_slant_long.Rd
├── twelve_from_slant_alternate_long.Rd
├── simpsons_paradox.Rd
├── simpsons_paradox_wide.Rd
├── box_plots_long.Rd
├── box_plots.Rd
├── twelve_from_slant_wide.Rd
├── twelve_from_slant_alternate_wide.Rd
└── datasaurus_dozen_wide.Rd
├── CRAN-SUBMISSION
├── cran-comments.md
├── pkgdown
└── favicon
│ ├── favicon.ico
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── apple-touch-icon.png
│ ├── apple-touch-icon-120x120.png
│ ├── apple-touch-icon-152x152.png
│ ├── apple-touch-icon-180x180.png
│ ├── apple-touch-icon-60x60.png
│ └── apple-touch-icon-76x76.png
├── .lintr
├── .Rbuildignore
├── inst
├── examples
│ ├── twelve_from_slant_wide.R
│ ├── datasaurus_dozen_wide.R
│ ├── simpsons_paradox_wide.R
│ ├── twelve_from_slant_alternate_wide.R
│ ├── simpsons_paradox.R
│ ├── datasaurus_dozen.R
│ ├── datasauRus.R
│ ├── twelve_from_slant_long.R
│ ├── twelve_from_slant_alternate_long.R
│ └── box_plots.R
└── extdata
│ ├── SimpsonsParadox-Wide.tsv
│ ├── SimpsonsParadox-Long.tsv
│ ├── DatasaurusDozen-Wide.tsv
│ └── TwelveFromSlant-Wide.tsv
├── NEWS.md
├── Datasaurus.Rproj
├── data-raw
└── convert-data.R
├── .gitignore
├── LICENSE.md
├── DESCRIPTION
├── vignettes
└── Datasaurus.Rmd
├── README.md
├── README.Rmd
└── R
└── datasaurus-package.R
/.github/.gitignore:
--------------------------------------------------------------------------------
1 | *.html
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | YEAR: 2022
2 | COPYRIGHT HOLDER: datasauRus authors
3 |
--------------------------------------------------------------------------------
/NAMESPACE:
--------------------------------------------------------------------------------
1 | # Generated by roxygen2: do not edit by hand
2 |
3 |
--------------------------------------------------------------------------------
/data/box_plots.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/box_plots.rda
--------------------------------------------------------------------------------
/tests/testthat.R:
--------------------------------------------------------------------------------
1 | library(testthat)
2 | library(datasauRus)
3 |
4 | test_check("datasauRus")
5 |
--------------------------------------------------------------------------------
/_pkgdown.yml:
--------------------------------------------------------------------------------
1 | url: https://jumpingrivers.github.io/datasauRus
2 | template:
3 | bootstrap: 5
4 |
5 |
--------------------------------------------------------------------------------
/images/datasauRus.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/images/datasauRus.pdf
--------------------------------------------------------------------------------
/man/figures/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/man/figures/logo.png
--------------------------------------------------------------------------------
/data/box_plots_long.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/box_plots_long.rda
--------------------------------------------------------------------------------
/data/datasaurus_dozen.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/datasaurus_dozen.rda
--------------------------------------------------------------------------------
/data/simpsons_paradox.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/simpsons_paradox.rda
--------------------------------------------------------------------------------
/images/datasauRusPRINT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/images/datasauRusPRINT.png
--------------------------------------------------------------------------------
/man/figures/datasets-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/man/figures/datasets-1.png
--------------------------------------------------------------------------------
/CRAN-SUBMISSION:
--------------------------------------------------------------------------------
1 | Version: 0.1.8
2 | Date: 2024-02-26 17:30:25 UTC
3 | SHA: 33c09bcdec20cec355b4bfa415276c6100a17433
4 |
--------------------------------------------------------------------------------
/cran-comments.md:
--------------------------------------------------------------------------------
1 | ## R CMD check results
2 |
3 | 0 errors | 0 warnings | 1 note
4 |
5 | * Changing maintainer
6 |
--------------------------------------------------------------------------------
/images/datasauRusSCREEN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/images/datasauRusSCREEN.png
--------------------------------------------------------------------------------
/pkgdown/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/favicon.ico
--------------------------------------------------------------------------------
/data/datasaurus_dozen_wide.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/datasaurus_dozen_wide.rda
--------------------------------------------------------------------------------
/data/simpsons_paradox_wide.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/simpsons_paradox_wide.rda
--------------------------------------------------------------------------------
/data/twelve_from_slant_long.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/twelve_from_slant_long.rda
--------------------------------------------------------------------------------
/data/twelve_from_slant_wide.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/twelve_from_slant_wide.rda
--------------------------------------------------------------------------------
/pkgdown/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/pkgdown/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/data/twelve_from_slant_alternate_long.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/twelve_from_slant_alternate_long.rda
--------------------------------------------------------------------------------
/data/twelve_from_slant_alternate_wide.rda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/data/twelve_from_slant_alternate_wide.rda
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png
--------------------------------------------------------------------------------
/pkgdown/favicon/apple-touch-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jumpingrivers/datasauRus/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png
--------------------------------------------------------------------------------
/tests/testthat/test-rawfiles.R:
--------------------------------------------------------------------------------
1 | context("Raw files")
2 |
3 | test_that("extdata exists", {
4 | files = list.files(system.file("extdata", package = "datasauRus"))
5 | expect_equal(length(files), 10)
6 | })
7 |
--------------------------------------------------------------------------------
/.lintr:
--------------------------------------------------------------------------------
1 | linters: linters_with_defaults(
2 | assignment_linter = NULL,
3 | indentation_linter = NULL,
4 | commented_code_linter = NULL,
5 | object_length_linter = NULL,
6 | line_length_linter(100),
7 | cyclocomp_linter(complexity_limit = 15),
8 | undesirable_operator_linter = undesirable_operator_linter(
9 | op = list("<-" = "Please use '=' for assignment")))
10 |
--------------------------------------------------------------------------------
/.Rbuildignore:
--------------------------------------------------------------------------------
1 | ^\.git$
2 | ^\.github$
3 | ^CODE_OF_CONDUCT\.md$
4 | ^.*\.Rproj$
5 | ^\.Rproj\.user$
6 | ^\.travis\.yml$
7 | ^CONDUCT\.md$
8 | ^codecov\.yml$
9 | ^README\.Rmd$
10 | ^README-.*\.png$
11 | ^docs$
12 | ^data-raw$
13 | ^cran-comments\.md$
14 | ^CONTRIBUTING\.md$
15 | ^_pkgdown\.yml$
16 | ^images$
17 | ^codemeta\.json$
18 | ^pkgdown$
19 | ^.lintr$
20 | ^CRAN-SUBMISSION$
21 | ^LICENSE\.md$
22 |
--------------------------------------------------------------------------------
/inst/examples/twelve_from_slant_wide.R:
--------------------------------------------------------------------------------
1 | #save current settings
2 | state = par("mar", "mfrow")
3 |
4 | # plot
5 | par(mfrow = c(4, 3), mar = c(1, 3, 3, 1))
6 |
7 | nms = names(twelve_from_slant_wide)
8 | for (i in seq(1, 23, by = 2)) {
9 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
10 | plot(twelve_from_slant_wide[[nms[i]]],
11 | twelve_from_slant_wide[[nms[i + 1]]],
12 | xlab = "", ylab = "", main = nm)
13 | }
14 |
15 | #reset settings
16 | par(state)
17 |
--------------------------------------------------------------------------------
/inst/examples/datasaurus_dozen_wide.R:
--------------------------------------------------------------------------------
1 | # Save current settings
2 | state = par("mar", "mfrow")
3 |
4 | # Base R Plots
5 | par(mfrow = c(5, 3), mar = c(1, 3, 3, 1))
6 |
7 | nms = names(datasaurus_dozen_wide)
8 | for (i in seq(1, 25, by = 2)) {
9 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
10 | plot(datasaurus_dozen_wide[[nms[i]]],
11 | datasaurus_dozen_wide[[nms[i + 1]]],
12 | xlab = "", ylab = "", main = nm)
13 | }
14 |
15 | #reset settings
16 | par(state)
17 |
--------------------------------------------------------------------------------
/NEWS.md:
--------------------------------------------------------------------------------
1 | # datasauRus 0.1.9
2 | * Spring clean: linting
3 |
4 | # datasauRus 0.1.8
5 |
6 | * Update maintainer
7 |
8 | # datasauRus 0.1.7
9 |
10 | * Add long boxplots data
11 |
12 | # datasauRus 0.1.6
13 |
14 | * No functional changes; just code styling and linting
15 |
16 | # datasauRus 0.1.5
17 |
18 | * Update maintainer
19 |
20 | # datasauRus 0.1.4
21 |
22 | * Updated datasets (@jmatejka, #18)
23 |
24 | # datasauRus 0.1.2
25 |
26 | * First release, contains datasaurus datasets
27 |
28 |
--------------------------------------------------------------------------------
/inst/examples/simpsons_paradox_wide.R:
--------------------------------------------------------------------------------
1 | #save current settings
2 | state = par("mar", "mfrow")
3 |
4 | par(mfrow = c(1, 2))
5 |
6 | plot(simpsons_paradox_wide[["simpson_1_x"]],
7 | simpsons_paradox_wide[["simpson_1_y"]],
8 | xlab = "x", ylab = "y", main = "Simpson's Paradox 1")
9 |
10 | plot(simpsons_paradox_wide[["simpson_2_x"]],
11 | simpsons_paradox_wide[["simpson_2_y"]],
12 | xlab = "x", ylab = "y", main = "Simpson's Paradox 2")
13 |
14 | #reset settings
15 | par(state)
16 |
--------------------------------------------------------------------------------
/inst/examples/twelve_from_slant_alternate_wide.R:
--------------------------------------------------------------------------------
1 | #save current settings
2 | state = par("mar", "mfrow")
3 |
4 | # plot
5 | par(mfrow = c(4, 3), mar = c(1, 3, 3, 1))
6 |
7 | nms = names(twelve_from_slant_alternate_wide)
8 | for (i in seq(1, 23, by = 2)) {
9 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
10 | plot(twelve_from_slant_alternate_wide[[nms[i]]],
11 | twelve_from_slant_alternate_wide[[nms[i + 1]]],
12 | xlab = "", ylab = "", main = nm)
13 | }
14 |
15 | #reset settings
16 | par(state)
17 |
--------------------------------------------------------------------------------
/Datasaurus.Rproj:
--------------------------------------------------------------------------------
1 | Version: 1.0
2 | ProjectId: 16075796-80fe-42ac-87e0-61c1c1ac3f33
3 |
4 | RestoreWorkspace: No
5 | SaveWorkspace: No
6 | AlwaysSaveHistory: Default
7 |
8 | EnableCodeIndexing: Yes
9 | UseSpacesForTab: Yes
10 | NumSpacesForTab: 2
11 | Encoding: UTF-8
12 |
13 | RnwWeave: knitr
14 | LaTeX: pdfLaTeX
15 |
16 | AutoAppendNewline: Yes
17 | StripTrailingWhitespace: Yes
18 |
19 | BuildType: Package
20 | PackageUseDevtools: Yes
21 | PackageInstallArgs: --no-multiarch --with-keep.source
22 | PackageRoxygenize: rd,collate,namespace
23 |
--------------------------------------------------------------------------------
/inst/examples/simpsons_paradox.R:
--------------------------------------------------------------------------------
1 | if (require(ggplot2)) {
2 | ggplot(simpsons_paradox, aes(x = x, y = y, colour = dataset)) +
3 | geom_point() +
4 | theme(legend.position = "none") +
5 | facet_wrap(~dataset, ncol = 3)
6 | }
7 |
8 | # Base R Plots
9 | state = par("mfrow")
10 |
11 | par(mfrow = c(1, 2))
12 |
13 | sets = unique(datasaurus_dozen$dataset)
14 |
15 | for (i in 1:2) {
16 | df = simpsons_paradox[simpsons_paradox$dataset == paste0("simpson_", i), ]
17 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
18 | title(paste0("Simpson\'s Paradox ", i))
19 | }
20 |
21 | par(state)
22 |
--------------------------------------------------------------------------------
/inst/examples/datasaurus_dozen.R:
--------------------------------------------------------------------------------
1 | if (require(ggplot2)) {
2 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset)) +
3 | geom_point() +
4 | theme_void() +
5 | theme(legend.position = "none") +
6 | facet_wrap(~dataset, ncol = 3)
7 | }
8 |
9 | # Base R plots
10 | state = par("mar", "mfrow")
11 |
12 | # plot
13 | par(mfrow = c(5, 3), mar = c(1, 2, 2, 1))
14 |
15 | sets = sort(unique(datasaurus_dozen$dataset))
16 |
17 | for (s in sets) {
18 | df = datasaurus_dozen[datasaurus_dozen$dataset == s, ]
19 | plot(df$x, df$y, pch = 16)
20 | title(s)
21 | }
22 |
23 | #reset settings
24 | par(state)
25 |
--------------------------------------------------------------------------------
/inst/examples/datasauRus.R:
--------------------------------------------------------------------------------
1 | if (require(ggplot2)) {
2 | library(ggplot2)
3 | library(datasauRus)
4 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset)) +
5 | geom_point() +
6 | theme_void() +
7 | theme(legend.position = "none") +
8 | facet_wrap(~ dataset, ncol = 3)
9 | }
10 |
11 | # Base R Plots
12 | state = par("mfrow", "mar")
13 |
14 | par(mfrow = c(5, 3), mar = c(2, 2, 2, 2))
15 |
16 | sets = unique(datasaurus_dozen$dataset)
17 |
18 | for (s in sets) {
19 | df = datasaurus_dozen[datasaurus_dozen$dataset == s, ]
20 | plot(df$x, df$y, pch = 16)
21 | title(s)
22 | }
23 |
24 | par(state)
25 |
--------------------------------------------------------------------------------
/inst/examples/twelve_from_slant_long.R:
--------------------------------------------------------------------------------
1 | if (require(ggplot2)) {
2 | ggplot(twelve_from_slant_long, aes(x = x, y = y, colour = dataset)) +
3 | geom_point() +
4 | theme_void() +
5 | theme(legend.position = "none") +
6 | facet_wrap(~dataset, ncol = 3)
7 | }
8 |
9 | # Base R Plots
10 | state = par("mfrow", "mar")
11 |
12 | par(mfrow = c(4, 3), mar = c(3, 2, 2, 2))
13 |
14 | sets = sort(unique(twelve_from_slant_long$dataset))
15 |
16 | for (s in sets) {
17 | df = twelve_from_slant_long[twelve_from_slant_long$dataset == s, ]
18 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
19 | title(s)
20 | }
21 |
22 | par(state)
23 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/issue_template.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report or feature request
3 | about: Describe a bug you've seen or make a case for a new feature
4 | ---
5 |
6 | Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on or .
7 |
8 | Please include a minimal reproducible example (AKA a reprex). If you've never heard of a [reprex](http://reprex.tidyverse.org/) before, start by reading .
9 |
10 | Brief description of the problem
11 |
12 | ```r
13 | # insert reprex here
14 | ```
15 |
--------------------------------------------------------------------------------
/inst/examples/twelve_from_slant_alternate_long.R:
--------------------------------------------------------------------------------
1 | if (require(ggplot2)) {
2 | ggplot(twelve_from_slant_alternate_long, aes(x = x, y = y, colour = dataset)) +
3 | geom_point() +
4 | theme_void() +
5 | theme(legend.position = "none") +
6 | facet_wrap(~dataset, ncol = 3)
7 | }
8 |
9 | # Base R Plots
10 | state = par("mfrow", "mar")
11 |
12 | par(mfrow = c(4, 3), mar = c(2, 2, 2, 2))
13 |
14 | sets = sort(unique(twelve_from_slant_alternate_long$dataset))
15 |
16 | for (s in sets) {
17 | df = twelve_from_slant_alternate_long[twelve_from_slant_alternate_long$dataset == s, ]
18 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
19 | title(s)
20 | }
21 |
22 | par(state)
23 |
--------------------------------------------------------------------------------
/inst/examples/box_plots.R:
--------------------------------------------------------------------------------
1 | summary(box_plots)
2 |
3 | ## base plot
4 |
5 | #save current settings
6 | state = par("mar", "mfrow")
7 |
8 | par(mfrow = c(5, 2), mar = c(1, 2, 2, 1))
9 |
10 | nms = names(box_plots)
11 |
12 | for (i in 1:5) {
13 | nm = nms[i]
14 | hist(box_plots[[nms[i]]],
15 | breaks = 100,
16 | main = nm)
17 | boxplot(box_plots[[nms[i]]],
18 | horizontal = TRUE)
19 | }
20 |
21 |
22 | #reset settings
23 | par(state)
24 |
25 | ## ggplot
26 | if (require(ggplot2)) {
27 | ggplot(box_plots, aes(x = left)) +
28 | geom_density()
29 | ggplot(box_plots, aes(x = lines)) +
30 | geom_density()
31 | ggplot(box_plots, aes(x = normal)) +
32 | geom_density()
33 | ggplot(box_plots, aes(x = right)) +
34 | geom_density()
35 | ggplot(box_plots, aes(x = split)) +
36 | geom_density()
37 | }
38 |
--------------------------------------------------------------------------------
/data-raw/convert-data.R:
--------------------------------------------------------------------------------
1 | # here is how I converted
2 | files = list.files(path = "./inst/extdata", pattern = "*.tsv", full.names = TRUE)
3 |
4 | purrr::walk(files, function(x) {
5 | nm = gsub("\\.tsv", "", basename(x))
6 | nm = gsub("-", "_", nm)
7 |
8 | # make it slither
9 | nm = gsub("^_+", "", tolower(gsub("([A-Z])", "_\\1", nm)))
10 | nm = gsub("\\_\\_", "\\_", nm)
11 | if (grepl("wide", nm)) {
12 | header1 = scan(x, nlines = 1, what = character())
13 | header1 = paste(header1, c("x", "y"), sep = "_")
14 | .dat = readr::read_tsv(x, col_names = header1, skip = 2)
15 | } else {
16 | .dat = readr::read_tsv(x)
17 | }
18 | assign(nm, .dat)
19 | save(list = nm, file = paste0("data/", nm, ".rda"))
20 | })
21 |
22 | # remove box_plots rownames
23 | box_plots = readr::read_tsv("./inst/extdata/BoxPlots.tsv")[, 2:6]
24 | save(box_plots, file = "data/box_plots.rda")
25 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # History files
2 | .Rhistory
3 | .Rapp.history
4 |
5 | # Session Data files
6 | .RData
7 | .RDataTmp
8 |
9 | # User-specific files
10 | .Ruserdata
11 |
12 | # Example code in package build process
13 | *-Ex.R
14 |
15 | # Output files from R CMD build
16 | /*.tar.gz
17 |
18 | # Output files from R CMD check
19 | /*.Rcheck/
20 |
21 | # RStudio files
22 | .Rproj.user/
23 |
24 | # produced vignettes
25 | vignettes/*.html
26 | vignettes/*.pdf
27 |
28 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
29 | .httr-oauth
30 |
31 | # knitr and R markdown default cache directories
32 | *_cache/
33 | /cache/
34 |
35 | # Temporary files created by R markdown
36 | *.utf8.md
37 | *.knit.md
38 |
39 | # R Environment Variables
40 | .Renviron
41 |
42 | # pkgdown site
43 | docs/
44 |
45 | # translation temp files
46 | po/*~
47 |
48 | # RStudio Connect folder
49 | rsconnect/
50 |
51 | inst/doc
52 | docs
53 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | # MIT License
2 |
3 | Copyright (c) 2022 datasauRus authors
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/.github/workflows/pkgdown.yaml:
--------------------------------------------------------------------------------
1 | # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2 | # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3 | on:
4 | push:
5 | branches: [main, master]
6 | pull_request:
7 | branches: [main, master]
8 | release:
9 | types: [published]
10 | workflow_dispatch:
11 |
12 | name: pkgdown
13 |
14 | jobs:
15 | pkgdown:
16 | runs-on: ubuntu-latest
17 | # Only restrict concurrency for non-PR jobs
18 | concurrency:
19 | group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
20 | env:
21 | GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
22 | permissions:
23 | contents: write
24 | steps:
25 | - uses: actions/checkout@v4
26 |
27 | - uses: r-lib/actions/setup-pandoc@v2
28 |
29 | - uses: r-lib/actions/setup-r@v2
30 | with:
31 | use-public-rspm: true
32 |
33 | - uses: r-lib/actions/setup-r-dependencies@v2
34 | with:
35 | extra-packages: any::pkgdown, local::.
36 | needs: website
37 |
38 | - name: Build site
39 | run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
40 | shell: Rscript {0}
41 |
42 | - name: Deploy to GitHub pages 🚀
43 | if: github.event_name != 'pull_request'
44 | uses: JamesIves/github-pages-deploy-action@v4.5.0
45 | with:
46 | clean: false
47 | branch: gh-pages
48 | folder: docs
49 |
--------------------------------------------------------------------------------
/tests/testthat/test-datasets.R:
--------------------------------------------------------------------------------
1 | context("datasets")
2 |
3 | datashapetests = function(df, ncols, nrows, uniquecol = NULL, nuniques = NULL) {
4 | testthat::expect_equal(ncol(df), ncols)
5 | testthat::expect_equal(nrow(df), nrows)
6 | if (!is.null(uniquecol)) {
7 | testthat::expect_equal(nrow(unique(df[uniquecol])), nuniques)
8 | }
9 | }
10 |
11 | test_that("box_plots is correctly shaped", {
12 | datashapetests(box_plots, 5, 2484)
13 | })
14 |
15 | test_that("datasaurus_dozen is correctly shaped", {
16 | datashapetests(datasaurus_dozen, 3, 1846, "dataset", 13)
17 | })
18 |
19 | test_that("datasaurus_dozen_wide is correctly shaped", {
20 | datashapetests(datasaurus_dozen_wide, 26, 142)
21 | })
22 |
23 | test_that("simpsons_paradox is correctly shaped", {
24 | datashapetests(simpsons_paradox, 3, 444, "dataset", 2)
25 | })
26 |
27 | test_that("simpsons_paradox_wide is correctly shaped", {
28 | datashapetests(simpsons_paradox_wide, 4, 222)
29 | })
30 |
31 | test_that("twelve_from_slant_long is correctly shaped", {
32 | datashapetests(twelve_from_slant_long, 3, 2184, "dataset", 12)
33 | })
34 |
35 | test_that("twelve_from_slant_wide is correctly shaped", {
36 | datashapetests(twelve_from_slant_wide, 24, 182)
37 | })
38 |
39 | test_that("twelve_from_slant_alternate_long is correctly shaped", {
40 | datashapetests(twelve_from_slant_alternate_long, 3, 2184, "dataset", 12)
41 | })
42 |
43 | test_that("twelve_from_slant_alternate_wide is correctly shaped", {
44 | datashapetests(twelve_from_slant_alternate_wide, 24, 182)
45 | })
46 |
--------------------------------------------------------------------------------
/.github/workflows/R-CMD-check.yaml:
--------------------------------------------------------------------------------
1 | # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2 | # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3 | on:
4 | push:
5 | branches: [main, master]
6 | pull_request:
7 | branches: [main, master]
8 |
9 | name: R-CMD-check
10 |
11 | jobs:
12 | R-CMD-check:
13 | runs-on: ${{ matrix.config.os }}
14 |
15 | name: ${{ matrix.config.os }} (${{ matrix.config.r }})
16 |
17 | strategy:
18 | fail-fast: false
19 | matrix:
20 | config:
21 | - {os: macos-latest, r: 'release'}
22 | - {os: windows-latest, r: 'release'}
23 | - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24 | - {os: ubuntu-latest, r: 'release'}
25 | - {os: ubuntu-latest, r: 'oldrel-1'}
26 |
27 | env:
28 | GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
29 | R_KEEP_PKG_SOURCE: yes
30 |
31 | steps:
32 | - uses: actions/checkout@v4
33 |
34 | - uses: r-lib/actions/setup-pandoc@v2
35 |
36 | - uses: r-lib/actions/setup-r@v2
37 | with:
38 | r-version: ${{ matrix.config.r }}
39 | http-user-agent: ${{ matrix.config.http-user-agent }}
40 | use-public-rspm: true
41 |
42 | - uses: r-lib/actions/setup-r-dependencies@v2
43 | with:
44 | extra-packages: any::rcmdcheck
45 | needs: check
46 |
47 | - uses: r-lib/actions/check-r-package@v2
48 | with:
49 | upload-snapshots: true
50 | build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
51 |
--------------------------------------------------------------------------------
/man/datasaurus_dozen.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{datasaurus_dozen}
5 | \alias{datasaurus_dozen}
6 | \title{Datasaurus Dozen data}
7 | \format{
8 | A data frame with 1846 rows and 3 variables:
9 | \itemize{
10 | \item \strong{dataset}: indicates which dataset the data are from
11 | \item \strong{x}: x-values
12 | \item \strong{y}: y-values
13 | }
14 | }
15 | \usage{
16 | datasaurus_dozen
17 | }
18 | \description{
19 | A dataset demonstrating the utility of visualization.
20 | These 12 datasets are equal in standard measures: mean,
21 | standard deviation, and Pearson's correlation.
22 | }
23 | \examples{
24 | if (require(ggplot2)) {
25 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset)) +
26 | geom_point() +
27 | theme_void() +
28 | theme(legend.position = "none") +
29 | facet_wrap(~dataset, ncol = 3)
30 | }
31 |
32 | # Base R plots
33 | state = par("mar", "mfrow")
34 |
35 | # plot
36 | par(mfrow = c(5, 3), mar = c(1, 2, 2, 1))
37 |
38 | sets = sort(unique(datasaurus_dozen$dataset))
39 |
40 | for (s in sets) {
41 | df = datasaurus_dozen[datasaurus_dozen$dataset == s, ]
42 | plot(df$x, df$y, pch = 16)
43 | title(s)
44 | }
45 |
46 | #reset settings
47 | par(state)
48 | }
49 | \references{
50 | Matejka, J., & Fitzmaurice, G. (2017).
51 | Same Stats, Different Graphs: Generating Datasets with
52 | Varied Appearance and Identical Statistics through Simulated
53 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
54 | Conference on Human Factors in Computing Systems.}
55 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
56 | }
57 | \keyword{datasets}
58 |
--------------------------------------------------------------------------------
/man/twelve_from_slant_long.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{twelve_from_slant_long}
5 | \alias{twelve_from_slant_long}
6 | \title{Twelve From Slant (long) data}
7 | \format{
8 | A data frame with 2184 rows and 3 variables:
9 | \itemize{
10 | \item \strong{dataset}: the dataset the data are from
11 | \item \strong{x}: x-values
12 | \item \strong{y}: y-values
13 | }
14 | }
15 | \usage{
16 | twelve_from_slant_long
17 | }
18 | \description{
19 | A dataset demonstrating the utility of visualization.
20 | These 12 datasets are equal in standard measures: mean,
21 | standard deviation, and Pearson's correlation.
22 | }
23 | \examples{
24 | if (require(ggplot2)) {
25 | ggplot(twelve_from_slant_long, aes(x = x, y = y, colour = dataset)) +
26 | geom_point() +
27 | theme_void() +
28 | theme(legend.position = "none") +
29 | facet_wrap(~dataset, ncol = 3)
30 | }
31 |
32 | # Base R Plots
33 | state = par("mfrow", "mar")
34 |
35 | par(mfrow = c(4, 3), mar = c(3, 2, 2, 2))
36 |
37 | sets = sort(unique(twelve_from_slant_long$dataset))
38 |
39 | for (s in sets) {
40 | df = twelve_from_slant_long[twelve_from_slant_long$dataset == s, ]
41 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
42 | title(s)
43 | }
44 |
45 | par(state)
46 | }
47 | \references{
48 | Matejka, J., & Fitzmaurice, G. (2017).
49 | Same Stats, Different Graphs: Generating Datasets with
50 | Varied Appearance and Identical Statistics through Simulated
51 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
52 | Conference on Human Factors in Computing Systems.}
53 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
54 | }
55 | \keyword{datasets}
56 |
--------------------------------------------------------------------------------
/man/twelve_from_slant_alternate_long.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{twelve_from_slant_alternate_long}
5 | \alias{twelve_from_slant_alternate_long}
6 | \title{Twelve From Slant Alternate (long) data}
7 | \format{
8 | A data frame with 2184 rows and 3 variables:
9 | \itemize{
10 | \item \strong{dataset}: the dataset the data are from
11 | \item \strong{x}: x-values
12 | \item \strong{y}: y-values
13 | }
14 | }
15 | \usage{
16 | twelve_from_slant_alternate_long
17 | }
18 | \description{
19 | A dataset demonstrating the utility of visualization.
20 | These 12 datasets are equal in non-parametric measures: median,
21 | interquartile range, and Spearman's rank correlation.
22 | }
23 | \examples{
24 | if (require(ggplot2)) {
25 | ggplot(twelve_from_slant_alternate_long, aes(x = x, y = y, colour = dataset)) +
26 | geom_point() +
27 | theme_void() +
28 | theme(legend.position = "none") +
29 | facet_wrap(~dataset, ncol = 3)
30 | }
31 |
32 | # Base R Plots
33 | state = par("mfrow", "mar")
34 |
35 | par(mfrow = c(4, 3), mar = c(2, 2, 2, 2))
36 |
37 | sets = sort(unique(twelve_from_slant_alternate_long$dataset))
38 |
39 | for (s in sets) {
40 | df = twelve_from_slant_alternate_long[twelve_from_slant_alternate_long$dataset == s, ]
41 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
42 | title(s)
43 | }
44 |
45 | par(state)
46 | }
47 | \references{
48 | Matejka, J., & Fitzmaurice, G. (2017).
49 | Same Stats, Different Graphs: Generating Datasets with
50 | Varied Appearance and Identical Statistics through Simulated
51 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
52 | Conference on Human Factors in Computing Systems.}
53 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
54 | }
55 | \keyword{datasets}
56 |
--------------------------------------------------------------------------------
/man/simpsons_paradox.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{simpsons_paradox}
5 | \alias{simpsons_paradox}
6 | \title{Simpsons Paradox data}
7 | \format{
8 | A data frame with 444 rows and 3 variables:
9 | \itemize{
10 | \item \strong{dataset}: indicates which of the two datasets the data are from, \code{simpson_1} or \code{simpson_2}
11 | \item \strong{x}: x-values
12 | \item \strong{y}: y-values
13 | }
14 | }
15 | \usage{
16 | simpsons_paradox
17 | }
18 | \description{
19 | A dataset demonstrating Simpson's Paradox with a strongly positively
20 | correlated dataset (\code{simpson_1})
21 | and a dataset with the same positive correlation as \code{simpson_1},
22 | but where individual groups have a
23 | strong negative correlation (\code{simpson_2}).
24 | }
25 | \examples{
26 | if (require(ggplot2)) {
27 | ggplot(simpsons_paradox, aes(x = x, y = y, colour = dataset)) +
28 | geom_point() +
29 | theme(legend.position = "none") +
30 | facet_wrap(~dataset, ncol = 3)
31 | }
32 |
33 | # Base R Plots
34 | state = par("mfrow")
35 |
36 | par(mfrow = c(1, 2))
37 |
38 | sets = unique(datasaurus_dozen$dataset)
39 |
40 | for (i in 1:2) {
41 | df = simpsons_paradox[simpsons_paradox$dataset == paste0("simpson_", i), ]
42 | plot(df$x, df$y, pch = 16, xlab = "", ylab = "")
43 | title(paste0("Simpson\'s Paradox ", i))
44 | }
45 |
46 | par(state)
47 | }
48 | \references{
49 | Matejka, J., & Fitzmaurice, G. (2017).
50 | Same Stats, Different Graphs: Generating Datasets with
51 | Varied Appearance and Identical Statistics through Simulated
52 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
53 | Conference on Human Factors in Computing Systems.}
54 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
55 | }
56 | \keyword{datasets}
57 |
--------------------------------------------------------------------------------
/man/simpsons_paradox_wide.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{simpsons_paradox_wide}
5 | \alias{simpsons_paradox_wide}
6 | \title{Simpsons Paradox (wide) data}
7 | \format{
8 | A data frame with 222 rows and 4 variables:
9 | \itemize{
10 | \item \strong{simpson_1_x}: x-values from the \code{simpson_1} dataset
11 | \item \strong{simpson_1_y}: y-values from the \code{simpson_1} dataset
12 | \item \strong{simpson_2_x}: x-values from the \code{simpson_2} dataset
13 | \item \strong{simpson_2_y}: y-values from the \code{simpson_2} dataset
14 | }
15 | }
16 | \usage{
17 | simpsons_paradox_wide
18 | }
19 | \description{
20 | A dataset demonstrating Simpson's Paradox with a
21 | strongly positively correlated dataset (\code{simpson_1})
22 | and a dataset with the same positive correlation as \code{simpson_1},
23 | but where individual groups have a
24 | strong negative correlation (\code{simpson_2}).
25 | }
26 | \examples{
27 | #save current settings
28 | state = par("mar", "mfrow")
29 |
30 | par(mfrow = c(1, 2))
31 |
32 | plot(simpsons_paradox_wide[["simpson_1_x"]],
33 | simpsons_paradox_wide[["simpson_1_y"]],
34 | xlab = "x", ylab = "y", main = "Simpson's Paradox 1")
35 |
36 | plot(simpsons_paradox_wide[["simpson_2_x"]],
37 | simpsons_paradox_wide[["simpson_2_y"]],
38 | xlab = "x", ylab = "y", main = "Simpson's Paradox 2")
39 |
40 | #reset settings
41 | par(state)
42 | }
43 | \references{
44 | Matejka, J., & Fitzmaurice, G. (2017).
45 | Same Stats, Different Graphs: Generating Datasets with
46 | Varied Appearance and Identical Statistics through Simulated
47 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
48 | Conference on Human Factors in Computing Systems.}
49 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}.#nolint
50 | }
51 | \keyword{datasets}
52 |
--------------------------------------------------------------------------------
/man/box_plots_long.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{box_plots_long}
5 | \alias{box_plots_long}
6 | \title{Box plot data}
7 | \format{
8 | A data frame with 12420 rows and 2 variables:
9 | \itemize{
10 | \item \strong{Plot}: either the left, lines, normal, right or split boxplot
11 | \item \strong{Values}: the corresponding values from each dataset
12 | }
13 | }
14 | \usage{
15 | box_plots_long
16 | }
17 | \description{
18 | This dataset is the box plot data produced by Matjeka &
19 | Fitzmaurice to demonstrate applicability of their process.
20 | }
21 | \examples{
22 | summary(box_plots)
23 |
24 | ## base plot
25 |
26 | #save current settings
27 | state = par("mar", "mfrow")
28 |
29 | par(mfrow = c(5, 2), mar = c(1, 2, 2, 1))
30 |
31 | nms = names(box_plots)
32 |
33 | for (i in 1:5) {
34 | nm = nms[i]
35 | hist(box_plots[[nms[i]]],
36 | breaks = 100,
37 | main = nm)
38 | boxplot(box_plots[[nms[i]]],
39 | horizontal = TRUE)
40 | }
41 |
42 |
43 | #reset settings
44 | par(state)
45 |
46 | ## ggplot
47 | if (require(ggplot2)) {
48 | ggplot(box_plots, aes(x = left)) +
49 | geom_density()
50 | ggplot(box_plots, aes(x = lines)) +
51 | geom_density()
52 | ggplot(box_plots, aes(x = normal)) +
53 | geom_density()
54 | ggplot(box_plots, aes(x = right)) +
55 | geom_density()
56 | ggplot(box_plots, aes(x = split)) +
57 | geom_density()
58 | }
59 | }
60 | \references{
61 | Matejka, J., & Fitzmaurice, G. (2017).
62 | Same Stats, Different Graphs: Generating Datasets with
63 | Varied Appearance and Identical Statistics through Simulated
64 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
65 | Conference on Human Factors in Computing Systems.}
66 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
67 | }
68 | \keyword{datasets}
69 |
--------------------------------------------------------------------------------
/man/box_plots.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{box_plots}
5 | \alias{box_plots}
6 | \title{Box plot data}
7 | \format{
8 | A data frame with 2484 rows and 5 variables:
9 | \itemize{
10 | \item \strong{left}: data pulled to the left
11 | \item \strong{lines}: data with arbitrary spikes along a range
12 | \item \strong{normal}: normally distributed data
13 | \item \strong{right}: data pulled to the right
14 | \item \strong{split}: split data
15 | }
16 | }
17 | \usage{
18 | box_plots
19 | }
20 | \description{
21 | This dataset is the box plot data produced by Matjeka &
22 | Fitzmaurice to demonstrate applicability of their process.
23 | }
24 | \examples{
25 | summary(box_plots)
26 |
27 | ## base plot
28 |
29 | #save current settings
30 | state = par("mar", "mfrow")
31 |
32 | par(mfrow = c(5, 2), mar = c(1, 2, 2, 1))
33 |
34 | nms = names(box_plots)
35 |
36 | for (i in 1:5) {
37 | nm = nms[i]
38 | hist(box_plots[[nms[i]]],
39 | breaks = 100,
40 | main = nm)
41 | boxplot(box_plots[[nms[i]]],
42 | horizontal = TRUE)
43 | }
44 |
45 |
46 | #reset settings
47 | par(state)
48 |
49 | ## ggplot
50 | if (require(ggplot2)) {
51 | ggplot(box_plots, aes(x = left)) +
52 | geom_density()
53 | ggplot(box_plots, aes(x = lines)) +
54 | geom_density()
55 | ggplot(box_plots, aes(x = normal)) +
56 | geom_density()
57 | ggplot(box_plots, aes(x = right)) +
58 | geom_density()
59 | ggplot(box_plots, aes(x = split)) +
60 | geom_density()
61 | }
62 | }
63 | \references{
64 | Matejka, J., & Fitzmaurice, G. (2017).
65 | Same Stats, Different Graphs: Generating Datasets with
66 | Varied Appearance and Identical Statistics through Simulated
67 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
68 | Conference on Human Factors in Computing Systems.}
69 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
70 | }
71 | \keyword{datasets}
72 |
--------------------------------------------------------------------------------
/DESCRIPTION:
--------------------------------------------------------------------------------
1 | Package: datasauRus
2 | Title: Datasets from the Datasaurus Dozen
3 | Version: 0.1.9
4 | Authors@R: c(
5 | person("Colin", "Gillespie", , "colin@jumpingrivers.com", role = c("cre", "aut")),
6 | person("Steph", "Locke", , "stephanie.g.locke@gmail.com", role = "aut"),
7 | person("Alberto", "Cairo", , "alberto.cairo@gmail.com", role = "dtc"),
8 | person("Rhian", "Davies", , "statsrhian@gmail.com", role = "aut"),
9 | person("Justin", "Matejka", , "Justin.Matejka@autodesk.com", role = "dtc"),
10 | person("George", "Fitzmaurice", , "George.Fitzmaurice@autodesk.com", role = "dtc"),
11 | person("Lucy", "D'Agostino McGowan", , "ld.mcgowan@vanderbilt.edu", role = "aut"),
12 | person("Richard", "Cotton", , "richierocks@gmail.com", role = "ctb"),
13 | person("Tim", "Book", , "TimothyKBook@gmail.com", role = "ctb"),
14 | person("Jumping Rivers", role = "fnd")
15 | )
16 | Description: The Datasaurus Dozen is a set of datasets with the same
17 | summary statistics. They retain the same summary statistics despite
18 | having radically different distributions. The datasets represent a
19 | larger and quirkier object lesson that is typically taught via
20 | Anscombe's Quartet (available in the 'datasets' package). Anscombe's
21 | Quartet contains four very different distributions with the same
22 | summary statistics and as such highlights the value of visualisation
23 | in understanding data, over and above summary statistics. As well as
24 | being an engaging variant on the Quartet, the data is generated in a
25 | novel way. The simulated annealing process used to derive datasets
26 | from the original Datasaurus is detailed in "Same Stats, Different
27 | Graphs: Generating Datasets with Varied Appearance and Identical
28 | Statistics through Simulated Annealing" .
29 | License: MIT + file LICENSE
30 | URL: https://github.com/jumpingrivers/datasauRus,
31 | https://jumpingrivers.github.io/datasauRus/
32 | BugReports: https://github.com/jumpingrivers/datasauRus/issues
33 | Depends:
34 | R (>= 3.5.0)
35 | Suggests:
36 | dplyr,
37 | ggplot2,
38 | knitr,
39 | rmarkdown,
40 | spelling,
41 | testthat
42 | VignetteBuilder:
43 | knitr
44 | Encoding: UTF-8
45 | Language: en-US
46 | LazyData: true
47 | Roxygen: list(markdown = TRUE)
48 | RoxygenNote: 7.3.2
49 |
--------------------------------------------------------------------------------
/vignettes/Datasaurus.Rmd:
--------------------------------------------------------------------------------
1 | ---
2 | title: "The Datasaurus data package"
3 | date: "`r Sys.Date()`"
4 | output: rmarkdown::html_vignette
5 | vignette: >
6 | %\VignetteIndexEntry{The Datasaurus data package}
7 | %\VignetteEngine{knitr::rmarkdown}
8 | %\VignetteEncoding{UTF-8}
9 | ---
10 |
11 | This package wraps the awesome Datasaurus Dozen dataset, which contains [13](https://www.phrases.org.uk/meanings/Bakers-dozen.html) sets of x-y data. Each sub-dataset has five statistics that are (almost) the same in each case. (These are the mean of x, mean of y, standard deviation of x, standard deviation of y, and Pearson correlation between x and y). However, scatter plots reveal that each sub-dataset looks very different. The dataset is intended to be used to teach students that it is important to plot their own datasets, rather than relying only on statistics.
12 |
13 | The Datasaurus was created by Alberto Cairo. Datasaurus shows us why visualisation is important, not just summary statistics.
14 |
15 | He's been subsequently made even more famous in the paper [Same Stats, Different Graphs: Generating Datasets with Varied Appearance and Identical Statistics through Simulated Annealing](https://www.research.autodesk.com/publications/same-stats-different-graphs/) by Justin Matejka and George Fitzmaurice.
16 |
17 | In the paper, Justin and George simulate a variety of datasets that the same summary statistics to the Datasaurus but have very different distributions.
18 |
19 | This package looks to make these datasets available for use as an advanced [Anscombe's Quartet](https://en.wikipedia.org/wiki/Anscombe%27s_quartet), available in R as `anscombe`.
20 |
21 | ## Usage
22 |
23 | To see that statistics are (almost) the same for each sub-dataset, you can use `dplyr`.
24 |
25 | ```{r}
26 | library(datasauRus)
27 | if (requireNamespace("dplyr")) {
28 | suppressPackageStartupMessages(library(dplyr))
29 | datasaurus_dozen %>%
30 | group_by(dataset) %>%
31 | summarize(
32 | mean_x = mean(x),
33 | mean_y = mean(y),
34 | std_dev_x = sd(x),
35 | std_dev_y = sd(y),
36 | corr_x_y = cor(x, y)
37 | )
38 | }
39 | ```
40 |
41 | To see that each sub-dataset looks very different, you can draw scatter plots.
42 |
43 | ```{r fig.height=12, fig.width=9}
44 | if (requireNamespace("ggplot2")) {
45 | library(ggplot2)
46 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset)) +
47 | geom_point() +
48 | theme_void() +
49 | theme(legend.position = "none") +
50 | facet_wrap(~dataset, ncol = 3)
51 | }
52 | ```
53 |
--------------------------------------------------------------------------------
/.github/SUPPORT.md:
--------------------------------------------------------------------------------
1 | # Getting help with datasauRus
2 |
3 | Thanks for using datasauRus!
4 | Before filing an issue, there are a few places to explore and pieces to put together to make the process as smooth as possible.
5 |
6 | ## Make a reprex
7 |
8 | Start by making a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package.
9 | If you haven't heard of or used reprex before, you're in for a treat!
10 | Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it'll take you to learn what it's all about).
11 | For additional reprex pointers, check out the [Get help!](https://www.tidyverse.org/help/) section of the tidyverse site.
12 |
13 | ## Where to ask?
14 |
15 | Armed with your reprex, the next step is to figure out [where to ask](https://www.tidyverse.org/help/#where-to-ask).
16 |
17 | * If it's a question: start with [community.rstudio.com](https://community.rstudio.com/), and/or StackOverflow. There are more people there to answer questions.
18 |
19 | * If it's a bug: you're in the right place, [file an issue](https://github.com/jumpingrivers/datasauRus/issues/new).
20 |
21 | * If you're not sure: let the community help you figure it out!
22 | If your problem _is_ a bug or a feature request, you can easily return here and report it.
23 |
24 | Before opening a new issue, be sure to [search issues and pull requests](https://github.com/jumpingrivers/datasauRus/issues) to make sure the bug hasn't been reported and/or already fixed in the development version.
25 | By default, the search will be pre-populated with `is:issue is:open`.
26 | You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed.
27 | For example, you'd simply remove `is:open` to search _all_ issues in the repo, open or closed.
28 |
29 | ## What happens next?
30 |
31 | To be as efficient as possible, development of tidyverse packages tends to be very bursty, so you shouldn't worry if you don't get an immediate response.
32 | Typically we don't look at a repo until a sufficient quantity of issues accumulates, then there’s a burst of intense activity as we focus our efforts.
33 | That makes development more efficient because it avoids expensive context switching between problems, at the cost of taking longer to get back to you.
34 | This process makes a good reprex particularly important because it might be multiple months between your initial report and when we start working on it.
35 | If we can’t reproduce the bug, we can’t fix it!
36 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | # datasauRus
5 |
6 |
7 |
8 | [](https://lifecycle.r-lib.org/articles/stages.html#stable)
10 | [](https://CRAN.R-project.org/package=datasauRus)
12 | [](https://github.com/jumpingrivers/datasauRus/actions)
13 |
14 |
15 | This package wraps the awesome Datasaurus Dozen datasets. The Datasaurus
16 | Dozen show us why visualisation is important – summary statistics can be
17 | the same but distributions can be very different. In short, this package
18 | gives a fun alternative to [Anscombe’s
19 | Quartet](https://en.wikipedia.org/wiki/Anscombe%27s_quartet), available
20 | in R as `anscombe`.
21 |
22 | The original Datasaurus was created by Alberto Cairo. The other Dozen
23 | were generated using simulated annealing and the process is described in
24 | the paper “Same Stats, Different Graphs: Generating Datasets with Varied
25 | Appearance and Identical Statistics through Simulated Annealing” by
26 | Justin Matejka and George Fitzmaurice ([open access materials including
27 | manuscript and
28 | code](https://www.research.autodesk.com/publications/same-stats-different-graphs/),
29 | [official paper](https://doi.org/10.1145/3025453.3025912)).
30 |
31 | In the paper, Justin and George simulate a variety of datasets that the
32 | same summary statistics to the Datasaurus but have very different
33 | distributions.
34 |
35 |
36 |
37 | ## Install
38 |
39 | The latest stable version is available on CRAN
40 |
41 | ``` r
42 | install.packages("datasauRus")
43 | ```
44 |
45 | You can get the latest development version from GitHub, so use
46 | {devtools} to install the package
47 |
48 | ``` r
49 | devtools::install_github("jumpingrivers/datasauRus")
50 | ```
51 |
52 | ## Usage
53 |
54 | You can use the package to produce Anscombe plots and more.
55 |
56 | ``` r
57 | library("ggplot2")
58 | library("datasauRus")
59 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset))+
60 | geom_point() +
61 | theme_void() +
62 | theme(legend.position = "none")+
63 | facet_wrap(~dataset, ncol = 3)
64 | ```
65 |
66 | 
67 |
68 | ## Code of Conduct
69 |
70 | Please note that the datasauRus project is released with a [Contributor
71 | Code of
72 | Conduct](https://jumpingrivers.github.io/datasauRus/CODE_OF_CONDUCT.html).
73 | By contributing to this project, you agree to abide by its terms
74 |
--------------------------------------------------------------------------------
/man/twelve_from_slant_wide.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{twelve_from_slant_wide}
5 | \alias{twelve_from_slant_wide}
6 | \title{Twelve From Slant (wide) data}
7 | \format{
8 | A data frame with 182 rows and 24 variables:
9 | \itemize{
10 | \item \strong{bullseye_x}: x-values for the \code{bullseye} dataset
11 | \item \strong{bullseye_y}: y-values for the \code{bullseye} dataset
12 | \item \strong{circle_x}: x-values for the \code{circle} dataset
13 | \item \strong{circle_y}: y-values for the \code{circle} dataset
14 | \item \strong{dots_x}: x-values for the \code{dots} dataset
15 | \item \strong{dots_y}: y-values for the \code{dots} dataset
16 | \item \strong{h_lines_x}: x-values for the \code{h_lines} dataset
17 | \item \strong{h_lines_y}: y-values for the \code{h_lines} dataset
18 | \item \strong{high_lines_x}: x-values for the \code{high_lines} dataset
19 | \item \strong{high_lines_y}: y-values for the \code{high_lines} dataset
20 | \item \strong{slant_x}: x-values for the \code{slant} dataset
21 | \item \strong{slant_y}: y-values for the \code{slant} dataset
22 | \item \strong{slant_down_x}: x-values for the \code{slant_down} dataset
23 | \item \strong{slant_down_y}: y-values for the \code{slant_down} dataset
24 | \item \strong{slant_up_x}: x-values for the \code{slant_up} dataset
25 | \item \strong{slant_up_y}: y-values for the \code{slant_up} dataset
26 | \item \strong{star_x}: x-values for the \code{star} dataset
27 | \item \strong{star_y}: y-values for the \code{star} dataset
28 | \item \strong{v_lines_x}: x-values for the \code{v_lines} dataset
29 | \item \strong{v_lines_y}: y-values for the \code{v_lines} dataset
30 | \item \strong{wide_lines_x}: x-values for the \code{wide_lines} dataset
31 | \item \strong{wide_lines_y}: y-values for the \code{wide_lines} dataset
32 | \item \strong{x_shape_x}: x-values for the \code{x_shape} dataset
33 | \item \strong{x_shape_y}: y-values for the \code{x_shape} dataset
34 | }
35 | }
36 | \usage{
37 | twelve_from_slant_wide
38 | }
39 | \description{
40 | A dataset demonstrating the utility of visualization.
41 | These 12 datasets are equal in standard measures: mean,
42 | standard deviation, and Pearson's correlation.
43 | }
44 | \examples{
45 | #save current settings
46 | state = par("mar", "mfrow")
47 |
48 | # plot
49 | par(mfrow = c(4, 3), mar = c(1, 3, 3, 1))
50 |
51 | nms = names(twelve_from_slant_wide)
52 | for (i in seq(1, 23, by = 2)) {
53 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
54 | plot(twelve_from_slant_wide[[nms[i]]],
55 | twelve_from_slant_wide[[nms[i + 1]]],
56 | xlab = "", ylab = "", main = nm)
57 | }
58 |
59 | #reset settings
60 | par(state)
61 | }
62 | \references{
63 | Matejka, J., & Fitzmaurice, G. (2017).
64 | Same Stats, Different Graphs: Generating Datasets with
65 | Varied Appearance and Identical Statistics through Simulated
66 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
67 | Conference on Human Factors in Computing Systems.}
68 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
69 | }
70 | \keyword{datasets}
71 |
--------------------------------------------------------------------------------
/man/twelve_from_slant_alternate_wide.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{twelve_from_slant_alternate_wide}
5 | \alias{twelve_from_slant_alternate_wide}
6 | \title{Twelve From Slant Alternate (wide) data}
7 | \format{
8 | A data frame with 182 rows and 24 variables:
9 | \itemize{
10 | \item \strong{bullseye_x}: x-values for the \code{bullseye} dataset
11 | \item \strong{bullseye_y}: y-values for the \code{bullseye} dataset
12 | \item \strong{circle_x}: x-values for the \code{circle} dataset
13 | \item \strong{circle_y}: y-values for the \code{circle} dataset
14 | \item \strong{dots_x}: x-values for the \code{dots} dataset
15 | \item \strong{dots_y}: y-values for the \code{dots} dataset
16 | \item \strong{h_lines_x}: x-values for the \code{h_lines} dataset
17 | \item \strong{h_lines_y}: y-values for the \code{h_lines} dataset
18 | \item \strong{high_lines_x}: x-values for the \code{high_lines} dataset
19 | \item \strong{high_lines_y}: y-values for the \code{high_lines} dataset
20 | \item \strong{slant_x}: x-values for the \code{slant} dataset
21 | \item \strong{slant_y}: y-values for the \code{slant} dataset
22 | \item \strong{slant_down_x}: x-values for the \code{slant_down} dataset
23 | \item \strong{slant_down_y}: y-values for the \code{slant_down} dataset
24 | \item \strong{slant_up_x}: x-values for the \code{slant_up} dataset
25 | \item \strong{slant_up_y}: y-values for the \code{slant_up} dataset
26 | \item \strong{star_x}: x-values for the \code{star} dataset
27 | \item \strong{star_y}: y-values for the \code{star} dataset
28 | \item \strong{v_lines_x}: x-values for the \code{v_lines} dataset
29 | \item \strong{v_lines_y}: y-values for the \code{v_lines} dataset
30 | \item \strong{wide_lines_x}: x-values for the \code{wide_lines} dataset
31 | \item \strong{wide_lines_y}: y-values for the \code{wide_lines} dataset
32 | \item \strong{x_shape_x}: x-values for the \code{x_shape} dataset
33 | \item \strong{x_shape_y}: y-values for the \code{x_shape} dataset
34 | }
35 | }
36 | \usage{
37 | twelve_from_slant_alternate_wide
38 | }
39 | \description{
40 | A dataset demonstrating the utility of visualization.
41 | These 12 datasets are equal in non-parametric measures: median,
42 | interquartile range, and Spearman's rank correlation.
43 | }
44 | \examples{
45 | #save current settings
46 | state = par("mar", "mfrow")
47 |
48 | # plot
49 | par(mfrow = c(4, 3), mar = c(1, 3, 3, 1))
50 |
51 | nms = names(twelve_from_slant_alternate_wide)
52 | for (i in seq(1, 23, by = 2)) {
53 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
54 | plot(twelve_from_slant_alternate_wide[[nms[i]]],
55 | twelve_from_slant_alternate_wide[[nms[i + 1]]],
56 | xlab = "", ylab = "", main = nm)
57 | }
58 |
59 | #reset settings
60 | par(state)
61 | }
62 | \references{
63 | Matejka, J., & Fitzmaurice, G. (2017).
64 | Same Stats, Different Graphs: Generating Datasets with
65 | Varied Appearance and Identical Statistics through Simulated
66 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
67 | Conference on Human Factors in Computing Systems.}
68 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
69 | }
70 | \keyword{datasets}
71 |
--------------------------------------------------------------------------------
/man/datasaurus_dozen_wide.Rd:
--------------------------------------------------------------------------------
1 | % Generated by roxygen2: do not edit by hand
2 | % Please edit documentation in R/datasaurus-package.R
3 | \docType{data}
4 | \name{datasaurus_dozen_wide}
5 | \alias{datasaurus_dozen_wide}
6 | \title{Datasaurus Dozen (wide) data}
7 | \format{
8 | A data frame with 142 rows and 26 variables:
9 | \itemize{
10 | \item \strong{away_x}: x-values for the \code{away} dataset
11 | \item \strong{away_y}: y-values for the \code{away} dataset
12 | \item \strong{bullseye_x}: x-values for the \code{bullseye} dataset
13 | \item \strong{bullseye_y}: y-values for the \code{bullseye} dataset
14 | \item \strong{circle_x}: x-values for the \code{circle} dataset
15 | \item \strong{circle_y}: y-values for the \code{circle} dataset
16 | \item \strong{dino_x}: x-values for \code{dinosaur} dataset!
17 | \item \strong{dino_y}: y-values for \code{dinosaur} dataset!
18 | \item \strong{dots_x}: x-values for the \code{dots} dataset
19 | \item \strong{dots_y}: y-values for the \code{dots} dataset
20 | \item \strong{h_lines_x}: x-values for the \code{h_lines} dataset
21 | \item \strong{h_lines_y}: y-values for the \code{h_lines} dataset
22 | \item \strong{high_lines_x}: x-values for the \code{high_lines} dataset
23 | \item \strong{high_lines_y}: y-values for the \code{high_lines} dataset
24 | \item \strong{slant_down_x}: x-values for the \code{slant_down} dataset
25 | \item \strong{slant_down_y}: y-values for the \code{slant_down} dataset
26 | \item \strong{slant_up_x}: x-values for the \code{slant_up} dataset
27 | \item \strong{slant_up_y}: y-values for the \code{slant_up} dataset
28 | \item \strong{star_x}: x-values for the \code{star} dataset
29 | \item \strong{star_y}: y-values for the \code{star} dataset
30 | \item \strong{v_lines_x}: x-values for the \code{v_lines} dataset
31 | \item \strong{v_lines_y}: y-values for the \code{v_lines} dataset
32 | \item \strong{wide_lines_x}: x-values for the \code{wide_lines} dataset
33 | \item \strong{wide_lines_y}: y-values for the \code{wide_lines} dataset
34 | \item \strong{x_shape_x}: x-values for the \code{x_shape} dataset
35 | \item \strong{x_shape_y}: y-values for the \code{x_shape} dataset
36 | }
37 | }
38 | \usage{
39 | datasaurus_dozen_wide
40 | }
41 | \description{
42 | A dataset demonstrating the utility of visualization.
43 | These 12 datasets are equal in standard measures: mean,
44 | standard deviation, and Pearson's correlation.
45 | }
46 | \examples{
47 | # Save current settings
48 | state = par("mar", "mfrow")
49 |
50 | # Base R Plots
51 | par(mfrow = c(5, 3), mar = c(1, 3, 3, 1))
52 |
53 | nms = names(datasaurus_dozen_wide)
54 | for (i in seq(1, 25, by = 2)) {
55 | nm = substr(nms[i], 1, nchar(nms[i]) - 2)
56 | plot(datasaurus_dozen_wide[[nms[i]]],
57 | datasaurus_dozen_wide[[nms[i + 1]]],
58 | xlab = "", ylab = "", main = nm)
59 | }
60 |
61 | #reset settings
62 | par(state)
63 | }
64 | \references{
65 | Matejka, J., & Fitzmaurice, G. (2017).
66 | Same Stats, Different Graphs: Generating Datasets with
67 | Varied Appearance and Identical Statistics through Simulated
68 | Annealing. \emph{CHI 2017 Conference proceedings: ACM SIGCHI
69 | Conference on Human Factors in Computing Systems.}
70 | Retrieved from \url{https://www.research.autodesk.com/publications/same-stats-different-graphs/}. #nolint
71 | }
72 | \keyword{datasets}
73 |
--------------------------------------------------------------------------------
/README.Rmd:
--------------------------------------------------------------------------------
1 | ---
2 | output: github_document
3 | ---
4 |
5 |
6 |
7 | ```{r, echo = FALSE}
8 | knitr::opts_chunk$set(
9 | collapse = TRUE,
10 | comment = "#>",
11 | fig.path = "man/figures/"
12 | )
13 | ```
14 |
15 | # datasauRus
16 |
17 |
18 | [](https://lifecycle.r-lib.org/articles/stages.html#stable)
19 | [](https://CRAN.R-project.org/package=datasauRus)
20 | [](https://github.com/jumpingrivers/datasauRus/actions)
21 | [](https://github.com/jumpingrivers/datasauRus/actions/workflows/R-CMD-check.yaml)
22 |
23 |
24 | This package wraps the awesome Datasaurus Dozen datasets. The Datasaurus Dozen show us why visualisation is important -- summary statistics can be the same but distributions can be very different. In short, this package gives a fun alternative to [Anscombe's Quartet](https://en.wikipedia.org/wiki/Anscombe%27s_quartet), available in R as `anscombe`.
25 |
26 | The original Datasaurus was created by Alberto Cairo. The other Dozen were generated using simulated annealing and the process
27 | is described in the paper "Same Stats, Different Graphs: Generating
28 | Datasets with Varied Appearance and Identical Statistics through
29 | Simulated Annealing" by Justin
30 | Matejka and George Fitzmaurice ([open access materials including manuscript and code](https://www.research.autodesk.com/publications/same-stats-different-graphs/), [official paper](https://doi.org/10.1145/3025453.3025912)).
31 |
32 | In the paper, Justin and George simulate a variety of datasets that the same summary statistics to the Datasaurus but have very different distributions.
33 |
34 |
35 | ```{r, out.width="600px", fig.alt="Sequential dinosaur gif", echo = FALSE}
36 | knitr::include_graphics("https://damassets.autodesk.net/content/dam/autodesk/research/publications-assets/gifs/same-stats-different-graphs/DinoSequentialSmaller.gif")
37 | ```
38 |
39 | ## Install
40 | The latest stable version is available on CRAN
41 |
42 | ```{r, eval = FALSE}
43 | install.packages("datasauRus")
44 | ```
45 |
46 | You can get the latest development version from GitHub, so use {devtools} to install the package
47 |
48 | ```{r, eval = FALSE}
49 | devtools::install_github("jumpingrivers/datasauRus")
50 | ```
51 |
52 | ## Usage
53 |
54 | You can use the package to produce Anscombe plots and more.
55 |
56 | ```{r datasets, fig.height=12, fig.width=9}
57 | library("ggplot2")
58 | library("datasauRus")
59 | ggplot(datasaurus_dozen, aes(x = x, y = y, colour = dataset))+
60 | geom_point() +
61 | theme_void() +
62 | theme(legend.position = "none")+
63 | facet_wrap(~dataset, ncol = 3)
64 | ```
65 |
66 |
67 | ## Code of Conduct
68 |
69 | Please note that the datasauRus project is released with a [Contributor Code of Conduct](https://jumpingrivers.github.io/datasauRus/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms
70 |
--------------------------------------------------------------------------------
/.github/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | We as members, contributors, and leaders pledge to make participation in our
6 | community a harassment-free experience for everyone, regardless of age, body
7 | size, visible or invisible disability, ethnicity, sex characteristics, gender
8 | identity and expression, level of experience, education, socio-economic status,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | We pledge to act and interact in ways that contribute to an open, welcoming,
13 | diverse, inclusive, and healthy community.
14 |
15 | ## Our Standards
16 |
17 | Examples of behavior that contributes to a positive environment for our
18 | community include:
19 |
20 | * Demonstrating empathy and kindness toward other people
21 | * Being respectful of differing opinions, viewpoints, and experiences
22 | * Giving and gracefully accepting constructive feedback
23 | * Accepting responsibility and apologizing to those affected by our mistakes,
24 | and learning from the experience
25 | * Focusing on what is best not just for us as individuals, but for the overall
26 | community
27 |
28 | Examples of unacceptable behavior include:
29 |
30 | * The use of sexualized language or imagery, and sexual attention or
31 | advances of any kind
32 | * Trolling, insulting or derogatory comments, and personal or political attacks
33 | * Public or private harassment
34 | * Publishing others' private information, such as a physical or email
35 | address, without their explicit permission
36 | * Other conduct which could reasonably be considered inappropriate in a
37 | professional setting
38 |
39 | ## Enforcement Responsibilities
40 |
41 | Community leaders are responsible for clarifying and enforcing our standards
42 | of acceptable behavior and will take appropriate and fair corrective action in
43 | response to any behavior that they deem inappropriate, threatening, offensive,
44 | or harmful.
45 |
46 | Community leaders have the right and responsibility to remove, edit, or reject
47 | comments, commits, code, wiki edits, issues, and other contributions that are
48 | not aligned to this Code of Conduct, and will communicate reasons for moderation
49 | decisions when appropriate.
50 |
51 | ## Scope
52 |
53 | This Code of Conduct applies within all community spaces, and also applies
54 | when an individual is officially representing the community in public spaces.
55 | Examples of representing our community include using an official e-mail
56 | address, posting via an official social media account, or acting as an appointed
57 | representative at an online or offline event.
58 |
59 | ## Enforcement
60 |
61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
62 | reported to the community leaders responsible for enforcement at codeofconduct@rstudio.com.
63 | All complaints will be reviewed and investigated promptly and fairly.
64 |
65 | All community leaders are obligated to respect the privacy and security of the
66 | reporter of any incident.
67 |
68 | ## Enforcement Guidelines
69 |
70 | Community leaders will follow these Community Impact Guidelines in determining
71 | the consequences for any action they deem in violation of this Code of Conduct:
72 |
73 | ### 1. Correction
74 |
75 | **Community Impact**: Use of inappropriate language or other behavior deemed
76 | unprofessional or unwelcome in the community.
77 |
78 | **Consequence**: A private, written warning from community leaders, providing
79 | clarity around the nature of the violation and an explanation of why the
80 | behavior was inappropriate. A public apology may be requested.
81 |
82 | ### 2. Warning
83 |
84 | **Community Impact**: A violation through a single incident or series of
85 | actions.
86 |
87 | **Consequence**: A warning with consequences for continued behavior. No
88 | interaction with the people involved, including unsolicited interaction with
89 | those enforcing the Code of Conduct, for a specified period of time. This
90 | includes avoiding interactions in community spaces as well as external channels
91 | like social media. Violating these terms may lead to a temporary or permanent
92 | ban.
93 |
94 | ### 3. Temporary Ban
95 |
96 | **Community Impact**: A serious violation of community standards, including
97 | sustained inappropriate behavior.
98 |
99 | **Consequence**: A temporary ban from any sort of interaction or public
100 | communication with the community for a specified period of time. No public or
101 | private interaction with the people involved, including unsolicited interaction
102 | with those enforcing the Code of Conduct, is allowed during this period.
103 | Violating these terms may lead to a permanent ban.
104 |
105 | ### 4. Permanent Ban
106 |
107 | **Community Impact**: Demonstrating a pattern of violation of community
108 | standards, including sustained inappropriate behavior, harassment of an
109 | individual, or aggression toward or disparagement of classes of individuals.
110 |
111 | **Consequence**: A permanent ban from any sort of public interaction within the
112 | community.
113 |
114 | ## Attribution
115 |
116 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117 | version 2.0,
118 | available at .
119 |
120 | Community Impact Guidelines were inspired by [Mozilla's code of conduct
121 | enforcement ladder](https://github.com/mozilla/diversity).
122 |
123 | [homepage]: https://www.contributor-covenant.org
124 |
125 | For answers to common questions about this code of conduct, see the FAQ at
126 | . Translations are available at .
127 |
--------------------------------------------------------------------------------
/inst/extdata/SimpsonsParadox-Wide.tsv:
--------------------------------------------------------------------------------
1 | simpson_1 simpson_1 simpson_2 simpson_2
2 | x y x y
3 | 55.7909718157 69.9365934283 62.2434387845 70.6083992107
4 | 47.2282091405 14.7561070913 52.3349883891 14.705772721
5 | 57.2468738451 51.4617618588 56.3679472613 46.3955379223
6 | 70.8319847999 65.5199077407 66.803945776 66.1748679006
7 | 73.3670855496 91.5959640491 66.5360509146 89.2465806107
8 | 69.9744916206 94.9394275208 62.3812860623 91.4525971096
9 | 40.1049144627 9.58672855908 38.8538312261 6.76356023684
10 | 46.306867762 63.0790021629 39.406283311 63.0623946578
11 | 63.5118905297 91.3188400408 60.8981909102 92.5623698523
12 | 61.3784207464 51.9097664689 56.6229264798 45.7571594797
13 | 24.4368259537 4.28624078996 29.8892499219 6.58005362491
14 | 28.4162104994 5.46796845638 32.0738634721 14.1531733612
15 | 41.6293918156 52.1743334507 41.8251847374 55.4824261842
16 | 40.9624624616 7.50677488138 36.5054087766 10.1583095333
17 | 50.4048080182 40.9862915909 53.1207576225 44.3026622909
18 | 28.064915354 20.6178017531 25.5507775105 20.7388200832
19 | 78.3457430124 91.1442756985 71.8051997136 86.4814775815
20 | 48.576498562 23.373489831 46.241269306 20.5221321867
21 | 68.1415063219 57.0886856283 71.7811928334 61.1889632284
22 | 35.1771191716 21.2889005583 32.3997881671 14.3716866939
23 | 60.277198436 57.723872583 67.2542810388 65.6079688069
24 | 69.0733755677 77.2059289324 73.1173865281 81.1790691518
25 | 54.9438297151 32.941989407 58.5481223323 38.8110033112
26 | 41.8482124647 44.5883095101 44.1040888097 53.1190517597
27 | 29.441699163 5.73279918759 33.2811110226 12.0553165165
28 | 34.3192687687 21.9333645175 32.6388495005 14.5171409112
29 | 54.6812364909 95.4787598334 54.267778726 99.8395673578
30 | 50.830247166 32.553562636 42.2532299599 24.9070402084
31 | 36.4001855327 12.9287725207 34.7631479916 11.7823025614
32 | 40.0448949588 34.973472985 36.7126557379 30.1412965999
33 | 67.6124652252 49.3027674007 74.2780204 59.1457798012
34 | 45.9721509763 23.6637085192 45.8759868214 21.2935901672
35 | 57.8424149318 58.6383610501 65.8825274299 67.4254917282
36 | 51.6168124814 64.531431227 59.4085715643 74.0718570333
37 | 38.3860154463 29.6439075432 36.9961633817 30.0184640143
38 | 82.46724168 95.6593486437 76.360458386 89.4428072999
39 | 22.8861602963 1.0 29.7532455837 3.38317380619
40 | 79.4263516761 99.0 76.9137545243 93.5117462759
41 | 55.807633571 79.0912662501 55.6786939951 77.2130568796
42 | 49.6447592807 31.6975833729 41.7722531422 25.1190637512
43 | 28.7071929512 19.1777034365 27.4284354919 17.3015587512
44 | 45.6904410065 56.6153334155 47.3907588332 55.0957073772
45 | 49.9355452399 38.8000604975 52.744587949 44.724394731
46 | 57.6524875514 67.6529109488 63.369799707 69.8765380012
47 | 61.8960294968 46.3373451262 57.8921037446 43.4549078015
48 | 48.4714332864 44.8087250029 51.4648195016 46.1656865287
49 | 64.8693862824 92.7846809099 60.3103259212 93.7468247846
50 | 48.5282435828 38.7781932107 55.4054060507 46.69509542
51 | 38.9816975616 56.6971386306 37.1541581884 60.0937379901
52 | 22.1525466166 1.87126319037 26.7244644531 4.42829464175
53 | 38.8887808577 32.8430633079 35.6449082971 31.4393232129
54 | 55.0247203448 68.0577628337 57.3638919209 75.9589794967
55 | 62.6428692695 84.1675315407 66.9698602814 86.1463865097
56 | 54.987996807 81.897232613 54.7999369653 78.2343750439
57 | 67.0054190547 93.1570846804 64.7300366558 89.4095394979
58 | 50.3530481629 44.5909244275 56.0674829356 42.1332743252
59 | 46.4315061577 35.5709442115 37.8543879494 29.2860374154
60 | 41.4966700091 33.2331654025 36.6090288878 30.5739213437
61 | 45.571870558 48.93801295 49.943826149 48.5704114132
62 | 59.5518487262 43.0408745162 54.986179506 42.7800379869
63 | 50.3666439178 48.9957895476 49.3299344982 51.1400468911
64 | 59.5083922835 67.2231679587 64.8049315703 68.025548052
65 | 48.7454943377 66.8406774566 58.1189953269 74.7935860661
66 | 50.5354363801 18.1964864096 47.8767910559 18.8551281024
67 | 29.3169060269 6.35268465503 34.4825499887 12.2917200025
68 | 62.8086406129 93.993079221 62.2516201137 91.4087280245
69 | 85.057792881 79.4131993797 81.028199774 72.53857096
70 | 34.2946169945 7.06898620271 38.0835688653 9.04370934353
71 | 33.3845809961 11.7978607101 31.7523760116 14.1949435576
72 | 72.3038815182 94.7885696826 66.6850466715 87.7892763952
73 | 38.9496288838 9.81915009164 35.77453456 10.7387967406
74 | 71.0085263017 81.0677514043 72.4479913643 81.6972689607
75 | 31.2028861704 1.0 35.4114695455 9.66314824078
76 | 44.658260858 19.3585031044 43.2933962176 23.7688888235
77 | 35.6248907864 26.4140627705 37.5257019915 29.6828217583
78 | 59.341379739 63.8125493473 65.2802820152 68.0822569128
79 | 60.2196498836 79.8285218722 69.9248804645 83.2387053847
80 | 58.7258632446 74.3630687968 58.2316075851 74.7684144035
81 | 42.3845648942 55.5576739181 42.4241820105 57.1447689952
82 | 64.9353102974 80.3475669854 66.7097007553 86.2677202689
83 | 49.5564587021 50.6937867532 46.766168213 50.922139871
84 | 72.6187112418 81.4728024583 74.0248646709 79.0417735273
85 | 33.4052196482 22.9983279399 27.2623316124 18.2963375756
86 | 48.6874414786 38.553136122 53.0600562461 44.7161667644
87 | 43.3767323014 49.8525614091 48.006908225 49.5084048396
88 | 58.1384982868 73.7567022368 59.0516319048 74.1156533681
89 | 66.8308084448 73.8965570812 71.9780561091 82.8536317777
90 | 41.836547671 26.0960551519 42.4845265532 24.5057754935
91 | 30.9737261557 16.3020143457 30.3456790514 16.2682633547
92 | 46.1230612646 33.8957370514 41.1668213592 25.729167193
93 | 54.9207537753 55.9941341333 49.9426346305 52.2716948372
94 | 42.4719345739 22.3160191432 44.9644863501 22.1872086659
95 | 31.7340349528 26.19768637 26.373668624 20.6777941288
96 | 59.6602530193 71.1389296118 59.7351278459 73.3419083703
97 | 72.1304361508 92.9543761661 64.9617222145 88.8782400035
98 | 62.3554065495 66.1313980943 64.8210465863 68.0382164226
99 | 29.8253702113 8.27481322951 35.3645105444 10.9472193759
100 | 52.8836434474 62.615927985 60.4077132408 72.4841458308
101 | 32.9291416157 5.29019601905 36.5491391031 8.20967528844
102 | 41.4051061082 33.1126892915 35.6051194399 31.4946993312
103 | 30.2919147933 1.15230198196 35.0363432907 5.03570481684
104 | 37.6451237763 33.9215574513 38.7775178566 28.3606348292
105 | 84.9970089944 97.7031353202 83.0185029285 92.741863979
106 | 56.6641126118 65.8990861195 63.9842995247 68.833868945
107 | 36.8220446576 13.4137085719 34.1981547589 12.275111337
108 | 35.2743113947 12.1660304542 37.4760023503 9.66236878702
109 | 32.2554489511 5.52690352418 36.3494739512 10.7070247734
110 | 36.9797980162 10.192580621 39.2723375859 7.39976821418
111 | 46.2729422339 58.3243666633 46.6969098075 56.0438056164
112 | 26.7819921561 9.57528865767 29.1646187186 16.7840088461
113 | 52.473844867 61.1470483244 47.9127737067 54.5698023947
114 | 50.0637803421 52.3931709543 45.4824544815 53.3366442242
115 | 71.0066775336 90.987444483 66.9676215516 86.2386481302
116 | 46.7681988706 58.0920989194 43.8869704996 57.1986090508
117 | 46.7603725394 52.9512114954 43.1694293102 54.1161277453
118 | 73.050688586 94.0099951388 64.1009321306 88.8947407213
119 | 55.4634109881 71.9748830508 59.6408587008 73.6158709307
120 | 54.8878396148 75.8558634406 53.6970623489 79.3123095571
121 | 46.7175056637 45.3708200727 47.9398878807 50.0060410973
122 | 58.3415929169 87.3669552245 63.8407706096 89.702790829
123 | 30.9406203488 3.68885464012 36.4220612141 7.68834687415
124 | 43.8773877152 16.5994443217 36.6201372163 10.387724563
125 | 41.0650238931 41.8974884321 34.4744559265 32.4207510166
126 | 47.3107900914 55.5072811034 49.0643633082 52.4747542989
127 | 39.9409186214 19.1434218125 34.1992764122 12.5228678511
128 | 41.89231521 23.7448047171 42.1192249761 24.9622382901
129 | 39.445846226 31.9007765222 38.7057897369 28.2735231633
130 | 55.7874243553 63.782837942 58.0006672129 74.8950434406
131 | 32.1116334639 23.9826531817 28.2206940517 18.3509584725
132 | 71.1990034259 97.4032423768 64.4982566115 93.1870322515
133 | 34.1148246116 12.7431090357 34.6273673627 12.1240943805
134 | 60.5866656947 43.6553175251 56.4940129018 44.834828781
135 | 23.7445872074 4.77513142137 33.8762471538 6.63183650855
136 | 44.7348333109 27.9494448323 41.689180565 24.607777977
137 | 47.1306506663 34.9064780376 41.2597662041 25.8856913939
138 | 45.2032821055 79.0635740404 54.3162121966 78.5865437913
139 | 55.2570171341 64.3341018649 58.3661119474 74.5029967652
140 | 45.9529981256 10.2682205525 40.8202472861 6.30691995856
141 | 43.2441938254 24.9094084083 45.1544603893 21.9388078827
142 | 31.2984223513 11.7268672901 33.7796284941 12.9367976004
143 | 59.4640995444 87.6827026135 61.8715099267 91.5789804652
144 | 50.9438026581 41.6379135031 53.1419405799 45.3335233244
145 | 31.7285047479 12.4903829997 30.9396671813 15.2593928553
146 | 32.6256151336 25.1914341709 23.6217983418 22.6232705414
147 | 33.0878368521 23.003823149 26.2020034342 20.8474598713
148 | 49.3641894359 33.0434167997 43.6433755824 23.2971844825
149 | 46.6737581663 48.60672486 49.694458514 48.7661755776
150 | 27.6611771454 9.76520419268 30.9778902072 16.076565687
151 | 71.3981547428 88.8044516258 68.132161143 86.0675247797
152 | 68.5627654306 92.6288756372 68.0408847674 85.3394571936
153 | 64.8599638706 87.8120083903 65.645503436 87.2918504334
154 | 38.213199827 16.1693927462 32.8297271662 12.2826527638
155 | 55.5827357129 54.9490853685 55.0539016141 47.5992683796
156 | 58.4113312297 62.3288413495 64.1976318969 68.5994512813
157 | 61.307161386 94.6561113313 63.114878862 89.9721224683
158 | 71.4795418906 90.7429785871 68.1117371151 85.0547042799
159 | 55.0822017157 44.4810055496 56.6346969092 41.6697734259
160 | 39.8934894552 27.3647048509 38.5517783761 28.5385311781
161 | 26.1719216477 2.59869995461 31.7157984207 5.75024114931
162 | 49.6977718332 58.4988236426 47.1255923939 54.2823884545
163 | 28.6623387823 15.8117338356 29.2961379299 16.995636383
164 | 43.1064912036 13.796717432 40.0916962169 6.62374049947
165 | 61.7024868621 75.1224890664 61.0990882885 71.7290159032
166 | 62.8337035607 69.5484952316 62.8541038017 70.0174747914
167 | 56.3679668225 58.9999823874 66.5038082378 66.6054813172
168 | 58.9971750437 66.3263796115 59.2702645614 71.451220034
169 | 66.5274944321 90.5201714686 66.1612742032 86.8117730528
170 | 29.9904583508 12.7489815693 33.2828248518 12.6955341432
171 | 48.7209699208 53.0936303982 46.1253077991 56.4945993755
172 | 40.7966378241 21.4984485901 42.886621415 24.2543164086
173 | 32.1245373531 9.16881861463 33.9021404949 12.1566055773
174 | 20.8972821989 1.55672804415 24.9826180956 1.42501885326
175 | 41.4522165411 37.0283675664 38.9023932674 28.21067596
176 | 41.8600084666 34.8624241638 34.496824593 32.8011871091
177 | 39.6850464928 15.4768603651 34.6663161324 10.939904154
178 | 38.6001587194 35.7542778685 36.7065432625 29.8584757815
179 | 60.5559326454 63.0295031488 66.6844639145 66.3458510045
180 | 47.5383959004 67.0709325903 39.8472940631 63.0831101669
181 | 55.8142239505 78.5678237321 55.0941567565 77.9901832982
182 | 36.9203337805 18.4859561884 30.4659640738 15.9591937158
183 | 60.1863753971 77.7969936739 56.4089386137 76.5555986682
184 | 30.2404507089 21.5324449299 27.1546213358 19.9899026727
185 | 55.6109417288 54.5998659039 49.5952065091 48.8744017207
186 | 56.2572985091 43.4290597477 55.5458187327 45.5101513894
187 | 20.4729279912 10.3966047821 26.7353376031 18.2035304507
188 | 81.7244622612 78.1146527464 78.6013887465 74.6858848252
189 | 66.4013968042 87.8193348633 66.4838645267 87.7185632764
190 | 30.3877997107 40.1062668898 28.1120710962 38.9813662933
191 | 54.6982538508 61.9810042509 61.7240923513 71.2439148942
192 | 44.9836952823 36.4807812355 41.7645933866 25.3691805647
193 | 44.8570382418 77.053538836 52.9308124522 79.8249061771
194 | 70.2253366178 90.149719683 66.4351189589 87.7209447856
195 | 67.7787268413 82.4259175945 69.0524097506 83.9176191042
196 | 46.2486979561 65.462639425 43.0183805425 59.5931729344
197 | 54.1886032466 76.7160391033 54.2889249188 78.6587620461
198 | 26.0473634346 4.55145937583 27.8589904323 12.0236587905
199 | 34.8166771041 35.6123450364 32.4956587099 34.4073441852
200 | 37.502923267 13.4293539656 37.4710362421 9.50572654509
201 | 36.2540009944 20.0517872923 32.4244054893 14.4566200432
202 | 61.0486173962 63.1521513872 64.7657992136 68.2613206424
203 | 59.4209035713 50.0020296033 55.6674244265 45.9138843376
204 | 28.9489153525 14.5935687693 30.4627297098 16.3162541694
205 | 51.7159471933 67.3200907603 55.1454432469 78.1747011309
206 | 35.1635061627 7.99358479475 35.796089457 10.5820759202
207 | 43.9946570646 41.9812706566 48.2714822998 48.9654753093
208 | 53.4743082986 52.8182627068 52.1431140185 48.7253194827
209 | 49.7734994064 51.020732155 51.5472046729 48.9112066399
210 | 63.0720533077 66.5303891622 62.3932801342 70.5487367136
211 | 52.5010444088 59.536338533 49.3238873867 53.2680744315
212 | 32.763764429 31.4973414962 32.0695524804 35.0866379214
213 | 59.9545110187 73.5826761062 60.5641361712 72.2254343613
214 | 40.9912807052 64.7623760379 41.8056895218 59.3661576595
215 | 44.703946573 18.925907375 42.5648135375 22.8071798115
216 | 41.4328780706 51.0319769334 47.2664897438 50.3662303248
217 | 77.471643704 91.8326445341 74.0728513578 86.0103251526
218 | 66.6007450964 71.9602230601 62.5354642138 70.5124191205
219 | 61.4140789033 75.3714524457 55.7409533387 77.1149926394
220 | 64.2987934542 86.5370841427 65.4965254183 87.4509352511
221 | 37.4395175003 15.7044434331 33.2002589803 13.7139556749
222 | 51.8551019915 63.3036003053 62.8917369438 69.9894072351
223 | 24.9335221421 3.46001244414 29.9903955019 4.13829337337
224 | 54.6821344267 63.9153228262 64.1636791355 68.6116065767
225 |
--------------------------------------------------------------------------------
/R/datasaurus-package.R:
--------------------------------------------------------------------------------
1 | #' Box plot data
2 | #'
3 | #' This dataset is the box plot data produced by Matjeka &
4 | #' Fitzmaurice to demonstrate applicability of their process.
5 | #'
6 | #' @name box_plots
7 | #' @format A data frame with 2484 rows and 5 variables:
8 | #'* **left**: data pulled to the left
9 | #'* **lines**: data with arbitrary spikes along a range
10 | #'* **normal**: normally distributed data
11 | #'* **right**: data pulled to the right
12 | #'* **split**: split data
13 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
14 | #' Same Stats, Different Graphs: Generating Datasets with
15 | #' Varied Appearance and Identical Statistics through Simulated
16 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
17 | #' Conference on Human Factors in Computing Systems._
18 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
19 | #' @example inst/examples/box_plots.R
20 | "box_plots"
21 |
22 | #' Box plot data
23 | #'
24 | #' This dataset is the box plot data produced by Matjeka &
25 | #' Fitzmaurice to demonstrate applicability of their process.
26 | #'
27 | #' @name box_plots_long
28 | #' @format A data frame with 12420 rows and 2 variables:
29 | #'* **Plot**: either the left, lines, normal, right or split boxplot
30 | #'* **Values**: the corresponding values from each dataset
31 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
32 | #' Same Stats, Different Graphs: Generating Datasets with
33 | #' Varied Appearance and Identical Statistics through Simulated
34 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
35 | #' Conference on Human Factors in Computing Systems._
36 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
37 | #' @example inst/examples/box_plots.R
38 | "box_plots_long"
39 |
40 | #' Datasaurus Dozen (wide) data
41 | #'
42 | #' A dataset demonstrating the utility of visualization.
43 | #' These 12 datasets are equal in standard measures: mean,
44 | #' standard deviation, and Pearson's correlation.
45 | #' @name datasaurus_dozen_wide
46 | #' @format A data frame with 142 rows and 26 variables:
47 | #'* **away_x**: x-values for the `away` dataset
48 | #'* **away_y**: y-values for the `away` dataset
49 | #'* **bullseye_x**: x-values for the `bullseye` dataset
50 | #'* **bullseye_y**: y-values for the `bullseye` dataset
51 | #'* **circle_x**: x-values for the `circle` dataset
52 | #'* **circle_y**: y-values for the `circle` dataset
53 | #'* **dino_x**: x-values for `dinosaur` dataset!
54 | #'* **dino_y**: y-values for `dinosaur` dataset!
55 | #'* **dots_x**: x-values for the `dots` dataset
56 | #'* **dots_y**: y-values for the `dots` dataset
57 | #'* **h_lines_x**: x-values for the `h_lines` dataset
58 | #'* **h_lines_y**: y-values for the `h_lines` dataset
59 | #'* **high_lines_x**: x-values for the `high_lines` dataset
60 | #'* **high_lines_y**: y-values for the `high_lines` dataset
61 | #'* **slant_down_x**: x-values for the `slant_down` dataset
62 | #'* **slant_down_y**: y-values for the `slant_down` dataset
63 | #'* **slant_up_x**: x-values for the `slant_up` dataset
64 | #'* **slant_up_y**: y-values for the `slant_up` dataset
65 | #'* **star_x**: x-values for the `star` dataset
66 | #'* **star_y**: y-values for the `star` dataset
67 | #'* **v_lines_x**: x-values for the `v_lines` dataset
68 | #'* **v_lines_y**: y-values for the `v_lines` dataset
69 | #'* **wide_lines_x**: x-values for the `wide_lines` dataset
70 | #'* **wide_lines_y**: y-values for the `wide_lines` dataset
71 | #'* **x_shape_x**: x-values for the `x_shape` dataset
72 | #'* **x_shape_y**: y-values for the `x_shape` dataset
73 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
74 | #' Same Stats, Different Graphs: Generating Datasets with
75 | #' Varied Appearance and Identical Statistics through Simulated
76 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
77 | #' Conference on Human Factors in Computing Systems._
78 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
79 | #' @example inst/examples/datasaurus_dozen_wide.R
80 | "datasaurus_dozen_wide"
81 |
82 | #' Datasaurus Dozen data
83 | #'
84 | #' A dataset demonstrating the utility of visualization.
85 | #' These 12 datasets are equal in standard measures: mean,
86 | #' standard deviation, and Pearson's correlation.
87 | #' @name datasaurus_dozen
88 | #' @format A data frame with 1846 rows and 3 variables:
89 | #'* **dataset**: indicates which dataset the data are from
90 | #'* **x**: x-values
91 | #'* **y**: y-values
92 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
93 | #' Same Stats, Different Graphs: Generating Datasets with
94 | #' Varied Appearance and Identical Statistics through Simulated
95 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
96 | #' Conference on Human Factors in Computing Systems._
97 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
98 | #' @example inst/examples/datasaurus_dozen.R
99 | "datasaurus_dozen"
100 |
101 | #' Simpsons Paradox (wide) data
102 | #'
103 | #' A dataset demonstrating Simpson's Paradox with a
104 | #' strongly positively correlated dataset (`simpson_1`)
105 | #' and a dataset with the same positive correlation as `simpson_1`,
106 | #' but where individual groups have a
107 | #' strong negative correlation (`simpson_2`).
108 | #' @name simpsons_paradox_wide
109 | #' @format A data frame with 222 rows and 4 variables:
110 | #'* **simpson_1_x**: x-values from the `simpson_1` dataset
111 | #'* **simpson_1_y**: y-values from the `simpson_1` dataset
112 | #'* **simpson_2_x**: x-values from the `simpson_2` dataset
113 | #'* **simpson_2_y**: y-values from the `simpson_2` dataset
114 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
115 | #' Same Stats, Different Graphs: Generating Datasets with
116 | #' Varied Appearance and Identical Statistics through Simulated
117 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
118 | #' Conference on Human Factors in Computing Systems._
119 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/).#nolint
120 | #' @example inst/examples/simpsons_paradox_wide.R
121 | "simpsons_paradox_wide"
122 |
123 | #' Simpsons Paradox data
124 | #'
125 | #' A dataset demonstrating Simpson's Paradox with a strongly positively
126 | #' correlated dataset (`simpson_1`)
127 | #' and a dataset with the same positive correlation as `simpson_1`,
128 | #' but where individual groups have a
129 | #' strong negative correlation (`simpson_2`).
130 | #' @format A data frame with 444 rows and 3 variables:
131 | #'* **dataset**: indicates which of the two datasets the data are from, `simpson_1` or `simpson_2`
132 | #'* **x**: x-values
133 | #'* **y**: y-values
134 | #' @name simpsons_paradox
135 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
136 | #' Same Stats, Different Graphs: Generating Datasets with
137 | #' Varied Appearance and Identical Statistics through Simulated
138 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
139 | #' Conference on Human Factors in Computing Systems._
140 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
141 | #' @example inst/examples/simpsons_paradox.R
142 | "simpsons_paradox"
143 |
144 | #' Twelve From Slant Alternate (long) data
145 | #'
146 | #' A dataset demonstrating the utility of visualization.
147 | #' These 12 datasets are equal in non-parametric measures: median,
148 | #' interquartile range, and Spearman's rank correlation.
149 | #' @name twelve_from_slant_alternate_long
150 | #' @format A data frame with 2184 rows and 3 variables:
151 | #'* **dataset**: the dataset the data are from
152 | #'* **x**: x-values
153 | #'* **y**: y-values
154 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
155 | #' Same Stats, Different Graphs: Generating Datasets with
156 | #' Varied Appearance and Identical Statistics through Simulated
157 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
158 | #' Conference on Human Factors in Computing Systems._
159 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
160 | #' @example inst/examples/twelve_from_slant_alternate_long.R
161 | "twelve_from_slant_alternate_long"
162 |
163 | #' Twelve From Slant Alternate (wide) data
164 | #'
165 | #' A dataset demonstrating the utility of visualization.
166 | #' These 12 datasets are equal in non-parametric measures: median,
167 | #' interquartile range, and Spearman's rank correlation.
168 | #' @name twelve_from_slant_alternate_wide
169 | #' @format A data frame with 182 rows and 24 variables:
170 | #'* **bullseye_x**: x-values for the `bullseye` dataset
171 | #'* **bullseye_y**: y-values for the `bullseye` dataset
172 | #'* **circle_x**: x-values for the `circle` dataset
173 | #'* **circle_y**: y-values for the `circle` dataset
174 | #'* **dots_x**: x-values for the `dots` dataset
175 | #'* **dots_y**: y-values for the `dots` dataset
176 | #'* **h_lines_x**: x-values for the `h_lines` dataset
177 | #'* **h_lines_y**: y-values for the `h_lines` dataset
178 | #'* **high_lines_x**: x-values for the `high_lines` dataset
179 | #'* **high_lines_y**: y-values for the `high_lines` dataset
180 | #'* **slant_x**: x-values for the `slant` dataset
181 | #'* **slant_y**: y-values for the `slant` dataset
182 | #'* **slant_down_x**: x-values for the `slant_down` dataset
183 | #'* **slant_down_y**: y-values for the `slant_down` dataset
184 | #'* **slant_up_x**: x-values for the `slant_up` dataset
185 | #'* **slant_up_y**: y-values for the `slant_up` dataset
186 | #'* **star_x**: x-values for the `star` dataset
187 | #'* **star_y**: y-values for the `star` dataset
188 | #'* **v_lines_x**: x-values for the `v_lines` dataset
189 | #'* **v_lines_y**: y-values for the `v_lines` dataset
190 | #'* **wide_lines_x**: x-values for the `wide_lines` dataset
191 | #'* **wide_lines_y**: y-values for the `wide_lines` dataset
192 | #'* **x_shape_x**: x-values for the `x_shape` dataset
193 | #'* **x_shape_y**: y-values for the `x_shape` dataset
194 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
195 | #' Same Stats, Different Graphs: Generating Datasets with
196 | #' Varied Appearance and Identical Statistics through Simulated
197 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
198 | #' Conference on Human Factors in Computing Systems._
199 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
200 | #' @example inst/examples/twelve_from_slant_alternate_wide.R
201 | "twelve_from_slant_alternate_wide"
202 |
203 | #' Twelve From Slant (long) data
204 | #'
205 | #' A dataset demonstrating the utility of visualization.
206 | #' These 12 datasets are equal in standard measures: mean,
207 | #' standard deviation, and Pearson's correlation.
208 | #' @name twelve_from_slant_long
209 | #' @format A data frame with 2184 rows and 3 variables:
210 | #'* **dataset**: the dataset the data are from
211 | #'* **x**: x-values
212 | #'* **y**: y-values
213 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
214 | #' Same Stats, Different Graphs: Generating Datasets with
215 | #' Varied Appearance and Identical Statistics through Simulated
216 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
217 | #' Conference on Human Factors in Computing Systems._
218 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
219 | #' @example inst/examples/twelve_from_slant_long.R
220 | "twelve_from_slant_long"
221 |
222 | #' Twelve From Slant (wide) data
223 | #'
224 | #' A dataset demonstrating the utility of visualization.
225 | #' These 12 datasets are equal in standard measures: mean,
226 | #' standard deviation, and Pearson's correlation.
227 | #' @name twelve_from_slant_wide
228 | #' @format A data frame with 182 rows and 24 variables:
229 | #'* **bullseye_x**: x-values for the `bullseye` dataset
230 | #'* **bullseye_y**: y-values for the `bullseye` dataset
231 | #'* **circle_x**: x-values for the `circle` dataset
232 | #'* **circle_y**: y-values for the `circle` dataset
233 | #'* **dots_x**: x-values for the `dots` dataset
234 | #'* **dots_y**: y-values for the `dots` dataset
235 | #'* **h_lines_x**: x-values for the `h_lines` dataset
236 | #'* **h_lines_y**: y-values for the `h_lines` dataset
237 | #'* **high_lines_x**: x-values for the `high_lines` dataset
238 | #'* **high_lines_y**: y-values for the `high_lines` dataset
239 | #'* **slant_x**: x-values for the `slant` dataset
240 | #'* **slant_y**: y-values for the `slant` dataset
241 | #'* **slant_down_x**: x-values for the `slant_down` dataset
242 | #'* **slant_down_y**: y-values for the `slant_down` dataset
243 | #'* **slant_up_x**: x-values for the `slant_up` dataset
244 | #'* **slant_up_y**: y-values for the `slant_up` dataset
245 | #'* **star_x**: x-values for the `star` dataset
246 | #'* **star_y**: y-values for the `star` dataset
247 | #'* **v_lines_x**: x-values for the `v_lines` dataset
248 | #'* **v_lines_y**: y-values for the `v_lines` dataset
249 | #'* **wide_lines_x**: x-values for the `wide_lines` dataset
250 | #'* **wide_lines_y**: y-values for the `wide_lines` dataset
251 | #'* **x_shape_x**: x-values for the `x_shape` dataset
252 | #'* **x_shape_y**: y-values for the `x_shape` dataset
253 | #' @references Matejka, J., & Fitzmaurice, G. (2017).
254 | #' Same Stats, Different Graphs: Generating Datasets with
255 | #' Varied Appearance and Identical Statistics through Simulated
256 | #' Annealing. _CHI 2017 Conference proceedings: ACM SIGCHI
257 | #' Conference on Human Factors in Computing Systems._
258 | #' Retrieved from [https://www.research.autodesk.com/publications/same-stats-different-graphs/](https://www.research.autodesk.com/publications/same-stats-different-graphs/). #nolint
259 | #' @example inst/examples/twelve_from_slant_wide.R
260 | "twelve_from_slant_wide"
261 |
--------------------------------------------------------------------------------
/inst/extdata/SimpsonsParadox-Long.tsv:
--------------------------------------------------------------------------------
1 | dataset x y
2 | simpson_1 55.7909718157 69.9365934283
3 | simpson_1 47.2282091405 14.7561070913
4 | simpson_1 57.2468738451 51.4617618588
5 | simpson_1 70.8319847999 65.5199077407
6 | simpson_1 73.3670855496 91.5959640491
7 | simpson_1 69.9744916206 94.9394275208
8 | simpson_1 40.1049144627 9.58672855908
9 | simpson_1 46.306867762 63.0790021629
10 | simpson_1 63.5118905297 91.3188400408
11 | simpson_1 61.3784207464 51.9097664689
12 | simpson_1 24.4368259537 4.28624078996
13 | simpson_1 28.4162104994 5.46796845638
14 | simpson_1 41.6293918156 52.1743334507
15 | simpson_1 40.9624624616 7.50677488138
16 | simpson_1 50.4048080182 40.9862915909
17 | simpson_1 28.064915354 20.6178017531
18 | simpson_1 78.3457430124 91.1442756985
19 | simpson_1 48.576498562 23.373489831
20 | simpson_1 68.1415063219 57.0886856283
21 | simpson_1 35.1771191716 21.2889005583
22 | simpson_1 60.277198436 57.723872583
23 | simpson_1 69.0733755677 77.2059289324
24 | simpson_1 54.9438297151 32.941989407
25 | simpson_1 41.8482124647 44.5883095101
26 | simpson_1 29.441699163 5.73279918759
27 | simpson_1 34.3192687687 21.9333645175
28 | simpson_1 54.6812364909 95.4787598334
29 | simpson_1 50.830247166 32.553562636
30 | simpson_1 36.4001855327 12.9287725207
31 | simpson_1 40.0448949588 34.973472985
32 | simpson_1 67.6124652252 49.3027674007
33 | simpson_1 45.9721509763 23.6637085192
34 | simpson_1 57.8424149318 58.6383610501
35 | simpson_1 51.6168124814 64.531431227
36 | simpson_1 38.3860154463 29.6439075432
37 | simpson_1 82.46724168 95.6593486437
38 | simpson_1 22.8861602963 1.0
39 | simpson_1 79.4263516761 99.0
40 | simpson_1 55.807633571 79.0912662501
41 | simpson_1 49.6447592807 31.6975833729
42 | simpson_1 28.7071929512 19.1777034365
43 | simpson_1 45.6904410065 56.6153334155
44 | simpson_1 49.9355452399 38.8000604975
45 | simpson_1 57.6524875514 67.6529109488
46 | simpson_1 61.8960294968 46.3373451262
47 | simpson_1 48.4714332864 44.8087250029
48 | simpson_1 64.8693862824 92.7846809099
49 | simpson_1 48.5282435828 38.7781932107
50 | simpson_1 38.9816975616 56.6971386306
51 | simpson_1 22.1525466166 1.87126319037
52 | simpson_1 38.8887808577 32.8430633079
53 | simpson_1 55.0247203448 68.0577628337
54 | simpson_1 62.6428692695 84.1675315407
55 | simpson_1 54.987996807 81.897232613
56 | simpson_1 67.0054190547 93.1570846804
57 | simpson_1 50.3530481629 44.5909244275
58 | simpson_1 46.4315061577 35.5709442115
59 | simpson_1 41.4966700091 33.2331654025
60 | simpson_1 45.571870558 48.93801295
61 | simpson_1 59.5518487262 43.0408745162
62 | simpson_1 50.3666439178 48.9957895476
63 | simpson_1 59.5083922835 67.2231679587
64 | simpson_1 48.7454943377 66.8406774566
65 | simpson_1 50.5354363801 18.1964864096
66 | simpson_1 29.3169060269 6.35268465503
67 | simpson_1 62.8086406129 93.993079221
68 | simpson_1 85.057792881 79.4131993797
69 | simpson_1 34.2946169945 7.06898620271
70 | simpson_1 33.3845809961 11.7978607101
71 | simpson_1 72.3038815182 94.7885696826
72 | simpson_1 38.9496288838 9.81915009164
73 | simpson_1 71.0085263017 81.0677514043
74 | simpson_1 31.2028861704 1.0
75 | simpson_1 44.658260858 19.3585031044
76 | simpson_1 35.6248907864 26.4140627705
77 | simpson_1 59.341379739 63.8125493473
78 | simpson_1 60.2196498836 79.8285218722
79 | simpson_1 58.7258632446 74.3630687968
80 | simpson_1 42.3845648942 55.5576739181
81 | simpson_1 64.9353102974 80.3475669854
82 | simpson_1 49.5564587021 50.6937867532
83 | simpson_1 72.6187112418 81.4728024583
84 | simpson_1 33.4052196482 22.9983279399
85 | simpson_1 48.6874414786 38.553136122
86 | simpson_1 43.3767323014 49.8525614091
87 | simpson_1 58.1384982868 73.7567022368
88 | simpson_1 66.8308084448 73.8965570812
89 | simpson_1 41.836547671 26.0960551519
90 | simpson_1 30.9737261557 16.3020143457
91 | simpson_1 46.1230612646 33.8957370514
92 | simpson_1 54.9207537753 55.9941341333
93 | simpson_1 42.4719345739 22.3160191432
94 | simpson_1 31.7340349528 26.19768637
95 | simpson_1 59.6602530193 71.1389296118
96 | simpson_1 72.1304361508 92.9543761661
97 | simpson_1 62.3554065495 66.1313980943
98 | simpson_1 29.8253702113 8.27481322951
99 | simpson_1 52.8836434474 62.615927985
100 | simpson_1 32.9291416157 5.29019601905
101 | simpson_1 41.4051061082 33.1126892915
102 | simpson_1 30.2919147933 1.15230198196
103 | simpson_1 37.6451237763 33.9215574513
104 | simpson_1 84.9970089944 97.7031353202
105 | simpson_1 56.6641126118 65.8990861195
106 | simpson_1 36.8220446576 13.4137085719
107 | simpson_1 35.2743113947 12.1660304542
108 | simpson_1 32.2554489511 5.52690352418
109 | simpson_1 36.9797980162 10.192580621
110 | simpson_1 46.2729422339 58.3243666633
111 | simpson_1 26.7819921561 9.57528865767
112 | simpson_1 52.473844867 61.1470483244
113 | simpson_1 50.0637803421 52.3931709543
114 | simpson_1 71.0066775336 90.987444483
115 | simpson_1 46.7681988706 58.0920989194
116 | simpson_1 46.7603725394 52.9512114954
117 | simpson_1 73.050688586 94.0099951388
118 | simpson_1 55.4634109881 71.9748830508
119 | simpson_1 54.8878396148 75.8558634406
120 | simpson_1 46.7175056637 45.3708200727
121 | simpson_1 58.3415929169 87.3669552245
122 | simpson_1 30.9406203488 3.68885464012
123 | simpson_1 43.8773877152 16.5994443217
124 | simpson_1 41.0650238931 41.8974884321
125 | simpson_1 47.3107900914 55.5072811034
126 | simpson_1 39.9409186214 19.1434218125
127 | simpson_1 41.89231521 23.7448047171
128 | simpson_1 39.445846226 31.9007765222
129 | simpson_1 55.7874243553 63.782837942
130 | simpson_1 32.1116334639 23.9826531817
131 | simpson_1 71.1990034259 97.4032423768
132 | simpson_1 34.1148246116 12.7431090357
133 | simpson_1 60.5866656947 43.6553175251
134 | simpson_1 23.7445872074 4.77513142137
135 | simpson_1 44.7348333109 27.9494448323
136 | simpson_1 47.1306506663 34.9064780376
137 | simpson_1 45.2032821055 79.0635740404
138 | simpson_1 55.2570171341 64.3341018649
139 | simpson_1 45.9529981256 10.2682205525
140 | simpson_1 43.2441938254 24.9094084083
141 | simpson_1 31.2984223513 11.7268672901
142 | simpson_1 59.4640995444 87.6827026135
143 | simpson_1 50.9438026581 41.6379135031
144 | simpson_1 31.7285047479 12.4903829997
145 | simpson_1 32.6256151336 25.1914341709
146 | simpson_1 33.0878368521 23.003823149
147 | simpson_1 49.3641894359 33.0434167997
148 | simpson_1 46.6737581663 48.60672486
149 | simpson_1 27.6611771454 9.76520419268
150 | simpson_1 71.3981547428 88.8044516258
151 | simpson_1 68.5627654306 92.6288756372
152 | simpson_1 64.8599638706 87.8120083903
153 | simpson_1 38.213199827 16.1693927462
154 | simpson_1 55.5827357129 54.9490853685
155 | simpson_1 58.4113312297 62.3288413495
156 | simpson_1 61.307161386 94.6561113313
157 | simpson_1 71.4795418906 90.7429785871
158 | simpson_1 55.0822017157 44.4810055496
159 | simpson_1 39.8934894552 27.3647048509
160 | simpson_1 26.1719216477 2.59869995461
161 | simpson_1 49.6977718332 58.4988236426
162 | simpson_1 28.6623387823 15.8117338356
163 | simpson_1 43.1064912036 13.796717432
164 | simpson_1 61.7024868621 75.1224890664
165 | simpson_1 62.8337035607 69.5484952316
166 | simpson_1 56.3679668225 58.9999823874
167 | simpson_1 58.9971750437 66.3263796115
168 | simpson_1 66.5274944321 90.5201714686
169 | simpson_1 29.9904583508 12.7489815693
170 | simpson_1 48.7209699208 53.0936303982
171 | simpson_1 40.7966378241 21.4984485901
172 | simpson_1 32.1245373531 9.16881861463
173 | simpson_1 20.8972821989 1.55672804415
174 | simpson_1 41.4522165411 37.0283675664
175 | simpson_1 41.8600084666 34.8624241638
176 | simpson_1 39.6850464928 15.4768603651
177 | simpson_1 38.6001587194 35.7542778685
178 | simpson_1 60.5559326454 63.0295031488
179 | simpson_1 47.5383959004 67.0709325903
180 | simpson_1 55.8142239505 78.5678237321
181 | simpson_1 36.9203337805 18.4859561884
182 | simpson_1 60.1863753971 77.7969936739
183 | simpson_1 30.2404507089 21.5324449299
184 | simpson_1 55.6109417288 54.5998659039
185 | simpson_1 56.2572985091 43.4290597477
186 | simpson_1 20.4729279912 10.3966047821
187 | simpson_1 81.7244622612 78.1146527464
188 | simpson_1 66.4013968042 87.8193348633
189 | simpson_1 30.3877997107 40.1062668898
190 | simpson_1 54.6982538508 61.9810042509
191 | simpson_1 44.9836952823 36.4807812355
192 | simpson_1 44.8570382418 77.053538836
193 | simpson_1 70.2253366178 90.149719683
194 | simpson_1 67.7787268413 82.4259175945
195 | simpson_1 46.2486979561 65.462639425
196 | simpson_1 54.1886032466 76.7160391033
197 | simpson_1 26.0473634346 4.55145937583
198 | simpson_1 34.8166771041 35.6123450364
199 | simpson_1 37.502923267 13.4293539656
200 | simpson_1 36.2540009944 20.0517872923
201 | simpson_1 61.0486173962 63.1521513872
202 | simpson_1 59.4209035713 50.0020296033
203 | simpson_1 28.9489153525 14.5935687693
204 | simpson_1 51.7159471933 67.3200907603
205 | simpson_1 35.1635061627 7.99358479475
206 | simpson_1 43.9946570646 41.9812706566
207 | simpson_1 53.4743082986 52.8182627068
208 | simpson_1 49.7734994064 51.020732155
209 | simpson_1 63.0720533077 66.5303891622
210 | simpson_1 52.5010444088 59.536338533
211 | simpson_1 32.763764429 31.4973414962
212 | simpson_1 59.9545110187 73.5826761062
213 | simpson_1 40.9912807052 64.7623760379
214 | simpson_1 44.703946573 18.925907375
215 | simpson_1 41.4328780706 51.0319769334
216 | simpson_1 77.471643704 91.8326445341
217 | simpson_1 66.6007450964 71.9602230601
218 | simpson_1 61.4140789033 75.3714524457
219 | simpson_1 64.2987934542 86.5370841427
220 | simpson_1 37.4395175003 15.7044434331
221 | simpson_1 51.8551019915 63.3036003053
222 | simpson_1 24.9335221421 3.46001244414
223 | simpson_1 54.6821344267 63.9153228262
224 | simpson_2 62.2434387845 70.6083992107
225 | simpson_2 52.3349883891 14.705772721
226 | simpson_2 56.3679472613 46.3955379223
227 | simpson_2 66.803945776 66.1748679006
228 | simpson_2 66.5360509146 89.2465806107
229 | simpson_2 62.3812860623 91.4525971096
230 | simpson_2 38.8538312261 6.76356023684
231 | simpson_2 39.406283311 63.0623946578
232 | simpson_2 60.8981909102 92.5623698523
233 | simpson_2 56.6229264798 45.7571594797
234 | simpson_2 29.8892499219 6.58005362491
235 | simpson_2 32.0738634721 14.1531733612
236 | simpson_2 41.8251847374 55.4824261842
237 | simpson_2 36.5054087766 10.1583095333
238 | simpson_2 53.1207576225 44.3026622909
239 | simpson_2 25.5507775105 20.7388200832
240 | simpson_2 71.8051997136 86.4814775815
241 | simpson_2 46.241269306 20.5221321867
242 | simpson_2 71.7811928334 61.1889632284
243 | simpson_2 32.3997881671 14.3716866939
244 | simpson_2 67.2542810388 65.6079688069
245 | simpson_2 73.1173865281 81.1790691518
246 | simpson_2 58.5481223323 38.8110033112
247 | simpson_2 44.1040888097 53.1190517597
248 | simpson_2 33.2811110226 12.0553165165
249 | simpson_2 32.6388495005 14.5171409112
250 | simpson_2 54.267778726 99.8395673578
251 | simpson_2 42.2532299599 24.9070402084
252 | simpson_2 34.7631479916 11.7823025614
253 | simpson_2 36.7126557379 30.1412965999
254 | simpson_2 74.2780204 59.1457798012
255 | simpson_2 45.8759868214 21.2935901672
256 | simpson_2 65.8825274299 67.4254917282
257 | simpson_2 59.4085715643 74.0718570333
258 | simpson_2 36.9961633817 30.0184640143
259 | simpson_2 76.360458386 89.4428072999
260 | simpson_2 29.7532455837 3.38317380619
261 | simpson_2 76.9137545243 93.5117462759
262 | simpson_2 55.6786939951 77.2130568796
263 | simpson_2 41.7722531422 25.1190637512
264 | simpson_2 27.4284354919 17.3015587512
265 | simpson_2 47.3907588332 55.0957073772
266 | simpson_2 52.744587949 44.724394731
267 | simpson_2 63.369799707 69.8765380012
268 | simpson_2 57.8921037446 43.4549078015
269 | simpson_2 51.4648195016 46.1656865287
270 | simpson_2 60.3103259212 93.7468247846
271 | simpson_2 55.4054060507 46.69509542
272 | simpson_2 37.1541581884 60.0937379901
273 | simpson_2 26.7244644531 4.42829464175
274 | simpson_2 35.6449082971 31.4393232129
275 | simpson_2 57.3638919209 75.9589794967
276 | simpson_2 66.9698602814 86.1463865097
277 | simpson_2 54.7999369653 78.2343750439
278 | simpson_2 64.7300366558 89.4095394979
279 | simpson_2 56.0674829356 42.1332743252
280 | simpson_2 37.8543879494 29.2860374154
281 | simpson_2 36.6090288878 30.5739213437
282 | simpson_2 49.943826149 48.5704114132
283 | simpson_2 54.986179506 42.7800379869
284 | simpson_2 49.3299344982 51.1400468911
285 | simpson_2 64.8049315703 68.025548052
286 | simpson_2 58.1189953269 74.7935860661
287 | simpson_2 47.8767910559 18.8551281024
288 | simpson_2 34.4825499887 12.2917200025
289 | simpson_2 62.2516201137 91.4087280245
290 | simpson_2 81.028199774 72.53857096
291 | simpson_2 38.0835688653 9.04370934353
292 | simpson_2 31.7523760116 14.1949435576
293 | simpson_2 66.6850466715 87.7892763952
294 | simpson_2 35.77453456 10.7387967406
295 | simpson_2 72.4479913643 81.6972689607
296 | simpson_2 35.4114695455 9.66314824078
297 | simpson_2 43.2933962176 23.7688888235
298 | simpson_2 37.5257019915 29.6828217583
299 | simpson_2 65.2802820152 68.0822569128
300 | simpson_2 69.9248804645 83.2387053847
301 | simpson_2 58.2316075851 74.7684144035
302 | simpson_2 42.4241820105 57.1447689952
303 | simpson_2 66.7097007553 86.2677202689
304 | simpson_2 46.766168213 50.922139871
305 | simpson_2 74.0248646709 79.0417735273
306 | simpson_2 27.2623316124 18.2963375756
307 | simpson_2 53.0600562461 44.7161667644
308 | simpson_2 48.006908225 49.5084048396
309 | simpson_2 59.0516319048 74.1156533681
310 | simpson_2 71.9780561091 82.8536317777
311 | simpson_2 42.4845265532 24.5057754935
312 | simpson_2 30.3456790514 16.2682633547
313 | simpson_2 41.1668213592 25.729167193
314 | simpson_2 49.9426346305 52.2716948372
315 | simpson_2 44.9644863501 22.1872086659
316 | simpson_2 26.373668624 20.6777941288
317 | simpson_2 59.7351278459 73.3419083703
318 | simpson_2 64.9617222145 88.8782400035
319 | simpson_2 64.8210465863 68.0382164226
320 | simpson_2 35.3645105444 10.9472193759
321 | simpson_2 60.4077132408 72.4841458308
322 | simpson_2 36.5491391031 8.20967528844
323 | simpson_2 35.6051194399 31.4946993312
324 | simpson_2 35.0363432907 5.03570481684
325 | simpson_2 38.7775178566 28.3606348292
326 | simpson_2 83.0185029285 92.741863979
327 | simpson_2 63.9842995247 68.833868945
328 | simpson_2 34.1981547589 12.275111337
329 | simpson_2 37.4760023503 9.66236878702
330 | simpson_2 36.3494739512 10.7070247734
331 | simpson_2 39.2723375859 7.39976821418
332 | simpson_2 46.6969098075 56.0438056164
333 | simpson_2 29.1646187186 16.7840088461
334 | simpson_2 47.9127737067 54.5698023947
335 | simpson_2 45.4824544815 53.3366442242
336 | simpson_2 66.9676215516 86.2386481302
337 | simpson_2 43.8869704996 57.1986090508
338 | simpson_2 43.1694293102 54.1161277453
339 | simpson_2 64.1009321306 88.8947407213
340 | simpson_2 59.6408587008 73.6158709307
341 | simpson_2 53.6970623489 79.3123095571
342 | simpson_2 47.9398878807 50.0060410973
343 | simpson_2 63.8407706096 89.702790829
344 | simpson_2 36.4220612141 7.68834687415
345 | simpson_2 36.6201372163 10.387724563
346 | simpson_2 34.4744559265 32.4207510166
347 | simpson_2 49.0643633082 52.4747542989
348 | simpson_2 34.1992764122 12.5228678511
349 | simpson_2 42.1192249761 24.9622382901
350 | simpson_2 38.7057897369 28.2735231633
351 | simpson_2 58.0006672129 74.8950434406
352 | simpson_2 28.2206940517 18.3509584725
353 | simpson_2 64.4982566115 93.1870322515
354 | simpson_2 34.6273673627 12.1240943805
355 | simpson_2 56.4940129018 44.834828781
356 | simpson_2 33.8762471538 6.63183650855
357 | simpson_2 41.689180565 24.607777977
358 | simpson_2 41.2597662041 25.8856913939
359 | simpson_2 54.3162121966 78.5865437913
360 | simpson_2 58.3661119474 74.5029967652
361 | simpson_2 40.8202472861 6.30691995856
362 | simpson_2 45.1544603893 21.9388078827
363 | simpson_2 33.7796284941 12.9367976004
364 | simpson_2 61.8715099267 91.5789804652
365 | simpson_2 53.1419405799 45.3335233244
366 | simpson_2 30.9396671813 15.2593928553
367 | simpson_2 23.6217983418 22.6232705414
368 | simpson_2 26.2020034342 20.8474598713
369 | simpson_2 43.6433755824 23.2971844825
370 | simpson_2 49.694458514 48.7661755776
371 | simpson_2 30.9778902072 16.076565687
372 | simpson_2 68.132161143 86.0675247797
373 | simpson_2 68.0408847674 85.3394571936
374 | simpson_2 65.645503436 87.2918504334
375 | simpson_2 32.8297271662 12.2826527638
376 | simpson_2 55.0539016141 47.5992683796
377 | simpson_2 64.1976318969 68.5994512813
378 | simpson_2 63.114878862 89.9721224683
379 | simpson_2 68.1117371151 85.0547042799
380 | simpson_2 56.6346969092 41.6697734259
381 | simpson_2 38.5517783761 28.5385311781
382 | simpson_2 31.7157984207 5.75024114931
383 | simpson_2 47.1255923939 54.2823884545
384 | simpson_2 29.2961379299 16.995636383
385 | simpson_2 40.0916962169 6.62374049947
386 | simpson_2 61.0990882885 71.7290159032
387 | simpson_2 62.8541038017 70.0174747914
388 | simpson_2 66.5038082378 66.6054813172
389 | simpson_2 59.2702645614 71.451220034
390 | simpson_2 66.1612742032 86.8117730528
391 | simpson_2 33.2828248518 12.6955341432
392 | simpson_2 46.1253077991 56.4945993755
393 | simpson_2 42.886621415 24.2543164086
394 | simpson_2 33.9021404949 12.1566055773
395 | simpson_2 24.9826180956 1.42501885326
396 | simpson_2 38.9023932674 28.21067596
397 | simpson_2 34.496824593 32.8011871091
398 | simpson_2 34.6663161324 10.939904154
399 | simpson_2 36.7065432625 29.8584757815
400 | simpson_2 66.6844639145 66.3458510045
401 | simpson_2 39.8472940631 63.0831101669
402 | simpson_2 55.0941567565 77.9901832982
403 | simpson_2 30.4659640738 15.9591937158
404 | simpson_2 56.4089386137 76.5555986682
405 | simpson_2 27.1546213358 19.9899026727
406 | simpson_2 49.5952065091 48.8744017207
407 | simpson_2 55.5458187327 45.5101513894
408 | simpson_2 26.7353376031 18.2035304507
409 | simpson_2 78.6013887465 74.6858848252
410 | simpson_2 66.4838645267 87.7185632764
411 | simpson_2 28.1120710962 38.9813662933
412 | simpson_2 61.7240923513 71.2439148942
413 | simpson_2 41.7645933866 25.3691805647
414 | simpson_2 52.9308124522 79.8249061771
415 | simpson_2 66.4351189589 87.7209447856
416 | simpson_2 69.0524097506 83.9176191042
417 | simpson_2 43.0183805425 59.5931729344
418 | simpson_2 54.2889249188 78.6587620461
419 | simpson_2 27.8589904323 12.0236587905
420 | simpson_2 32.4956587099 34.4073441852
421 | simpson_2 37.4710362421 9.50572654509
422 | simpson_2 32.4244054893 14.4566200432
423 | simpson_2 64.7657992136 68.2613206424
424 | simpson_2 55.6674244265 45.9138843376
425 | simpson_2 30.4627297098 16.3162541694
426 | simpson_2 55.1454432469 78.1747011309
427 | simpson_2 35.796089457 10.5820759202
428 | simpson_2 48.2714822998 48.9654753093
429 | simpson_2 52.1431140185 48.7253194827
430 | simpson_2 51.5472046729 48.9112066399
431 | simpson_2 62.3932801342 70.5487367136
432 | simpson_2 49.3238873867 53.2680744315
433 | simpson_2 32.0695524804 35.0866379214
434 | simpson_2 60.5641361712 72.2254343613
435 | simpson_2 41.8056895218 59.3661576595
436 | simpson_2 42.5648135375 22.8071798115
437 | simpson_2 47.2664897438 50.3662303248
438 | simpson_2 74.0728513578 86.0103251526
439 | simpson_2 62.5354642138 70.5124191205
440 | simpson_2 55.7409533387 77.1149926394
441 | simpson_2 65.4965254183 87.4509352511
442 | simpson_2 33.2002589803 13.7139556749
443 | simpson_2 62.8917369438 69.9894072351
444 | simpson_2 29.9903955019 4.13829337337
445 | simpson_2 64.1636791355 68.6116065767
446 |
--------------------------------------------------------------------------------
/inst/extdata/DatasaurusDozen-Wide.tsv:
--------------------------------------------------------------------------------
1 | away away bullseye bullseye circle circle dino dino dots dots h_lines h_lines high_lines high_lines slant_down slant_down slant_up slant_up star star v_lines v_lines wide_lines wide_lines x_shape x_shape
2 | x y x y x y x y x y x y x y x y x y x y x y x y x y
3 | 32.3311102266 61.411101248 51.2038911373 83.3397766053 55.9930301513 79.2772636977 55.3846 97.1795 51.1479167122 90.8674123313 53.366566866 90.2080300059 57.6132335477 83.9051707998 52.8720214902 97.3432226575 47.6952008891 95.2411869282 58.2136082599 91.881891513 50.4815081703 93.2227013657 65.8155400946 95.5883740582 38.3377571839 92.472719051
4 | 53.4214628807 26.1868803879 58.9744699018 85.499817612 50.0322537946 79.013071199 51.5385 96.0256 50.5171258092 89.1023945866 52.8019793617 90.0880645063 51.2743918205 82.8179829379 59.0141444945 93.5748748733 44.6099759113 93.075835032 58.1960536923 92.2149886482 50.2824056687 97.6099835723 65.6722651618 91.9334018119 35.7518707905 94.1167680276
5 | 63.92020226 30.8321939163 51.8720726696 85.8297376348 51.2884586593 82.4359398425 46.1538 94.4872 50.2074801993 85.4600473951 47.0541298828 90.458936026 50.7538984114 76.7541289533 56.3751090389 96.30514763 43.8563814822 94.0858717713 58.7182307185 90.310532087 50.1867033389 99.6946801425 39.002716451 92.26183816 32.7672179591 88.5182945794
6 | 70.2895057187 82.5336485877 48.1799307865 85.0451167372 51.1705368873 79.1652941091 42.8205 91.4103 50.0694819181 83.0576695262 42.4484337816 89.5077001153 37.0211840116 81.954469997 37.8391996844 94.359443503 41.5789293984 90.3035665387 57.27837287 89.9076067166 50.3269108629 90.0220534916 37.7953028026 93.5324553607 33.7296067755 88.622265789
7 | 34.1188302357 45.7345513203 41.6832004024 84.0179406019 44.3779145287 78.1646280036 40.7692 88.3333 50.5628463386 82.9378217764 42.7040363241 90.4426288607 42.8817550897 80.1847700514 39.8853734176 90.6346620817 49.1774185559 96.6105324538 58.082020494 92.0081450101 50.4562073315 89.9874101286 35.5139005857 89.5991901138 37.238249327 83.7249284144
8 | 67.6707164012 37.110947969 37.8904155015 82.5674929978 45.0102700721 77.8808631153 38.7179 84.8718 50.288527801 82.9752535659 32.3789386326 90.144142631 37.1557104777 84.9541114129 44.0774051326 84.1258533023 42.6522509813 90.5606397307 57.4894477748 88.0852855629 30.4648469308 82.0892320845 39.2194529062 83.5434818364 36.0271982243 82.0407806505
9 | 53.2591294055 97.4757710964 39.5489736947 80.812601774 48.559816719 78.7883706035 35.641 79.8718 25.5834750822 82.9148911324 32.5307027362 70.1573965085 38.7318581261 83.7893564281 31.4970254888 67.9125621568 30.1233318217 81.1442953304 28.088741319 63.5107944263 30.5015964737 82.3071263462 31.5882013862 77.0280524208 39.2392807768 79.2637238398
10 | 63.5149808671 25.1000785788 39.6495738769 82.6645338713 42.1422682922 76.8806345544 33.0769 77.5641 25.4835833896 82.929084979 33.3652644305 70.4593354392 31.0005254108 82.5794805962 25.9525965456 73.0331803541 31.915519986 79.7904134869 28.0854682136 63.5901969481 30.489569227 77.7298801366 32.6577782482 80.1138612983 39.7845249391 82.2605658962
11 | 67.9805388133 80.9571652197 34.7505970472 80.0110909897 41.0269715735 76.4095884613 28.9744 74.4872 25.4435257049 82.8742004973 32.6560991775 70.0510704992 25.9854996226 74.3493875478 36.4347239148 62.2940454639 27.8877193574 75.4455759934 28.087273053 63.1232828116 30.45024833 79.8348944011 31.6415992679 77.6108331874 35.1660293896 84.1564919839
12 | 67.3724659005 29.720400203 27.560835291 72.8478255927 34.5753090115 72.7248411845 26.1538 71.4103 25.5651134237 82.9240977704 22.9550932697 70.4268951523 23.7145662909 75.0980490792 24.997482691 75.4415616626 27.5482344526 75.1647590544 27.5780252176 62.8210386566 30.5183947985 68.2525829388 30.9871426099 63.9440280336 40.622115916 78.5421042089
13 | 15.5607495229 80.0656402858 24.6355399754 71.6107148256 31.1686007236 69.2454213193 23.0769 66.4103 25.9288442731 82.8211841087 27.1498436318 70.2108058428 23.077319507 71.7205396747 32.2462751352 70.1105868383 20.2097781637 67.5166420988 27.7799191139 63.518147517 30.5116612138 66.0937181831 27.4396322054 65.7444629564 39.181907086 79.8190371976
14 | 71.7907676942 71.0654666627 20.9594648125 66.0414983826 32.6442540714 70.7325550334 22.3077 61.7949 27.5514782612 51.4873865306 26.1669092779 70.5003151212 24.9391368744 72.5802858084 18.1094722949 53.7081103324 24.4434528292 54.4736551228 28.5889998149 63.0240805653 30.4980777147 62.3849850338 30.5783699449 65.5219454667 42.4308889944 75.1336346406
15 | 70.2425464362 24.1095975542 20.6891490538 62.7213052064 26.6666456539 62.9809712052 22.3077 57.1795 27.5304663693 51.4148465629 26.3314570795 50.494556525 17.8934987136 71.1096873431 21.7960992263 49.4995295248 24.6308301331 53.3957388998 28.7391414969 62.7208638859 30.6202277519 60.8600821544 28.809401637 59.6210044666 43.0812558617 75.3467016413
16 | 64.9374355444 81.5542049945 19.2882047369 62.0630593582 26.4592623274 62.6346733709 23.3333 52.9487 27.0955703605 52.0767994399 22.0037091415 50.4994401238 23.6730818572 64.8708391385 24.150491069 47.1885335266 21.0379688969 49.829299645 27.0246032407 62.9018588649 30.4921854231 55.8789168923 27.9395185786 50.9850621313 44.3607194344 70.4742070546
17 | 62.2135245453 21.4758389969 20.0245005746 61.3426238695 25.5380076465 60.6302361093 25.8974 51.0256 27.4392496133 51.7120790527 23.2847479782 50.4743528321 23.7490719056 63.557171895 28.6031956015 44.2237227 27.106242932 54.7195531488 28.8013366963 63.389040388 30.474634333 52.3221596388 33.8499497887 46.2844744465 44.3247788435 71.0459044019
18 | 67.2694004772 18.7089683725 35.4695229971 43.1158849517 26.3207111933 62.3962811186 29.4872 51.0256 27.8782642594 50.70890793 27.6340383923 50.5036668574 32.2151786343 65.6009580191 20.9319996761 51.6462354868 28.0896176553 60.512212549 27.186463838 63.5587296478 30.500998079 48.0696996767 32.628463049 54.0637204929 47.552160202 66.4604037217
19 | 40.5701970446 79.3729634752 36.8943276507 47.7065559687 26.1633874648 62.0268148985 32.8205 51.0256 27.3388689181 51.6530467544 32.0371080007 50.5000661229 29.4368412489 67.5545281141 35.4355325251 34.9610381566 31.1357349152 61.4319127116 29.2851466002 63.3836058254 30.4944213623 45.7734755346 32.4386500903 49.9030194916 48.6649246215 64.9610049438
20 | 74.7411813341 21.1016372041 39.0555497751 55.5469737131 25.2137904611 60.2733986018 35.3846 51.4103 27.6784029741 51.1819891691 29.3365106528 50.461893969 40.0500951983 71.8890335708 44.3773828236 57.6847369215 37.700837521 68.4184052804 39.4029453026 51.1508571967 30.4995445502 49.3820997506 35.8382920833 53.3514883396 46.280631958 68.0284231525
21 | 71.7683189223 20.0110618423 46.9570801494 65.2404073935 26.8595295604 63.1418346727 40.2564 51.4103 52.6356576791 51.4185522584 40.816953133 50.4877601957 37.5747950188 69.9887444412 46.313692406 55.6855917703 43.3926884016 43.5975940692 28.8113284396 61.3578540576 50.144392979 47.0142836417 37.1420429198 49.7419879519 50.5632444849 62.6238279659
22 | 76.1669198143 75.9361704048 37.3104527352 45.2587508999 31.7606691716 69.7976553936 44.1026 52.9487 52.0252141055 52.1230110467 42.7390751173 50.483155992 49.3104686263 67.1687603206 46.3860739231 51.0021645381 51.2623974761 49.6665051258 34.3039579069 56.5421259093 49.9128985877 55.5878389121 34.6445467746 54.4441077764 52.6309642318 59.9639357915
23 | 65.6236574431 15.5828033531 40.0096720019 60.9865825077 39.7932905744 75.8079642168 46.6667 54.1026 52.8811647904 50.6215547554 51.8678937691 50.4932732621 47.3480185524 72.5916115408 42.4954400876 56.9036815315 43.2867129203 43.0568603208 29.6027609801 60.157346722 50.3374274859 57.9553142818 35.675404696 49.6256433471 54.6362064446 57.4938424367
24 | 50.8506336394 13.9876016304 48.0143866846 65.7128195934 45.6174391854 78.1199702277 50.0 55.2564 52.9526073133 50.0747390118 43.3710018924 50.5008373234 50.157414434 71.1617258246 44.3005150328 58.1329592781 55.9059162338 54.2526725342 49.1161568603 63.6600006211 50.4189791992 60.5249117346 64.99458547 49.4621728312 51.346027139 61.6005530364
25 | 33.0240700249 24.4678303872 53.7037759268 66.3894820363 53.7714606827 79.3029316435 53.0769 55.641 52.5205524936 51.5024421035 53.0427983006 50.4875038691 58.2100082697 68.0445380719 46.9882833458 55.4206367313 50.198958949 52.2250295948 39.6175458263 62.9251879574 50.2052589714 57.9242171676 66.1291498342 61.6437178853 57.134855354 53.8779658045
26 | 39.7063261674 84.2752871038 63.0674998921 64.0350004581 56.4514336733 79.2471070208 56.6667 56.0256 52.3428220582 51.8619520908 56.6189102967 50.5033740178 56.6089076561 70.4089460888 52.4215231623 47.867005488 55.761587372 54.0305172396 43.23308466 63.1652187223 50.4353151633 56.4393224734 65.790651882 55.9453737171 54.1712415737 58.0598078952
27 | 45.5964849542 9.76334884943 62.0480325076 63.8458632494 66.0937201989 77.0178182606 59.2308 57.9487 51.9275902141 52.2577906065 70.568289819 50.4962361243 52.8338205303 72.5518862725 64.090998189 68.6509850107 58.3231396505 60.0310591646 64.8927879422 65.8141767574 69.5057889042 59.2849248279 67.5017806138 60.8502274659 50.9423823071 62.0973939351
28 | 42.9680469104 17.9454583961 59.8399667124 64.4767644437 56.9258394194 79.2063186226 61.2821 62.1795 52.7137744894 51.1979443188 67.870887292 70.0680261345 61.8185854576 76.1128240228 63.0168717563 68.2252589114 70.171457528 70.2822212385 62.4901493154 74.5842896072 69.5340709833 64.8929773346 67.6295142176 61.4291060701 66.512924456 59.0712818478
29 | 52.4944067819 16.0511142003 55.1609418175 65.2373081694 58.9882538467 78.9172589554 61.5385 66.4103 50.4438027888 82.9418288173 58.8215465891 70.4557817483 61.7276334143 77.0692384058 67.3025779226 64.4134627173 60.600276471 59.7533088802 68.9880844294 63.232147305 69.5101069302 61.3296244282 63.9100640599 62.9723349305 64.3979095023 56.1748754008
30 | 46.0822757831 23.1104578154 61.2797865792 65.766402504 57.9022660533 79.0808678187 61.7949 69.1026 50.2166950326 83.7523429676 60.1869278445 70.4835512458 62.1922520815 76.1568192103 67.2259568904 62.4764105301 63.7602750188 61.1856411696 62.1056186306 75.9908707599 69.5263228876 56.9952791254 66.5493579687 67.7255886599 68.686593294 62.2373439902
31 | 74.2477082092 20.314187812 60.8349175348 64.6037697063 64.8128669568 77.4869389235 57.4359 55.2564 52.1841801076 51.9752506714 59.4355174849 50.4206326073 58.1187658587 73.1189614684 50.309988715 47.2678818553 54.3894952619 53.811901225 32.4618467439 62.8819029189 49.9472399619 48.2295767261 64.0515417112 48.8200939835 65.0277937057 57.0962573525
32 | 64.5682641863 83.6396338956 61.5205906458 64.7918550418 60.3497935166 78.7294458673 54.8718 49.8718 52.7920973459 51.0733956509 49.5858434795 50.4349813825 58.2704123843 35.5968950425 45.4126389249 53.8707976895 55.2412969947 52.5935746267 41.3272006535 49.0702512739 50.0631041291 58.085037556 68.1932895833 46.5435408096 53.3045031712 40.883844549
33 | 74.0216939058 76.1282745076 36.916543863 41.0952474383 48.890555756 16.8065435154 52.5641 46.0256 52.5897198565 51.338090196 41.7797417848 50.4706422808 59.7665303129 32.6212516009 54.0206071815 47.2698972057 49.0701267502 48.8969446811 44.0071499323 46.4496737846 50.489902373 39.2054119682 65.2783891952 44.8203529292 52.9451780881 40.3846256942
34 | 62.3911805626 5.62307076073 38.5021996714 41.5671556174 47.549506348 17.0714045245 48.2051 38.3333 52.0288486671 52.1768375002 46.1276863394 30.4494107792 52.5355347207 27.1741229419 49.8420222483 50.5765522936 46.0181190216 46.2577233718 44.0740606888 34.5532038906 49.6888638379 42.018514414 34.9976613883 28.6329939351 45.225738199 30.5552259226
35 | 74.189036683 68.1335832223 48.6643707344 30.6806668519 30.8894308257 26.3290372348 49.4872 42.1795 52.729246581 51.2017650475 38.0337837705 50.4908995189 50.8925215809 29.1452839382 50.7132995657 48.7722867825 44.7595874356 41.9746066134 44.0013152386 33.9042073544 50.3334811097 43.588671479 33.9237661692 53.5586885227 50.8433046202 37.7446280981
36 | 28.2367819396 56.1395964513 50.2852524042 30.3379221051 28.972835724 29.0504689185 51.0256 44.1026 52.8843132864 50.4414354501 44.5468412844 50.4159133758 49.9675511775 28.4602033343 55.0455549106 45.9862727459 51.6006241332 50.0324668853 45.0063004454 38.2990195507 50.4467514196 57.2305889423 66.0044543688 52.6846691452 49.6592939398 36.273442735
37 | 75.7719387944 69.8292300322 42.276332666 34.5276361236 35.1613607523 22.7868496473 45.3846 36.4103 52.5093008862 51.4162051508 46.2381175975 30.4956129408 51.3478832298 27.3642602259 37.5437012597 32.8840244657 36.4658820182 35.5241876075 44.4438406096 36.0190833012 50.4209091963 43.3479568967 37.0232562464 32.1184816794 47.1427889348 32.0250641734
38 | 75.8552294691 62.5170442862 54.0317756204 29.6723483149 45.8703691685 17.4893933655 42.8205 32.5641 50.8626843321 17.1456310914 49.7397453317 30.4727248868 37.5551162883 24.5376638386 39.7958978066 28.4432191156 33.3947987327 35.0168013145 42.1787133986 26.492119482 50.3740520508 32.9182406167 34.6982700852 36.4753541349 41.2700565259 21.7218171465
39 | 65.9708570175 72.7448559954 37.3293552552 39.6020423074 32.8314206076 24.7975381459 38.7179 31.4103 50.8914922458 17.1413237277 39.1102518936 30.4786951789 39.1995941778 23.6804956588 28.5233910215 39.7966662481 37.5800715749 38.8315722007 44.0445656189 35.6622382764 30.4768299051 39.4246055913 34.8634441715 30.9392745218 47.1301271555 31.3099029222
40 | 21.7780404779 6.61662530728 41.389522551 37.2960562328 39.4855747899 20.0330500489 35.1282 30.2564 25.8551275976 17.0819086886 39.1428377913 30.7928559394 36.3827221955 25.2380052325 31.3996460012 39.2652632229 36.619722059 36.8114141094 41.6404540171 27.0930954213 30.5034743497 38.3485561381 31.0900650789 32.3837547196 40.9159715783 23.5415923929
41 | 67.7597962473 72.4212015285 40.0746666572 34.6236852027 33.4461829314 24.1906434075 32.5641 32.1795 26.0256445518 16.9250135319 34.6254702671 30.4997410297 41.1006943822 26.5526132161 39.2415652162 33.3614166846 36.1634664356 33.819314199 41.9383300069 24.9915229793 30.5048349283 28.7714879939 34.9213061465 35.4184380529 38.6601639737 21.6895496369
42 | 78.6171953363 52.5752573142 35.3496806211 47.1410731332 21.8635812756 46.0525933457 30.0 36.7949 27.8931727187 50.6619634101 34.7542074707 30.4958650002 28.2178118248 28.2802924847 27.7140565712 42.2500516253 33.1677570349 31.2477411672 44.0539275103 33.5563924949 30.4622184647 32.7504720275 30.343361183 32.5245631742 42.6125508262 24.195053774
43 | 68.5077081898 15.4569189652 34.7637004189 47.6247999245 25.1658708449 35.7666139539 33.5897 41.4103 27.6399679354 51.3990974838 36.7537002386 50.5293043035 33.7970720433 28.6997507433 32.9607035213 35.8231112903 42.6449829318 40.1543216386 39.2067193308 51.5337156971 30.491302622 43.5613740753 35.4833288685 44.4916349303 41.2090395008 24.1287091891
44 | 74.8850211598 25.4166063231 37.0266294472 44.4622930512 22.9594789762 51.2877067934 36.6667 45.641 27.892658895 50.7952815163 37.0193512929 50.4926666972 43.9193873055 27.7978445882 35.4047362397 31.9391621952 47.2250252695 44.5756466185 28.7044492315 61.7775254006 30.449653838 44.9951230008 33.2349104271 38.502483721 50.6492211499 37.4837907435
45 | 66.4549036599 19.8366286542 36.4555695327 40.791843032 25.5860552415 60.8465833585 38.2051 49.1026 52.7977329399 50.6860370901 41.4171152753 50.4697734181 44.4164011084 28.9476923345 51.6422264225 50.8383406788 48.3923630032 50.3315285645 31.7086628996 58.837754374 30.4859942157 47.3479464653 35.4399436182 47.7975176939 52.1319019406 39.3646020815
46 | 77.3178020985 48.3983464352 35.5376642131 48.7293868661 26.3143100672 33.2971681038 29.7436 36.0256 27.5806388053 51.5247612607 22.8171074784 30.4360403387 28.0376027706 26.8038243613 34.207620843 33.5938054385 27.2451932001 29.8195074488 42.8117114739 30.0204484197 30.5020767935 36.4412129198 33.8735095227 37.056028453 39.7972712705 16.083549649
47 | 58.9124603193 75.6677562173 20.4089478892 32.2030304205 33.037301251 24.5644624921 29.7436 32.1795 26.4913985349 17.4053909738 34.800701463 30.4979313851 31.6895761296 26.6664002089 36.5234892198 35.6710483891 30.4043143388 29.0795399241 43.300614891 31.5264261979 30.4780588886 28.020580489 28.5641377966 34.6263997171 43.5498814807 24.3072109395
48 | 57.617447817 8.19480060319 23.4957104659 25.3224681542 36.4688894772 21.8761144725 30.0 29.1026 25.9853178159 17.203722132 27.8918897953 30.4849702595 27.2796128523 19.2572809685 28.4192021281 21.3157482481 30.0807992865 27.5880255173 40.3986329069 16.3470083822 30.5011608787 38.3141385582 31.3195486706 31.6639905316 36.7146633371 17.3818098572
49 | 76.0882257967 59.6799300235 29.5575433634 21.3647774591 26.5135531009 32.9187498178 32.0513 26.7949 26.2014192753 17.0938239128 32.8706391587 30.5023417488 31.2218783581 26.4408557812 26.1604969417 23.0422314726 33.9806339675 35.0330581489 40.4356915763 20.2326706762 30.5047730174 26.4166256707 30.796174379 23.5190343602 37.2246101278 17.9800644828
50 | 57.4660505497 1.50441817488 33.0082339121 15.9850714584 36.0270912125 22.1954385395 35.8974 25.2564 25.8575694746 17.113842659 37.7940494081 30.4926383364 33.5458051034 20.0807081014 40.435327397 27.6400711421 34.2506117649 34.4415865654 40.9365466658 16.9130048364 30.509115326 22.8255471196 34.2333554347 22.4959116015 40.5124478537 22.9622145725
51 | 79.4283834934 45.2107942872 53.9803991821 29.3509867092 42.6810404129 18.5425361977 41.0256 25.2564 50.7046843629 17.0237445436 35.6673163042 30.522035054 39.7363306065 23.4948069772 44.544955314 27.3622426221 51.1411835714 20.6183237784 39.6615736653 15.609355577 50.1156321728 16.6940065479 36.6307877065 31.4768312621 40.2220627884 20.6146217044
52 | 76.3565221496 10.4182411281 52.2343086004 29.7116729865 45.0410771273 17.7345177303 44.1026 25.641 50.8119753465 17.1149252621 48.4422995026 30.5017227753 42.8418426525 20.3339004396 40.1237272008 30.0731619402 49.899592066 19.5640835356 40.899259175 20.7985289466 50.4483013392 21.6402564599 34.5486191018 26.1110878654 44.1249612057 23.3662452858
53 | 64.4050752632 78.5841760758 59.5030766063 30.6696739448 47.3524164557 17.1347454264 47.1795 28.718 50.5648455577 17.0777773216 58.6693732631 30.5068378948 47.0937298879 26.9934706312 42.1848064503 28.5736747331 55.5898773424 26.2992451143 41.9686168283 26.4970725985 50.17317743 29.177864393 37.5196356 29.2676058936 42.3462616039 24.5583269437
54 | 40.6350418091 73.3947503698 41.1637810689 34.3157582514 53.8461940322 16.3873180961 49.4872 31.4103 50.9393039127 16.981021883 47.9169554375 30.4867257545 51.4536583539 26.0229417521 40.0026592892 27.4875100027 55.4820563581 22.8274662445 40.3834058238 21.3912255247 49.9227419194 38.4404729124 62.4256973267 34.0442062707 44.1890843708 28.772625473
55 | 43.9498645857 75.9587156671 48.9930401201 32.0303588363 55.1296393835 16.3532468711 51.5385 34.8718 50.4588548392 17.0385789686 51.8941663939 30.494755684 49.3677068167 22.005580703 57.1252310509 42.7390191388 63.5729393821 32.9386176053 56.5381264538 32.4442454697 50.3112993746 26.8604882737 64.320383794 31.7856294846 45.8142453101 31.056979672
56 | 30.9962205791 71.694404938 59.2692803248 29.6407017654 52.1881199617 16.4182174652 53.5897 37.5641 52.9013640729 50.6905627231 51.7490891643 30.4729933399 48.2534809736 29.2708555331 60.375744968 41.3564579961 59.0250770848 28.3220858801 52.9706912828 29.0401966941 50.3994096114 38.9638389234 65.4455325117 43.2734991936 46.6431192691 31.4072190618
57 | 68.2307689907 80.8725016628 45.4691770035 33.8311927323 58.6726630845 16.6633724322 55.1282 40.641 52.6849534438 51.2944692191 58.2465530013 50.4428744949 61.0029597643 30.0153144324 55.1058961252 46.1490510561 62.4237785929 33.4865952868 54.6209525885 30.3445244537 50.3373626448 40.913386144 64.3256315887 41.6159763773 52.1898883047 39.3677964938
58 | 72.0463894612 12.9180067349 62.6912665406 30.2903738312 82.1443116037 33.1952218669 56.6667 42.1795 52.500088943 51.594356165 57.3106968674 50.4825132895 60.8065608049 27.8683134861 61.7372710245 38.5848440052 47.849907703 48.556624645 65.0990443941 27.2415575588 50.2023180965 47.2129480045 65.264338195 35.7175447772 51.1003173587 38.095699984
59 | 46.5927679682 84.9723827774 73.4286708654 48.5778551303 75.6865711383 24.7415103908 59.2308 44.4872 51.8356372562 52.3357655339 67.9680481127 50.4521589097 59.0674270249 26.7882840217 55.7412443246 46.6535769763 52.2685616825 52.8052401961 63.0559909076 29.7090956748 50.2749326091 49.6234993439 66.388704175 38.8447443366 65.4008341477 42.6140320392
60 | 49.2572183396 81.8814032306 70.846426107 52.282253331 85.344964503 52.886419866 62.3077 46.0256 76.9954121013 52.0455286534 65.9493192681 50.494240794 61.4146337175 31.0393750583 58.2964084158 41.5831977346 68.8510215758 39.573434273 70.9601362323 41.2595012867 69.4943803061 52.6124107059 68.1914228192 45.1694864796 64.8520398267 43.1337348404
61 | 42.7817612539 12.9911884302 71.5390198495 45.5218061588 83.8446535127 58.6160602305 64.8718 46.7949 77.310600475 51.7467300374 55.7470928102 50.4789748003 68.9343694692 31.6198930866 57.0425482213 42.418757739 65.6763960251 35.1093154301 69.8958192404 43.4537592655 69.5193397556 47.384533707 68.5406624515 48.4385263389 63.4038060118 44.847493688
62 | 65.475952195 14.2745856444 67.6208658884 38.0065584658 85.66476066 45.5427527692 67.9487 47.9487 77.9260443352 50.3186604237 68.4030100436 50.4986272318 63.0652438592 34.2357465852 76.7756112073 55.2545987009 77.7468851148 47.3718241139 70.5958928563 41.9647438672 69.5291826079 57.8412666804 67.6614312657 51.0685845873 65.3715488709 42.6959713164
63 | 71.9650826544 17.7102359443 72.4709525633 51.1221348241 77.931004934 68.6900618808 70.5128 53.718 77.2543883433 51.4618248152 76.696465628 50.4938305609 72.2725228706 67.6444437851 71.8870772602 59.2669926152 80.352934115 47.8002988852 69.6470214273 44.044445022 69.495755496 58.785073162 68.6755160534 50.465234811 61.9080397046 53.1903520694
64 | 32.1464623358 43.4817094425 64.8122375621 62.8109155873 73.0318330209 73.12057473 71.5385 60.641 76.2431578028 52.1236898503 67.2148371159 70.2600284356 75.3598819664 75.4216145799 73.7883730663 58.6208121164 60.3375864858 63.0349593272 77.392982494 63.3714590552 69.199057706 60.4189573202 69.0817099788 55.4740530987 71.8266529973 65.6862303604
65 | 31.8384976954 71.8121653901 60.8536798727 65.4991470327 70.1028044999 75.6832068542 71.5385 64.4872 77.0844843669 51.9671367003 72.3020057291 70.2204373812 72.8336258709 72.1146938095 75.1396847343 54.2445521781 61.6587233282 64.1000234779 64.4007871926 67.4487184472 69.5510914402 58.4010982686 69.048716493 66.3660457477 72.6546231621 66.8782776113
66 | 31.0052582572 40.682503007 67.7894961571 61.3637015467 57.1446946889 79.1941025922 69.4872 69.4872 75.2280531954 82.9856620201 66.7632573944 70.4738617113 70.8104148392 79.3504618327 64.5963189058 65.952512925 71.5450389858 72.657716331 63.8689598271 70.2137388333 69.5066843151 68.0844667893 67.3082233775 71.5902965807 76.8885781632 72.1654720777
67 | 80.4708943189 49.5021483467 41.6095572691 83.8486865559 46.9624619942 78.6665589963 46.9231 79.8718 50.6583547714 83.1144793358 51.6803004439 89.9970275485 45.8019347617 81.6582677456 46.9095386323 85.6022611586 49.0409566406 77.3625832678 56.5944213157 86.9270062202 50.4441175504 75.0132995059 38.714899408 76.3969778172 43.7446196844 71.2679610751
68 | 71.9641671122 41.8742826668 53.0030253202 84.6747986012 50.5649338128 79.0772985529 48.2051 84.1026 50.2033658114 82.9826568621 53.0965573571 89.540243712 45.835020171 82.7425919919 46.9051031994 81.5656424136 51.8868880222 80.1136076892 56.5313372853 87.4998110713 50.4672293846 90.281464505 35.5480948795 89.3049758407 39.0542484428 83.1190207043
69 | 78.0794214417 93.1333167652 54.7141710591 84.0431280734 53.7196765696 79.306936167 50.0 85.2564 50.9295476993 82.8460411252 42.2422929389 89.7085785936 40.0788064496 80.2471852579 49.8069877356 82.085025592 57.968981435 85.3560457326 59.6521583697 87.8094615921 50.210881979 80.9417717084 36.7106729424 86.0749670003 39.9316746322 79.9391880033
70 | 41.6775957748 30.2012640846 44.2916687157 82.9094412144 54.2002323226 79.3250023354 53.0769 85.2564 50.1786718465 83.1846223323 56.2338756577 89.635308157 51.9829247003 82.2043834675 48.8632418189 83.1583574877 54.855664646 83.7833976656 56.6365087005 85.637495556 50.205406955 90.6405359009 64.9126624396 87.6457960566 39.762826107 76.4059674459
71 | 65.953595185 31.1474060835 49.1917219555 85.8762291224 47.875198343 78.6758534295 55.3846 86.0256 50.422698058 82.9099014671 54.6809865825 89.9645994589 57.337906053 84.9995188696 66.7481899024 84.0048341677 54.1331954613 83.7939960824 58.6722880025 90.077160307 50.4382906648 92.3547602661 66.0641357377 89.2086685815 41.323383287 80.2118685969
72 | 62.9344593731 31.9163906992 53.1013817819 84.5476586881 51.4734585149 79.1598669963 56.6667 86.0256 50.4642248341 82.9353284131 57.9026866088 89.6184017294 62.3362327624 83.2465678988 62.3597662841 90.2436599196 51.3088252568 80.1363911553 58.2216127264 90.4110187715 50.3735188462 82.2192057218 64.9359294757 87.0721381174 41.7873232275 83.9880779935
73 | 64.3737979844 28.8625834061 51.599848153 84.8198214898 52.7512222162 79.2936599344 56.1538 82.9487 50.4492703306 83.9699203811 51.8202625467 89.8341303987 58.5059100905 81.7455863409 47.3748964954 83.4715555182 61.1203943844 88.7040529069 57.9146644768 89.9538027677 50.253683689 81.7438287242 67.0265507063 76.2225153324 39.7556490651 79.6570966361
74 | 72.5093283599 39.5401302526 54.3797219484 84.2403555494 48.5622230047 78.7823835275 53.8462 80.641 49.9283802752 82.9936654888 56.8283953362 89.5836647251 56.2479351377 83.513949493 47.4464667165 82.622124014 55.5638650304 85.8103751441 55.3155090581 80.2518606944 50.2504708592 71.9513852104 65.3140322257 77.9387440331 40.7498793985 77.204657286
75 | 30.0522898741 96.6175423534 46.4807681047 83.518211666 53.0812416908 79.2972507654 51.2821 78.718 50.4880136436 83.0995191232 58.2722785867 69.9002729578 55.4065208295 80.2666719669 53.385280634 78.8711362558 55.044123361 83.5414106324 54.5757285877 77.5362884724 50.0870583609 73.9518736268 64.2952177764 84.1258572133 43.8568984983 77.6098436482
76 | 28.0033242354 46.6721919544 53.174656268 84.2605679876 56.475383374 79.1678400979 50.0 78.718 49.9649053793 83.7083177013 51.8281274487 70.3526492053 53.2839688423 84.2635992213 49.4527077733 79.9306028004 50.4441853247 78.1958883115 54.4130936504 78.2290865878 50.2310718829 80.6473870602 38.7980121423 74.6106304299 42.3678224956 73.6382718294
77 | 75.4012268619 88.6390766207 45.272002941 85.2370794195 49.570911405 79.0381238831 47.9487 77.5641 50.7521082559 82.9019500961 44.8499842618 70.3952029719 44.6767615455 80.2382855483 54.8026825363 75.3639849893 43.8277089981 71.0470522123 55.0745059041 79.8175464166 50.2077411201 73.1145035177 34.6757573144 79.6375987743 39.4629598364 78.459973898
78 | 38.9800154218 87.322160691 36.03340215 53.371687755 37.6277032991 74.5575043418 29.7436 59.8718 27.4224292143 51.4388762325 24.2703823928 50.4855676918 30.0112642472 68.1467563743 37.0882451339 60.857227495 37.7914323802 66.8546410275 29.4329605156 60.8017765444 30.4995061735 53.6125276703 30.7192619427 58.812060082 44.5173339492 70.3693498252
79 | 65.2199135479 84.6829549336 28.2711941653 72.840231257 32.2637000863 70.3166389012 29.7436 62.1795 27.6740833991 51.3041121452 34.7424714403 70.3399348879 29.7452539206 74.4045268347 32.3759619238 68.5108204552 29.292783111 59.79199693 29.4226860665 63.0684648229 30.5203612407 65.1004090686 34.1051509268 64.1291972267 41.6360929963 76.2492229205
80 | 73.0539899616 29.3808085571 25.0548060847 71.5485979221 32.542380336 70.7024172063 31.2821 62.5641 27.5373953151 51.5936540762 37.7993149267 70.4695358763 37.3099483549 72.5861552003 37.4770138847 63.7886855744 32.1920969515 60.2006509147 29.0056141576 63.3907513334 30.4549558873 63.5017787814 33.4233718511 67.0957433613 45.4229321817 69.0955016709
81 | 34.3983616372 59.5444469033 64.7588870014 82.3152236405 52.8250171923 85.5781338795 57.9487 99.4872 52.2633473764 94.2493278274 49.7869410649 89.6580469945 61.1359469093 82.5375693646 52.4066488967 96.4254150057 51.4339355233 99.2568672885 58.4618385916 90.2653263904 50.4164772292 97.2696919618 66.3138096741 98.9310270371 42.0028562742 97.8376147235
82 | 43.4904501336 40.782542065 63.1445274767 85.2366963264 58.5282895407 78.9787042541 61.7949 99.1026 51.7372816586 92.9791175339 59.751497414 89.7319325216 61.7206191907 85.7056934492 50.2970432655 99.6441791736 67.4641398118 95.999963905 57.997804739 92.1599086113 69.5250693831 93.5980502089 65.3096314498 98.1651568396 76.1056290282 95.3049805754
83 | 55.138737967 30.7257603575 50.4246786898 85.1747475891 56.265834263 79.2529394854 64.8718 97.5641 75.8709636929 88.3864417377 64.7747992444 90.132316736 63.6093798555 83.3600288362 61.5633243835 89.8641388605 65.1507052757 92.5026337368 57.5494740761 90.7489065581 69.5202566002 97.1938760167 65.7140760682 99.2837639519 79.2025626772 92.4072156264
84 | 43.6843934333 32.8230098696 70.6449962629 82.4309187567 57.0758924193 79.1939225382 68.4615 94.1026 75.2443262052 83.9034973788 70.8444476004 89.9242090159 70.7237162322 87.1522075165 61.0865603919 89.2243556475 65.5834276962 93.5170609365 59.5299284566 88.3272741451 69.4989700668 92.1204899292 67.5934531877 90.9519098246 84.8482440854 95.4248045304
85 | 35.9036097344 91.1118630801 63.1490490834 83.9468553485 54.2564023808 79.3138648504 70.7692 91.0256 75.1982952889 83.4623033365 70.6059455116 90.042061963 75.0063926418 82.4258351563 59.2364904011 91.4811005766 69.2889731377 99.5795911254 58.2493910631 92.1296814778 69.5286156637 91.6220882409 66.3880173202 89.2812304744 81.5644753207 83.7929072262
86 | 45.3780188805 29.1692166544 62.8240245172 84.9661859507 62.6856712475 78.1747432719 72.0513 86.4103 75.7010415321 82.9194588559 78.6424883907 89.5512032307 75.0925497814 83.4373907092 66.1540050863 84.1119370252 81.2694405511 80.635944933 58.0245140126 91.6944211685 69.4997669273 84.47968329 67.8061881135 91.6881773501 85.4461864009 83.0782938448
87 | 39.7774828713 43.75581895 70.236869515 82.1711510621 68.0856058616 76.1123175001 73.8462 83.3333 75.4793396586 82.8840513891 70.810692254 89.5926540118 70.3279291834 82.0293546968 67.2313347767 85.055640808 78.5757448361 76.8157030942 58.3821244904 90.5534760692 69.5038013697 81.8154056166 70.9626103129 86.5181213517 80.3124913784 76.5162389518
88 | 38.6644611569 33.3172384774 70.0427352449 80.3850213547 65.1181219632 77.3991884543 75.1282 79.1026 75.1945668739 82.9321157846 66.7699466213 70.4233752108 70.8633308324 79.4081747457 73.7099068702 78.2706108976 74.1867734997 74.3442041467 62.5667590405 77.7439347591 69.4875893963 81.8359875567 71.9936371714 78.8209480695 80.7662322969 79.8960656796
89 | 39.0440366877 84.6760108316 72.5706234458 80.9712184346 68.7456312971 75.7900554548 76.6667 75.2564 74.8202539551 82.9623887856 73.3363681612 70.3169271705 75.7799048195 79.8861994199 76.5804513576 72.8915336827 72.622209414 74.5269656511 72.1758243064 63.1289294176 69.5191157281 71.1159672213 72.4798343312 80.8006830564 82.6701124763 81.711479845
90 | 91.6399614428 79.4066030605 75.1307160373 79.9840931403 63.0902251412 78.041409495 77.6923 71.4103 75.1643404933 83.0349971693 73.1051481627 70.300511881 78.0936590733 77.759558184 78.8765811639 71.5625276804 75.1415195918 73.8196684648 79.4727615693 63.4086861199 69.5043762947 70.4934438205 74.0784292286 72.9515308522 77.1636254828 73.5237189623
91 | 47.4881326771 85.3899333808 83.2939057345 70.7784317876 77.2045893204 69.3121497658 79.7436 66.7949 75.2633555474 82.9452793018 74.6782541432 70.4453141903 76.7457612243 71.9733600919 77.4490021363 72.4473094857 75.168667839 73.9004448762 80.3577008812 63.2954375404 69.5125730109 61.497563947 72.0362880189 69.7160484161 74.0707000309 68.4795642895
92 | 44.5902125769 22.0340116412 79.6642622775 73.9323097157 82.0339084758 62.6818697859 81.7949 60.2564 77.7564189331 51.1517703255 80.240250951 70.3543089613 78.4646034437 69.7493008209 86.8537073476 65.5433240194 85.3242028911 55.3885788252 78.7572361375 53.3326200111 89.4942005622 62.2343269676 72.9981862717 59.6656447092 74.1142308687 71.9263635185
93 | 39.0896145478 70.4661940802 88.4321025254 64.6242470023 81.5779459183 63.8949255005 83.3333 55.2564 77.9544350549 50.4755789715 70.9468490729 50.4727017878 76.7456848486 70.0440572588 79.806531301 52.7231797883 84.090507598 56.301968006 82.5402395934 56.5410522935 89.5001240511 53.2163306165 74.8121312339 57.5898837631 68.942075458 62.635150577
94 | 42.2293783752 19.9140684075 89.1155590082 64.0015066388 85.1801432805 53.7816766607 85.1282 51.4103 77.0833377719 52.1577992662 88.6626638086 50.4553260208 85.161682187 65.5124047088 76.9882734745 54.2027848022 86.2562238205 55.8309303793 86.4358971909 59.7927618087 89.490246254 48.890796551 73.0273050243 46.2741878725 73.2420023309 67.3532711288
95 | 37.0003871448 60.264279248 89.0921976305 57.768193047 84.2868249936 57.2561680896 86.4103 47.5641 76.0635502513 52.1046520613 84.405952832 50.4948658866 91.8083525691 34.9655944844 79.4793575017 49.1410154455 92.5487933153 42.9019079116 79.4886844186 53.6516742641 89.49778562 46.6299066746 77.067111934 51.4869181896 71.8670131631 34.3291575887
96 | 39.0520864793 70.6525028457 91.7260057727 52.6233532573 85.6224867126 45.0241658646 87.9487 46.0256 77.6820163247 51.1656378096 75.9871047068 50.4919669557 91.8874485924 34.7692538555 82.3041595613 46.9909036215 90.3426345089 37.7803861004 81.5304203188 56.0253645659 89.5048511306 48.4234081578 75.0171368727 46.6224426489 71.5691888532 34.699218607
97 | 37.4884147432 60.8144048511 91.7355387598 48.9702108877 85.6044990156 50.7623379055 89.4872 42.5641 76.8780819814 51.8675622958 91.1120854191 50.489389393 92.2484016622 32.3771544295 90.700691247 41.4667030063 85.8191629042 37.5713861819 79.1867885665 53.2347918468 89.5010526463 43.3473436951 76.6653077326 38.440250966 71.4829096934 34.6805169926
98 | 69.3595594592 65.5213545959 91.5078881747 53.3126520851 84.4247858276 38.761410164 93.3333 39.8718 76.9485027211 51.9075165439 98.2881232748 30.6039193719 91.782532741 34.3842946521 95.4434878077 36.1897016148 90.4418181137 40.1331134204 77.8990579454 51.8224583343 89.4888412549 40.6250912209 77.9158742329 45.9268433826 78.1285220512 23.139231835
99 | 43.542775926 62.4603112824 88.239001904 31.4774348786 85.570985078 44.5600964397 95.3846 36.7949 77.8640547124 49.6625455341 95.0652748396 30.5004028652 96.0805193672 28.0536005018 94.9974880471 35.0953011066 92.0175590822 39.9179311324 75.1307142075 23.3724419733 89.5016235276 45.8151791904 73.7420460836 39.1209853231 78.789825254 25.5971933466
100 | 39.8112302539 65.3348328092 88.5305192041 30.4760310098 84.6267242006 39.4870775084 98.2051 33.718 75.7714500936 17.1112512057 95.2492339568 30.4594542144 92.2478988278 28.0707514904 91.517847246 36.8902631263 95.2605278366 46.008830272 76.0580137544 16.3837496882 89.497529662 33.901372671 75.3298157891 32.8303519164 77.7815467962 23.4472144745
101 | 70.0689259404 7.59346560899 55.3651603364 30.4458502777 73.3961549252 22.8162479426 56.6667 40.641 52.3315691301 51.8788603463 49.6561262881 50.4313198677 57.662276619 24.0606079328 62.2926421901 40.0295333141 41.2902998033 42.3115524113 57.6146743876 33.8224476502 50.4390920216 37.670771798 63.4104355141 38.377735614 48.5306293681 34.1524500077
102 | 70.0405435824 77.1438066024 62.5602588694 30.4471356661 73.5074477338 22.8569887644 59.2308 38.3333 52.5928183721 51.3915915185 63.0186009279 30.4925819262 59.8469248931 26.1777124879 59.2034756073 41.2706776667 66.4313243161 36.5361097353 56.1713975295 32.1179887719 50.179850128 36.8075593352 68.856486669 43.084147214 65.5307814724 42.2810847015
103 | 39.505789079 74.8516272173 58.0066691227 30.2537212987 63.3564881135 17.7240688424 60.7692 33.718 50.4770477213 17.0482894119 70.5382006004 30.4835582526 64.0670962137 27.7765005568 65.2563927704 32.8541041237 63.9863468858 32.7134316129 66.2878905956 26.1171097453 69.5050706711 33.7401525035 66.3377850519 33.3065100022 70.1180341426 36.4481847905
104 | 62.5168908529 66.4847322418 55.0671179917 29.0115351997 72.9590468722 22.5114998325 63.0769 29.1026 75.2964750909 17.0156531888 70.0868697658 30.5100448173 60.9815013975 23.9342981582 62.4447424979 35.4149992261 61.2696820905 29.3857240482 67.8817196169 24.2360184109 69.5798670452 21.9352367455 64.2037185014 26.6441143003 70.4722626065 36.0880530553
105 | 72.1399254065 0.0151193251552 61.6147759612 29.9943911942 64.0208416469 17.8835812521 64.1026 25.2564 75.573954129 17.0621921415 62.6856904424 30.5464245575 59.9670579092 26.8025832185 72.4624062907 27.6242638254 60.7493891909 28.0517363383 64.0280813016 27.6726855125 69.5064719492 22.7286628748 64.4986348346 22.863501327 76.7911300701 28.0720081685
106 | 45.2515760666 70.0034213192 68.5431435378 35.6578321706 61.124463241 17.1163533592 64.359 24.1026 75.4005271583 17.0411068868 69.239417959 30.5060052447 62.7074541119 21.9955085787 69.9194262552 29.3110927191 64.6552305634 16.6122765086 77.4966517463 14.9485235577 69.4994788728 16.3374699821 68.8909906096 27.2962056672 72.4093545935 33.0392569664
107 | 42.0633045627 2.33519661206 77.7061096487 20.3042601852 75.6742073297 24.7825009657 74.359 22.9487 75.8709908356 17.1348939075 80.4002336791 30.4850063746 69.1952352018 22.709792166 77.7628590782 23.4913735562 68.6382807138 18.5080128963 77.6346517616 14.461853927 69.500264751 27.1360239942 72.371523338 21.9616397473 76.271299815 25.5695441452
108 | 36.3556951539 6.0058486497 68.4530459999 13.0355285908 69.5135831574 20.2793578927 71.2821 22.9487 75.6058847579 17.0677230553 74.6478782284 30.6738628584 65.5923626471 20.6941731019 72.7784101997 26.9005353695 65.7766651568 16.7876560655 77.8637264289 14.6106776491 69.5041565157 23.6689181006 69.7654249704 19.999850454 76.9532591384 27.7706107405
109 | 30.3918276596 42.75961287 68.2572064402 12.3846391542 58.5721354669 16.642703808 67.9487 22.1795 75.8955770466 17.1699497051 65.9952727194 30.4750241915 64.6170985343 22.4431455531 65.198316667 33.0271717859 71.1341263421 19.3859575313 77.3381581659 15.890054658 69.5322795847 21.8509008151 68.6213124429 18.9156764428 75.1077300904 30.0169834157
110 | 36.4490038543 50.5462690659 70.2554746739 13.2503849689 70.9819409865 21.1458881039 65.8974 20.2564 75.7465632023 17.1057165115 67.0885590036 30.4945239508 59.191159132 17.767901807 69.4598588916 30.1970315053 63.7231835039 14.5214211957 76.1804165329 15.9125737458 69.5001114942 11.7916260054 64.2977371716 20.4287496884 75.9692852004 29.0388653753
111 | 40.467576002 60.0275120878 65.0443252778 11.0008414785 65.2230303973 18.3971951223 63.0769 19.1026 75.1423414811 16.7549238932 59.8525770283 10.5431877763 55.8396313724 21.6185696663 59.3150555205 12.3543136666 73.0014940701 24.0738125371 77.2526510945 15.1515170246 69.5048154243 15.6143582625 66.6992650902 18.5910853404 75.2838870131 24.8747531721
112 | 81.7246168002 6.03754484635 60.0922466078 11.8721117093 65.3150439093 18.3337482986 61.2821 19.1026 50.6617795563 17.0781405153 53.7489900744 10.5225745323 59.0007586238 21.1710074885 51.487713355 20.8436106875 72.436657497 20.5783451136 77.4133752817 15.2219279762 69.5034745234 17.1690897689 67.5445276811 16.4479381344 77.0522406385 27.9056390894
113 | 48.8231974964 76.6353305783 52.9920289667 9.90666848335 64.0102406778 17.9244781912 58.7179 18.3333 50.6998506392 17.0851843836 58.2390955164 10.4948990284 56.4593711284 25.1445642082 57.1124475509 15.3217851726 68.4127671225 19.9131265443 76.7318493982 16.2168461441 50.3774019862 16.5060150613 63.9469519836 18.6928454476 42.8267563374 25.5569594065
114 | 35.6205617651 57.2860155789 50.1446289773 12.2115430946 57.1409359294 16.5986105437 55.1282 18.3333 50.9189408654 17.1476047571 54.810300495 10.7249292845 52.3581053558 19.4170541222 50.2244178157 19.1709698793 52.8583150204 20.2350610035 49.4711054118 25.0630193062 50.3394254813 18.7234506861 64.3881920705 15.7728122808 42.0806606852 24.9465264454
115 | 50.5839631148 71.8066161014 46.5086141932 11.2071344881 56.3651532552 16.3265463742 52.3077 18.3333 50.7252585405 16.9074698083 52.9767123211 10.859490276 51.8116637782 17.0334945954 50.4338611907 18.5348708515 53.5299526734 24.2419155845 42.4765399431 18.3384735636 50.0936501016 11.6077134241 65.570045691 23.7657582226 39.8783046498 18.3249292157
116 | 61.8564651063 71.7927431642 43.8070319612 11.3189448865 43.046183241 18.4025593948 49.7436 17.5641 51.2638712274 17.1623497098 52.2038939272 10.4956369212 54.222845621 19.503665544 56.3803054046 14.7884597101 50.7597410528 18.0893946004 43.5951158622 19.9942009773 49.9341271714 22.2561397401 38.4028368753 19.0468586722 36.4754991726 17.7189477884
117 | 39.3237560262 59.3008196656 57.8178546865 10.9451424306 52.0817555582 16.4538745312 47.4359 16.0256 51.2509196468 17.2404558616 50.7451622429 10.5249055723 49.0187553996 23.4892740197 54.8635045999 14.009611915 42.53480844 10.1698684594 50.3399696652 26.4713966117 50.2888186122 13.436410466 37.8323600164 14.4694894463 37.1030736419 15.4456116477
118 | 42.1856791429 66.0348978235 50.9404926595 9.69154713447 42.8790365154 18.4894110252 44.8718 13.718 50.7851572052 17.1801964842 42.7131936166 10.4875472428 35.6535812004 17.5145080595 45.4998576493 3.98542629287 41.5303978512 13.3962907452 40.7489802561 16.1821416622 50.2879944267 12.8722822086 36.9041611715 13.5838157511 34.1489682077 13.5238698677
119 | 30.8469189898 37.3416401041 63.4973230835 11.9140691707 51.5669948027 16.4857136372 48.7179 14.8718 50.5013965822 17.1057707188 45.3172255098 10.4958733944 46.965785757 16.7892016247 49.9367453057 21.5900969196 46.7145179915 15.6132744651 38.3865255803 14.5802151464 50.2347207 20.4044729196 36.286143052 17.1057707266 37.5794219113 15.0158901333
120 | 29.3462004281 42.1487418312 50.0164829541 11.9338520864 58.8391251216 16.6376352154 51.2821 14.8718 50.7336745372 16.9929634144 53.116915041 10.5068605973 49.5842392555 16.7579160147 53.8098729164 17.7664144512 48.4506176492 16.2122782224 38.4040152085 14.4519484496 50.2797016367 15.608737571 62.7866325947 13.9189931024 41.0643057894 12.2144689321
121 | 82.1105579783 1.21055166293 58.6367650809 11.9747210652 60.7557891374 17.0332315064 54.1026 14.8718 50.7113785398 17.0883158538 57.049801823 10.5081369414 51.8562999655 21.969084007 59.8526782804 9.03994992133 59.6326101247 7.05803719901 38.7642788913 14.3655904744 50.2530067222 11.3020842468 66.8176792234 11.4124971575 42.195266147 20.9193721857
122 | 38.3020058088 60.0177857932 54.7302890863 11.4128826732 54.7611561181 16.3661890954 56.1538 14.1026 50.8127448984 16.5727180506 54.8546309465 10.4639151924 55.9528886329 16.7897576048 48.1756567942 19.5212153543 61.6185682473 13.4108227184 41.4701423265 17.2780334445 50.4741411162 12.4619966676 66.755021412 18.0853051378 36.6055782383 15.748875885
123 | 56.5841530218 70.512514809 65.8755478023 11.7324363627 53.5699050003 16.3397125506 52.0513 12.5641 51.014232955 17.2210955293 54.9248425638 10.498331942 51.6637862607 19.9251251977 50.7417190667 17.8384056087 48.8339891275 17.7259558674 47.1554048146 22.3779325323 50.1084399725 18.2590443442 65.4155283864 10.4635122068 39.4311612098 19.3238407541
124 | 33.3393742865 0.5091067352 57.0609827131 9.92056085444 48.9146182416 16.7986370826 48.7179 11.0256 50.3535214052 17.0647430794 63.3095540306 10.4888142392 45.8596693166 17.1289036754 58.4597612975 14.1486628546 45.3426531889 13.9088123935 39.5825667453 17.6484528361 49.919058249 3.7168538855 36.9463314417 13.5143774996 37.5620763361 11.9284457044
125 | 78.7742390407 35.4841012146 46.819907946 10.4946526804 52.6461373069 16.3848363836 47.1795 9.8718 50.4355295722 17.0651685025 49.7494984129 10.4858029097 39.7403795202 18.7410514146 50.1145975193 1.74146171252 42.4150122932 11.6937810961 41.7402438167 17.8293243101 50.0836645085 10.2358819024 37.8254347391 9.60103429534 34.2381100444 13.7131582305
126 | 27.9226442446 25.9868781844 38.3593948725 13.431322624 49.8384929905 16.6763302777 46.1538 6.0256 50.6309819633 17.0765223454 41.1693104232 10.4973002433 52.8112216438 17.8549881176 45.4203820755 5.37240899542 58.9347650647 9.36920121911 39.3118718889 15.6407169743 50.3522608355 12.4686005273 36.722837943 9.33330210686 34.1409410386 4.57766135024
127 | 71.6978651182 10.8681445111 47.3154157773 12.853451784 52.6840664009 16.4079627826 50.5128 9.4872 51.0668072036 17.2088597095 46.6883404976 10.5075321353 56.7891043639 17.3061155207 51.3532681954 0.30387242055 60.6836260407 10.6326415569 41.6798476925 17.7459190133 50.4975722411 7.40962523419 67.0733217806 6.04921458162 36.6592676972 17.6819644553
128 | 74.1383313856 49.1739189791 55.0519165396 11.9499886181 65.8072190346 18.1407649473 53.8462 10.2564 50.7923547263 17.2042143387 52.4189219215 10.4959063596 54.1145317806 17.6735343896 53.091704424 19.2900304453 54.8117983683 6.56964870325 39.0874644519 15.1223039378 50.0163058346 16.2536847911 64.601818107 12.0019169643 40.6437192795 20.2408613716
129 | 32.579020066 1.80811559665 50.5159602579 9.76559162187 60.6739209233 17.0518023644 57.4359 10.2564 50.5512780561 17.0846551833 50.8784883796 10.5030898746 55.571119732 17.369574581 58.9431665444 11.6128777918 61.5868424253 11.0275858356 41.4815028637 18.0474374446 50.4682212165 13.3567024555 65.4372821806 15.5453860785 36.7924815919 13.3921347304
130 | 59.83218542 69.1525081443 49.6774146514 10.3831325083 63.394712866 17.7005351354 60.0 10.641 50.5597580562 17.0938837744 57.0533061394 10.5140692392 65.3064624975 18.1973548277 59.3109904219 10.5721363739 59.7160077628 11.5190968617 77.6060865492 15.1628725383 69.5506789842 9.03298756904 67.0040223792 15.3458266393 75.9483006427 22.7447959146
131 | 35.0306285457 12.5366493416 67.2806595188 14.1286515323 64.8020094467 18.2168786335 64.1026 10.641 75.3259785471 15.7718919896 70.7864511597 10.5136950409 66.9907491546 17.2228706509 68.2221986595 1.13388036584 58.4163840114 5.64577748328 75.9826615205 16.3069223786 69.5186727475 15.1804864298 66.7241920702 5.24980548075 76.8406924717 20.9185472197
132 | 74.3001198284 42.4770945921 66.1730182606 12.0379170217 65.0259398087 18.2878245002 66.9231 10.641 75.04472578 17.0042622562 56.7721495656 10.5032723508 72.1567189391 16.8142747914 62.5117719862 7.49123248279 59.243809528 10.5401420943 76.9457572424 15.858478334 69.5034574098 16.8783132661 68.3076187632 13.2809165227 81.9504776395 19.8745582085
133 | 63.2501970628 65.9524861966 61.0885441374 10.0845344144 65.7555515404 18.5162158303 71.2821 10.641 75.2870877232 16.1749349097 75.4772220231 10.5185680355 70.9805804021 17.15575228 69.3800563617 1.48813233299 56.5943646385 8.91734404523 77.5437200743 15.253949149 69.4994868291 10.2078266798 68.7680482759 13.5214565521 81.6437056853 16.5917599845
134 | 34.1730737648 25.6936743092 66.0530857731 13.3802260073 69.9677341245 20.5389887758 74.359 10.641 75.2399699777 17.0318474866 76.7659121498 10.496999064 72.2220822073 19.3692816955 82.8002478704 18.5293762368 68.4925132247 17.9873634289 77.5847398447 15.8300393854 69.5275296829 9.99229666551 74.1672717461 5.34988087254 84.6102197758 14.2477619017
135 | 40.9138319319 38.5590195509 72.6699892655 15.2342259409 68.8927840241 20.0324488429 78.2051 10.641 75.1524592023 17.0049424015 77.621049129 10.4958742318 79.7001583481 20.740218365 85.1603321777 15.0183695439 65.0059431717 15.9126686464 76.8223042562 15.5951653195 69.5190952617 11.4226857018 64.9003579699 16.2452583689 84.1028794336 8.98065579006
136 | 62.8332930874 62.5108942269 61.503472503 10.8284144754 61.8265465579 17.2696554452 67.9487 8.718 75.9618400861 16.6948422289 65.4144870523 10.6818401251 64.2491606461 14.9139624607 67.095847697 0.601490941965 63.9210367078 15.6209610332 77.3485716647 15.7745292395 69.5618994268 15.9998037858 68.7634335463 8.70057294385 80.18002545 19.0888441297
137 | 42.4767923803 56.7312899691 68.995028632 13.9943105293 60.7879700808 17.0462048583 68.4615 5.2564 75.4480625064 17.0451494125 69.9647805002 10.5072329326 66.9432914334 20.1891325034 62.307750573 5.74997471945 53.5129705438 5.87510952836 77.5731526867 14.7806458332 69.5010445197 5.95583353945 66.8169139163 12.2732943361 80.5732729943 8.36563890168
138 | 52.0334562787 64.5666620298 78.2499161658 17.8832409068 61.9156096372 17.2821912228 68.2051 2.9487 75.7593838168 16.9429296545 64.9697382623 10.4821595117 66.9416766634 18.2435093914 59.9704150458 7.9133104735 57.8328062743 9.22238462333 77.9726106776 14.9556987461 69.524635976 2.73476016988 67.3093466467 0.217006270014 79.0043268649 10.6281977654
139 | 48.9070429644 74.2877488252 36.4819805699 15.1627600944 45.0289975331 17.7244473049 37.6923 25.7692 50.378262298 16.9462798113 38.0502407785 30.4079460343 39.6482666468 22.7313663718 39.9116351739 32.1440226145 31.0329174395 28.9281418896 41.5289197586 24.9164251896 30.4995937106 26.0855615691 34.7318293093 19.6017950724 40.0481864651 24.2614879334
140 | 59.8518383854 72.9583909677 50.9677483784 29.6797742875 39.9213628084 19.7018495281 39.4872 25.3846 50.5336350094 17.0195813691 42.2241202189 30.4980371582 37.9497836858 26.5217492344 39.5965009783 32.1361317349 31.3332440932 32.5385694785 43.7225508034 19.0773278036 30.487391709 19.7794703733 33.6744421497 26.09049021 34.7945935378 13.9696834611
141 | 48.9604602016 72.6295257275 91.1910536059 46.6743428399 84.7942778751 55.5686503735 91.2821 41.5385 77.5009073165 50.1669859475 87.6984642949 50.4899365296 86.5043905611 34.8940252874 95.5934163965 33.2341293953 86.4015498466 38.7469331743 79.3260781751 52.9003912897 89.5001804719 31.9789174357 75.6272550236 37.128751949 79.221764441 22.0945914837
142 | 46.8448551673 36.7917136918 55.8637684939 85.3364867573 55.6629587449 83.3564796243 50.0 95.7692 50.6911241884 87.5139604241 52.3603310701 89.7043170068 50.8154853559 78.950838805 52.772288113 99.6134716833 47.4421116354 98.1843018589 56.6639740815 87.9401250067 50.4102716314 98.6283694405 40.6101254225 89.1362398699 36.0308797708 93.1217332374
143 | 39.9630215796 42.9449148487 49.2805947987 84.0488228306 50.4922475132 78.997532065 47.9487 95.0 49.9903949511 83.997356924 51.4067867898 89.7121385499 51.1834666638 85.1288546497 53.1786144535 98.6038611855 46.2647413368 94.1161921613 57.8217892319 90.6931665489 50.3259243927 94.9946308528 39.1143664549 96.4817513202 34.4995583102 86.6099850511
144 | 66.704943997 32.0150954299 43.3685015447 84.3321772039 51.4671011416 79.2018445773 44.1026 92.6923 50.1271820272 82.990749996 43.588468468 89.7455365536 40.8638552293 82.9261452983 37.6270534612 93.060672952 40.1638157437 87.4486723469 58.2431718991 92.1043278652 50.1040315041 95.0885380179 34.5838289299 89.5889019877 31.1068665551 89.4616352367
145 |
--------------------------------------------------------------------------------
/inst/extdata/TwelveFromSlant-Wide.tsv:
--------------------------------------------------------------------------------
1 | bullseye bullseye circle circle dots dots h_lines h_lines high_lines high_lines slant slant slant_down slant_down slant_up slant_up star star v_lines v_lines wide_lines wide_lines x_shape x_shape
2 | x y x y x y x y x y x y x y x y x y x y x y x y
3 | 66.2517848678 84.1963373616 57.6096345186 76.156492762 73.4955391914 82.4949722905 66.1289943124 89.7589534965 62.5180501128 77.7304039742 65.2497991023 80.3818734121 67.5874259761 83.5405289169 61.9660035136 89.7081471489 62.3137275753 76.091352037 68.75993372 69.6600186743 65.027024729 78.9730694927 73.5903699859 69.5270836832
4 | 73.5351458453 47.3680040536 82.4211578581 43.2235319642 72.4601179597 49.9800419682 85.9414160569 49.5940455398 77.0275099713 35.256099041 79.6045044614 43.4097222233 84.1318643902 46.8008902907 74.0892297823 46.7204955379 80.7628172724 54.577434209 68.9109817395 43.9516343765 67.7235383881 40.7619234048 68.7072898141 38.3277570945
5 | 34.9041575993 49.2147162759 27.2447746803 37.0583449182 27.6013874297 48.5603052524 25.9561810969 49.6060457792 36.4168029733 33.6941709516 31.3421091514 41.8262917123 29.5282922021 38.8129062621 34.213424959 36.475948936 37.5431182484 52.1688675844 31.0477377318 38.5919733019 34.440863544 41.5308592103 44.5642755003 28.2045604709
6 | 56.9112047971 28.8031589586 51.6642427971 19.4412210915 49.4628494151 17.2190050427 49.2220046712 29.5611666893 55.8552890639 28.2652860113 52.8870780644 31.2783201553 49.1904475652 20.5324772867 58.5297441131 30.8943955643 52.2004411524 28.1891344547 50.5071465502 28.3506119378 62.0517455944 30.0956926708 49.7318636789 36.4034411358
7 | 68.4037836297 60.8189444037 62.8711228513 75.1664261798 52.1591972004 48.7091070115 51.0068105636 49.6458971004 59.3345151676 30.563865253 54.2637860229 49.8154312865 51.3335491847 47.7457676113 44.1528656898 46.8453552252 44.55771777 45.8392299011 50.4971751879 39.2102930718 62.2436134085 51.689600369 51.8403333942 60.9378520826
8 | 57.0036233094 86.1413245525 61.7128432691 75.4747106482 51.3169942085 82.2334430733 65.44791301 89.6753407443 56.5332443125 83.1989766153 60.2856234441 87.4356704623 57.4164606542 94.2303900595 59.4820986564 87.132555916 57.4860348787 88.5818415117 69.0581296244 90.3389746066 65.304823104 91.2352358134 74.4089014534 86.9051267536
9 | 39.8902757136 12.1310465 42.0963043187 21.6404698004 49.8693589711 17.2652304895 38.7382231919 9.55814412551 40.994045509 18.7435787938 43.3859499505 14.4341005043 38.5368534206 8.95056973178 42.4161394478 14.8777563743 39.2469093478 15.3957364745 50.5466626677 12.1768930736 37.657209689 17.1758399778 37.3493143351 13.8151142571
10 | 70.8532508347 13.0946015351 64.9488945365 21.3238895667 72.4129293262 19.5285644019 74.2234343161 29.9365075076 72.2693261094 25.4744205578 72.2719941209 26.5963575652 70.867274304 27.9167674891 71.3663081104 23.8012467956 75.6391176725 21.8055710017 68.6520092992 25.427666718 65.7950251817 25.2806547349 75.3003973169 28.0784301604
11 | 42.775107378 11.1760546962 44.0795997559 20.9102874724 26.3684966383 17.7046420134 35.3701853385 9.62922573406 29.5848891035 18.3332343369 33.6668525501 5.39969623814 42.4413044695 5.71657675881 39.8648886776 12.556273676 39.9574737179 18.777009537 31.4227862977 3.23202607679 32.1949000815 5.18898647584 31.9341629094 6.87485022983
12 | 61.4699899287 29.988423363 60.510314401 19.952848952 49.9811722431 17.0482199775 55.8629759671 29.6383941606 59.269111916 28.6591856136 61.5459350672 31.0489656296 57.9837156042 40.63523399 60.0268995612 32.345977651 63.0224149959 29.3862871649 68.5744936232 32.2506267505 64.6539849345 33.6279025288 68.7507446317 38.0882713213
13 | 41.6756860727 33.0975379862 44.3754085193 20.8166816898 50.6092471041 17.3559441314 57.8080741834 29.5975814144 44.2178742721 26.729971038 47.138241688 26.7495939707 42.4441292869 25.7767855445 49.8098767941 22.1274763331 40.7432624786 17.0986938751 50.5083772892 23.7889033344 38.5295464336 18.3049892924 42.1302582214 22.335473782
14 | 48.4734078585 66.280307818 44.3777956556 74.8720494112 51.1971850174 48.1355479751 38.4815139226 69.6831007069 43.160973853 71.9773483833 42.4714502115 63.070319005 37.5973025742 60.2627776835 38.4115278245 68.9242113365 38.6004798453 62.7856808534 50.5229370816 67.1350652103 39.46563803 65.7686990374 43.0864776264 73.4663617619
15 | 75.5217047166 79.61371001 66.5563875378 73.6034590436 74.5008415725 82.893896156 71.3191259472 69.6725096257 71.3331991789 78.0192137094 78.5347248803 76.7284494842 75.0674054737 77.3209861919 78.5835365409 78.4554177933 88.1743708533 62.1805621185 69.3306369961 79.0324023546 68.9131461513 74.838897175 79.4706855234 76.1201351758
16 | 54.8150728506 66.9875581836 62.7165592737 75.25855102 50.2686049601 82.9755929567 64.2824414077 69.6633039536 54.7594508055 75.8827315133 57.1176315681 68.3233350818 64.6912854343 65.5917285576 62.575931879 64.7166914619 56.5018445445 84.8824187987 50.5934644939 78.8908534039 63.4354270118 63.619952281 46.1561969508 68.9012346509
17 | 43.0783672508 63.7773538588 29.7625573504 62.9701989335 52.4636620043 51.540518994 36.4545329489 49.5262071774 34.9761540776 66.790121633 39.3683052928 57.3481448332 46.6594028229 51.3301925817 33.1901729898 60.5536663147 30.2800808492 59.7416430134 31.9883721758 61.6767284602 35.24818549 55.1417538004 46.7210413293 67.3628995927
18 | 88.4392475543 65.4424977511 72.7954595391 69.6893858491 72.4756971383 51.0695364146 81.9057973346 49.6878577262 88.5627991609 68.873075125 87.149805517 57.0971323103 90.9269154848 61.3726489796 81.2744029783 52.9843761153 87.9377177445 62.572162683 82.8700591508 54.7922151216 75.2488934398 59.9057695953 71.1533577125 65.9012713517
19 | 74.397727566 80.6397357201 69.4361659508 71.9610717061 74.3789754816 82.371212652 88.4261334422 89.789680977 87.7165490922 86.0218354733 83.8678042122 90.5051457633 71.5506599788 81.2214458268 92.0842045758 90.7550685039 58.3509360562 91.8460179324 83.7507134192 89.0470302484 76.7345662782 95.7903789033 85.8377465069 92.0370719114
20 | 53.3929167748 9.6909545716 53.3684603793 18.8919363464 51.3000415253 17.4522354447 56.1499215042 9.52473928648 55.2797013138 19.8536545418 55.7663806259 8.6888179471 62.0202954784 5.6230472335 53.4681358972 6.17544437069 39.7317487579 16.6112710374 50.4966347831 7.92656295329 59.9767858564 11.7194820584 42.0339062359 13.1457789906
21 | 50.2401955925 66.7251544267 50.3755771264 76.2934906848 52.3754137041 48.838335582 41.0671483861 69.6930910673 53.7731503629 71.7730894964 47.0176954472 61.2270187283 44.8772391761 52.5962769899 45.4622136315 47.996678992 46.5242239801 62.933618023 50.4963906004 56.2576711816 37.555895378 61.8973206435 46.3105751297 67.8561777133
22 | 73.6385619162 47.2185612169 82.0342884775 54.5837436177 72.3035497832 49.126761868 66.5801582732 49.6370707267 67.3454995769 33.4121315583 72.4861782202 47.9877392942 74.9621411566 53.7993002941 72.9620677907 43.9226795716 74.295552598 47.774868335 69.4038173545 47.6251945241 68.8645555261 47.3789709664 65.4904306312 42.3494103768
23 | 46.9511795593 85.1799716964 53.8497980161 76.5323647896 50.7312343384 82.0871306443 45.1010870075 89.6359196029 43.369247302 84.6288306329 45.2276805752 92.0723693814 38.9867139312 89.0871826174 43.3583952936 91.0406451549 58.8650876604 89.8465124909 50.5034557746 88.5288961133 41.0713041473 85.9241403716 31.4366774132 87.8793889162
24 | 44.2297962772 10.7319127646 51.8141791784 19.2689299129 49.804852969 17.5840330258 41.8682815667 9.5594300983 36.8393401359 14.9461219756 41.7003275847 14.0219598235 41.0420061424 6.54360792948 43.3971641104 15.1802381834 38.6585332859 15.1763718793 50.5686110971 13.5523453485 34.2544218231 14.6810551123 34.3300944594 10.5447873599
25 | 41.8930412673 62.8943615833 46.2804995334 75.1931459273 52.6844263217 48.9072413377 44.9183598062 69.7064370227 47.1138372322 71.7676558262 44.6439155683 60.5889586942 48.9331464872 49.981681159 38.6639008107 67.0536994732 40.1338272099 63.5409502694 50.4879380522 64.7153761482 39.6105052192 57.3602256692 47.6863713156 68.2371127216
26 | 47.2220135867 65.9122377321 42.6362651184 74.2916153375 49.1041292662 47.531099973 49.9836336405 49.5411007292 55.6528341403 68.9030528151 49.7423401581 53.9690541666 47.1898916332 50.7097718384 53.5291683247 55.2703876058 43.3206411345 62.9362870565 50.456119949 56.3360681835 38.7228898708 49.2659407101 55.6381793157 56.2112651171
27 | 62.1175811279 85.4895045139 59.5828623397 75.8456658728 50.7602442676 82.8716477904 63.0489390768 90.1326401867 59.1086758129 79.4376899974 56.1213206005 81.0569766394 55.9645619917 75.3723260298 49.8323030615 77.2310002826 55.4196525403 80.5933345856 50.5083890347 78.1275123883 65.8700682003 84.202529221 42.2845233983 77.7314044329
28 | 59.8396585108 66.1612434992 72.7493582769 69.6206082737 50.3653605902 47.5338901487 65.9779486991 49.5299744131 59.7163496515 69.4189628031 58.1792288609 56.8054794652 51.8286669788 48.2182644184 61.1301260585 59.8749684964 65.2937038511 66.5443256428 50.490038892 56.0767594347 62.5373342909 54.8195971526 51.155171523 62.2064403753
29 | 62.3091833455 85.3291733685 60.1833153682 75.9240227691 73.7750920866 82.6457657722 63.0900986335 69.7035049483 65.840444075 78.0192792185 62.8155813447 75.1705329159 57.6399273025 70.7380676108 70.0137719514 69.522339286 62.2051155567 76.5527714059 68.9444985082 75.5106323999 66.927129087 75.2475142985 72.5222385192 66.7633447673
30 | 53.2287740772 28.5815971459 47.4434001522 20.0627870317 49.2846892359 47.3847330109 53.9622555388 29.519462426 54.1025408987 32.1055794913 55.260420032 37.8733990471 57.4247827197 42.6352343421 60.3679075486 32.8782756226 56.4216512082 31.8443097863 50.4738691224 38.8370545598 62.879973157 35.8581450108 53.2279099318 40.7247610101
31 | 39.3123698294 35.5745324407 29.5942748092 33.3809520603 52.8444810999 49.1194887463 44.940503726 49.5032264782 46.5547352337 33.8539185397 48.439965815 44.0339683769 53.4779577975 45.5475916626 47.1268616619 47.6875298093 44.0088662247 35.411439745 50.5056940821 43.5750715484 39.9182266613 40.6572502747 51.498178531 38.6879013225
32 | 36.8264304161 13.6850287221 38.1699370515 24.3046598874 26.368795162 18.0960306725 24.2894639128 9.71728979838 29.9341093812 23.5274788426 31.9344795339 8.56988494242 30.5380223688 17.0945503435 33.007645402 5.30284972246 39.3307515598 17.3769911959 32.6087239082 7.07069648516 32.7011186751 7.64217796768 33.8961392671 8.38441732947
33 | 64.1384457566 31.4814896094 62.1901510388 20.300733957 49.5300338903 17.0843028053 59.4733114174 29.5077376008 59.2807932878 25.7821658928 61.3926581368 29.6750368361 67.4098964412 34.2200793507 59.4561758107 31.769079898 54.4343351879 29.725772785 68.036676048 30.638833645 63.4160594721 33.5231406736 68.0510226482 39.0577487499
34 | 75.3633450278 80.0259926353 64.3386645541 74.5413235007 73.5423935635 82.4205815323 84.0880764926 89.9619980844 81.5290248181 83.7357858431 81.5840496376 88.7460050809 73.5080662247 79.2099855464 77.0528842503 79.2375160384 58.7351075268 88.6529998634 85.0313543882 85.8641080468 72.8225445818 83.9497070064 84.302149359 88.0648682379
35 | 64.8040597699 10.8218399336 52.3093375143 19.2037540178 73.4063120275 17.7153545231 61.6804508052 9.65851368173 69.1100264472 19.0077912997 63.5596041464 12.7717311268 50.6308491915 18.3257135894 62.3611522818 14.7665176654 65.3879921045 26.9040709129 68.0276293683 14.8727854501 64.7363193945 17.6026116915 72.8582115694 25.5214507511
36 | 50.2019177159 86.0993632098 59.7308086971 76.0016312311 52.1127475692 82.0941145401 56.7552726568 89.6025978471 45.8059147109 77.4742027773 50.1185854501 83.3714927504 46.8599850279 83.2840683372 51.9878222419 79.207669835 59.9407524146 85.6143842598 50.5467109258 82.1971468372 41.2960038226 86.1781579953 36.0775484019 86.2211286622
37 | 57.1119711838 67.0773079536 55.429373533 76.3938783072 50.3713407855 82.9424819102 57.8339971221 69.5858218302 51.4700396011 71.2523547782 52.316461897 65.7505604096 59.8075196591 72.2203686974 56.2822413114 55.3853365562 50.3055424784 63.9892331343 50.5268866997 71.2557475719 64.933899134 68.0456301006 45.6479359878 72.5027798418
38 | 45.0260447473 85.1333069538 52.4193495062 76.8740796661 27.7657958917 80.5567426242 35.2434972375 89.6127083498 33.6594025348 82.672031068 34.5602758643 92.601427282 38.0267843347 93.5433349558 45.4612970623 92.9055474475 59.1411156819 87.7014787302 33.3064896931 94.3075611526 32.6093003269 95.1047101939 31.3065182559 93.3131025046
39 | 40.0964335545 83.563808468 52.1484041739 76.4218306407 51.9126576689 82.0341873086 46.8389615755 89.5180892942 46.7788016941 84.0143214755 42.7616885528 86.9644443227 34.0515928694 95.8769936421 42.6061196342 90.3981594859 55.7182351834 83.2206777679 50.5055053078 83.5120455982 37.5800707249 80.9712016049 40.2970493877 76.6481360928
40 | 60.5351821273 85.7850469004 63.1130359207 75.0709354397 75.0125141025 81.7917967605 62.3815046648 89.5890294553 62.2131288445 84.4577327973 64.1112132083 97.0241743853 58.0845438707 91.3848274192 66.4120940962 96.6543776338 58.9423531711 89.6034571903 69.0855189987 94.3774383809 67.2362999314 93.184535409 76.414249807 95.6766440312
41 | 64.9321423799 84.7895358734 63.4119691462 74.9119601231 73.7725854723 82.5132538505 73.184806549 69.9219475767 66.3765199757 73.3313958529 69.7553397049 70.9579698042 74.3234101869 77.7508915688 70.0017333349 72.7669288275 65.6687699918 65.9287010083 69.0917437115 64.2617434459 65.3776981329 73.8801162531 74.7373562098 69.4249567725
42 | 64.6536486722 64.0812007194 70.9927940636 71.2925232619 74.4419206988 82.745346091 58.2846685874 69.5241836171 62.9025735266 72.6551922501 68.3173818542 67.885687055 67.0082807343 62.6185177403 66.0738583231 67.3646399087 64.6516960305 67.3926609171 68.1487313545 65.2183636428 67.668677901 72.3820224372 73.2934351358 67.8898101605
43 | 55.5456574919 28.4721692578 59.5788056468 19.2788344885 49.3270789652 17.2273174012 64.2254023895 29.6289099903 59.7942974664 24.8479762314 59.2581808443 33.2256040173 55.7778704711 42.1946464603 61.9023395629 34.3438440895 57.1663834117 32.8798756832 50.5105578759 41.1427599607 61.5489507539 37.5261176609 48.1936779788 33.8661680504
44 | 28.2274449828 19.6953257098 40.0230441059 23.0970785225 26.629145689 17.491117236 28.2136857113 29.5775683669 27.5237047427 28.5118165598 30.6880647283 31.8170470289 34.3580123142 35.2143064327 37.2599519755 35.9373567179 39.4095177705 18.1256230468 31.3536314601 30.6024276393 33.681977119 29.101747022 42.8097972569 27.4810168145
45 | 54.4108935793 86.3077970104 54.0570041521 76.406178509 51.8029633136 82.0625979556 54.8573949212 89.7131120445 54.7926544844 79.8805710232 53.9317996538 85.3865445554 66.495604458 84.4295053342 56.7400122715 84.313473813 60.2905339641 84.457096575 50.4941185589 86.6924703161 65.4062845958 88.9258870659 42.13830188 82.8167079439
46 | 46.1348308863 30.1827624166 46.8616887247 20.2533004632 50.1447275709 17.1062750316 48.6989351647 29.5111673702 45.0831728157 19.7173078653 44.8050377252 22.6987372585 43.4920860803 25.7243725667 46.410919498 18.0499970004 39.1055373508 14.8082724705 50.490141218 28.7986373911 38.4385835349 17.4917640949 42.0629913039 24.8016620852
47 | 38.625965654 37.0107920215 31.1277223896 30.8214228923 49.1036802431 48.5683478783 47.2098416215 29.8150505578 41.1568022835 29.9976478802 39.8316284819 39.6213794448 38.5371396574 30.6850100039 38.6483590301 38.9042751137 45.0356964438 45.0907268786 32.4613327269 38.8626120281 36.0157860126 38.13451199 47.4962935844 32.9238593005
48 | 58.5413035968 66.6743353064 58.8530121639 76.1099835024 51.7371859816 82.0756639357 46.735403365 69.7365896346 49.134144764 73.4943732127 54.2261512489 68.3000890559 58.9403201451 70.1319602996 57.6684687588 59.5546612107 53.6934546274 74.4085116269 50.6013476599 67.3603381762 60.527712844 66.1022885037 46.8295222456 67.2781623072
49 | 71.7958766499 39.6744659815 72.4922328097 25.8907129958 72.2766847434 49.2488080492 61.7416127968 49.6225215428 61.6433172409 29.5292601694 64.6525019627 41.1435973982 62.522784643 37.095470271 65.1087691296 37.6211719391 72.7365917102 34.023581537 68.5809513753 43.6493441532 66.7105001249 44.3686471512 65.6465150013 42.1275534705
50 | 36.1473130054 41.951004473 44.7158905405 20.9329043744 51.094177065 51.6140088495 58.1329708262 49.9217877442 43.2025720556 31.6391773287 49.0438595208 42.9555725563 48.234008789 51.0000064766 48.0998132103 49.5326770859 44.0321090117 36.1939205862 50.5194941956 44.3632577577 38.2975021906 48.8519373876 51.9771413805 39.1487390678
51 | 87.9016814604 66.4774729856 73.363846348 69.1487476161 72.6602892164 50.6508690299 70.37822956 69.5940999621 84.0455305148 73.7493737907 80.9207582219 60.1244235979 79.0415416926 70.0991371796 87.3864803538 59.2621670188 86.1375877755 62.9877259799 85.4841524862 64.1555551532 70.1171903288 58.8521665451 68.3698169768 61.29270056
52 | 51.3841924955 28.5967039106 40.4737983708 22.8700246067 51.1998001406 49.9974004388 50.219789802 49.5897995734 53.4178308967 32.3892527357 50.3193301987 42.1121869369 55.4614309273 43.0242708923 54.5485459647 52.7695772322 44.5322697664 35.7025192817 50.4896439847 32.056464478 61.5964022986 43.0585292962 47.3256967414 33.0688551253
53 | 54.7111971589 86.230192552 56.5656125848 76.2574514657 51.6654188478 81.6439096139 57.8998879041 89.5532825826 57.8377717072 77.7148526204 57.6416201395 84.2406303119 60.9016619983 91.6961160127 55.3868209667 83.2565438727 60.8277878585 83.886575509 50.5184960597 86.697015072 61.7078640995 77.1117130532 41.9626428918 78.3734717149
54 | 37.9069153083 37.6365722895 31.83392179 30.06646207 51.7993515269 48.6183469723 38.5860501261 29.5030675716 35.3985584258 23.9646154573 42.1029335967 38.4957429771 41.1841403929 30.5368341683 45.7478831165 48.4135945079 42.7818164601 29.162944837 50.4975288918 40.0069007188 37.3679929625 37.2205713638 49.458739911 34.8811550845
55 | 40.7688248779 61.8796234729 52.0144103886 76.4469864928 51.6249689362 49.9813734701 40.7404061311 49.5019206754 52.9471889594 67.2949854873 47.7436373804 56.5062985216 46.5506349492 51.8106652049 52.7939781307 51.302115573 51.0215608443 65.8751743454 50.5665425103 57.1605458032 40.845738287 54.4915429824 52.9142169306 59.6337711669
56 | 58.9536035376 29.3856565378 58.2475085986 19.4201380692 50.7028126527 17.4363372032 52.746389936 29.5058935981 56.4648123031 25.537074796 61.0346068127 26.0737305291 67.9561385812 33.0535650525 59.6596777126 31.6441783217 58.2216397966 34.2113315098 68.8933277694 33.6424515568 61.8260975476 24.7791734037 69.6855386666 37.1085137316
57 | 36.3717089109 13.7717570642 40.0482063665 23.1209427134 26.4053444724 17.4636295665 31.3590644671 9.57707333668 34.7786561619 18.8305561608 27.9781288537 7.66815961724 33.7380889022 14.388374078 31.0072598475 2.4272427305 38.877999463 15.1963244547 32.4408511177 4.78923365254 30.2630842703 10.5307442731 29.07829422 1.97540150411
58 | 52.0627713166 67.0411370964 52.8126945682 76.3543813885 51.1680723864 82.460963581 50.3411970469 69.6411197917 43.3830537176 70.3553892801 49.6106350071 70.8548717332 48.9032421201 80.2105036996 45.5004483989 74.4141777026 51.7961604486 68.1118377955 50.4938105052 71.2198730593 40.3080891343 68.9884932164 42.407436228 76.0772509495
59 | 36.7579523125 82.0523978199 52.8895110308 76.3214498101 27.5645760285 81.1817779043 38.7124490094 89.8173005454 36.9790005364 83.208466048 35.7743082965 88.4866299688 42.1344587229 89.9925986859 43.6162065285 91.3509152328 59.6450597255 88.4700640313 33.8822583817 86.1066981751 37.6810067419 85.0596677363 29.9775918899 94.7780086892
60 | 66.5780863065 62.9118341538 61.9791430075 75.3005157919 72.4646675695 50.8858414836 59.0880792217 49.5102935945 60.0916287842 71.1588731845 63.5436367972 59.4623115581 63.8649568461 63.6236459391 57.7055661555 60.1197309151 70.8691433933 63.4156885785 66.7170193214 66.2490390394 64.0774229369 61.6922199414 64.1983085156 56.0279201774
61 | 72.7235614201 42.2054224822 81.8441529602 56.3906267127 72.4988692069 50.3926483591 67.0804009022 49.5225208341 59.1198207921 32.9571065765 66.7242052801 43.6330950601 61.7995604097 36.6268200985 62.3524145893 31.9682181165 76.1249796617 50.1869055295 66.4656906658 46.163492394 68.8362809475 33.8067191412 66.2583111981 41.4217513731
62 | 82.8612929701 22.0882601571 74.2280318879 27.4751081354 72.3233215364 19.3603856699 75.4813986223 29.5976282536 77.5887728631 27.5221639118 78.1295000171 31.5554036332 70.5452232605 28.3783393633 75.8962850569 28.5438022185 73.9114196545 28.7063498539 68.9608653295 34.1616935215 69.4584737321 34.8319778612 72.1483526217 33.6253512121
63 | 47.2211837884 29.8459942551 45.4288425987 20.5879520032 50.299145151 17.0935921252 43.4281967866 29.5732802136 51.2747814593 27.7615792224 50.3449670891 33.8075445162 38.0671587731 30.2821125838 54.6480710757 27.3378713312 51.1869112651 27.2900016415 50.503940735 31.9104898315 62.6225973632 40.176921518 49.9097323536 36.3698838468
64 | 59.6503279009 29.1771376483 50.7046368664 19.4910747532 49.1623154026 17.2733148253 51.4902089355 29.5723363662 59.7233478002 25.6634796282 61.7671934488 22.7723184176 51.5807943188 15.6277087341 55.770619722 28.4324098848 63.4560463762 28.4123788367 68.4693532958 21.1159951007 61.9789361194 28.3535392342 72.8447166157 32.9041285779
65 | 53.0573639626 9.36440656101 58.6342645829 19.666604525 73.5408832416 18.4677718245 59.144785577 9.79616123918 64.1555108297 15.468118633 62.5540261425 0.988793884246 61.4769876244 5.77453745394 54.9067600371 7.05164861659 76.0006463536 16.0622689786 67.0298582176 2.10035602261 62.081437097 2.01463068947 80.7298314523 3.95398273306
66 | 70.8737945526 37.6876413937 82.8260719709 49.9863983997 72.5811274461 50.5317857244 49.073717039 49.6158124629 60.0152247274 35.6268381885 64.7176835559 44.0360977049 61.2813587997 37.7021111117 65.6493621448 36.8769468905 69.5325497584 43.8870076669 68.6522168371 46.2202044066 66.9299274284 51.9864116672 62.9985025827 45.5135779909
67 | 49.8154355076 66.7225070418 55.7472005158 76.5126513298 50.4126804364 82.7882219604 57.0875607327 69.5203664521 48.193943217 74.9019107475 50.1904861261 69.4430883802 61.9194420233 65.2770159352 43.7228163477 72.0780141689 54.4387487909 78.242323901 50.4805757201 70.6048559087 63.3750746456 73.9273815518 42.7654531552 74.1472134965
68 | 40.3801603334 12.0188300221 41.7981607043 21.9501954483 50.0447088926 17.9758046886 40.4267671705 9.51730277335 35.7997224338 18.8587027396 40.7257338923 15.9110002842 35.4098873355 11.7629638129 40.2000530888 11.5013804283 39.5129176066 16.875198455 50.5088300139 17.2788283324 38.616616411 17.7342540476 34.952017029 13.194010971
69 | 16.828437202 38.9173926096 26.2240062392 42.5327244275 27.7332394567 48.9989552629 25.890267819 49.5463965045 21.3347053872 32.6597072834 19.5111256951 40.5254075186 28.3012469387 39.2360702635 16.251203826 44.0431540221 36.4702640886 54.2649356177 11.5781620643 38.8173254587 26.8756055716 38.7778286054 41.7144344973 25.3169331656
70 | 16.8768487547 38.8396053855 26.5701049691 41.0182805389 27.8233611023 50.1198668173 23.5709092792 49.54133265 15.1717916649 31.561846327 17.2757496846 43.9042051485 25.4083362343 46.1231315188 20.981008582 48.3072993541 29.0470919528 61.4134359353 13.8287697805 36.7848003207 25.5221452894 43.9820636554 41.9750078187 24.6187159144
71 | 28.8385476111 18.9801782681 37.4666630094 24.6167747656 27.0541793291 18.1146128102 14.7962428278 9.52843141165 16.7978816993 21.5423173941 19.0987441501 15.9098818674 24.6423294689 23.8328809264 16.8969307169 16.3140892449 38.5529502569 15.0365131147 15.0162963158 13.7052666362 26.3541697591 13.8180156503 31.3379668403 6.28662824831
72 | 49.7273197203 9.818796645 55.7901528689 19.2565617831 49.5565246903 17.0379964631 56.1244967553 9.5027531606 53.0845646429 22.1216786159 57.8196482564 14.6455302081 55.0793504842 16.4831666489 57.7554314973 10.2531189976 38.5108656716 14.5013195768 50.5137557286 16.1767014993 60.7098693404 19.3431213085 43.6627889625 19.7308320424
73 | 66.3950471704 84.3179649739 67.1618370698 73.2508625523 74.1620694518 82.135263202 71.7274592102 89.6440523053 78.9512096836 83.350408434 77.9447182338 98.3558999444 64.8412005031 87.774945061 71.8206078866 99.1706979828 58.7801220533 90.561441082 68.9071601418 99.4020669883 70.6924430911 99.0843708983 87.2279956544 99.294222649
74 | 66.4027330496 32.6588528878 63.1925684115 20.3057151085 73.7595466446 17.3955311526 66.4701696872 29.5131373215 60.3178522989 25.5238913182 67.5152547813 32.4815461847 66.6162313456 31.2278706995 62.8404679707 35.1411943234 73.7731937515 28.5893396825 67.2687476268 33.7571580148 66.8726644244 33.7515384925 72.7594324408 32.8983842377
75 | 62.5341984872 10.4141295348 59.4205324932 19.4131595069 72.3646448438 18.7528077209 71.8127443114 9.63545332115 69.3537193067 19.9636681703 66.3944897635 7.68426897046 62.1527837597 5.62922380929 62.4391781901 14.7836253147 77.0429813188 14.8506781401 68.6944075476 10.4222406113 63.9954941285 7.80519010347 76.285247179 9.97607226119
76 | 71.5062033531 56.5172408756 82.8468330204 51.2888726807 72.5173402146 49.5510008633 85.997720135 49.5282472428 81.6755378002 34.3507674608 81.13760725 48.7354871815 79.4337705498 48.686345102 74.3190736711 45.6446410871 85.4014121578 59.1985629919 83.806077295 55.7920791514 69.8136742227 46.4186217054 67.9785073643 39.197771735
77 | 72.6811060384 41.6310056246 81.8553029605 55.532715383 51.9536756301 48.269405016 57.1435429638 49.7597900979 58.5543569865 37.7183648352 60.0343851145 43.5893183244 57.509979246 43.2829846181 65.2813534414 36.5234330414 60.4677962792 31.8088868508 50.658148199 43.1988565784 60.7097725973 44.2267311895 52.5382137225 39.8824614467
78 | 72.4758339815 40.8948338904 68.6314162528 23.0924402141 50.6766258862 48.6273817507 61.3210962782 49.5945353752 52.8951875168 29.6197289118 56.7049700568 43.6290549111 63.5591149446 39.0934410154 48.3494955005 50.3160364868 54.4579248015 29.9867578316 50.5013569779 44.816870933 62.8175533374 45.3758503921 60.5681475759 49.810218933
79 | 35.3274307925 43.4631550148 37.6306619585 24.4001660876 51.6292221751 51.9374584823 49.6868092436 49.7130901444 45.5915342478 32.5486973767 44.9146813375 43.1372264189 48.9286751531 51.7557057474 39.6892504692 41.3496541557 46.3634509876 42.8089857456 50.4906817878 49.3074384861 37.2254197815 45.5997353198 48.0133908665 33.9460164665
80 | 45.1406636424 30.7467347213 41.0341691247 22.5505824362 48.9340430171 17.2546406666 53.7796709791 29.5616422469 49.7076079215 24.3464823347 49.5307512712 23.4993456399 50.847540426 17.1969381729 52.26043971 24.7837687667 38.8740385345 15.7954124534 50.4942366787 19.2711219984 63.2608924115 22.7470751856 43.0570797993 21.4127184527
81 | 71.7269998438 56.1719048971 76.2183487899 66.0465051341 72.7048183097 48.8658737196 78.7614987159 50.0899081218 81.3836844236 68.0720736871 78.3074289111 56.8292862332 71.8639959175 59.4468231137 84.8920715224 56.5335220428 79.8137045722 54.1157521223 68.3603876727 51.9522486263 69.1120171736 62.8861941252 67.5639073047 60.3749042903
82 | 71.9420375549 40.1328860945 80.8608183484 37.2052337767 72.6703443799 51.4857523765 71.7672321408 29.5321491209 76.988194785 28.5120436723 73.7452822404 38.9279294466 65.8433104389 31.4169558237 68.8696997481 41.5070981291 71.9432676716 36.7407440439 68.2385188309 37.2084168067 63.1064337516 36.8552080754 72.202257509 33.7971456887
83 | 40.0433627582 34.6733302469 30.1752929544 32.3800416151 27.4273855075 48.4853290192 29.3643959416 49.5301772936 37.0132393825 30.9360655007 34.0151832414 41.3483492829 32.6804046821 34.5750870474 31.4374312579 33.6571355312 38.2721131809 51.4735796301 31.9110255713 39.2046101432 35.2272488857 43.974984132 50.6795519318 37.4719827309
84 | 42.7366670664 32.1668232021 43.122230703 21.4554138637 50.2461166363 17.1833272229 44.5440520814 29.661281654 40.3210665594 24.4342983663 39.1241989616 24.934955541 35.6761674086 31.799490394 27.3463602333 28.3678783492 38.9130363431 15.4899692415 32.7343804069 23.9749957215 37.833254422 23.6781728484 40.9606244462 21.6569603492
85 | 56.2057628571 9.39345120135 51.0380298406 19.3915703859 49.8324453655 17.4498333191 57.2645294143 9.50558241624 58.4254580034 17.9590705009 59.9921705382 0.583460384601 66.6793778281 2.94106141365 52.9276153444 5.15584397925 74.7555977829 17.9382967887 50.5239527421 7.97872729724 63.5823808853 5.70169896574 43.5337195806 3.27355835764
86 | 46.2854794306 30.2376889411 55.950321447 18.9460970781 50.5693993018 17.2028314914 56.5311192119 29.5982231809 53.8911908152 26.4395912387 56.0541713663 31.7703885683 59.1372990577 42.2222803307 64.557637458 36.1598105314 53.7057060861 29.7249675938 50.5151421492 39.5386252529 64.1797073098 29.6466497216 46.7758685665 31.1362962125
87 | 52.2166367096 67.207749661 48.8283712641 76.3431708548 51.9170401673 47.9770130556 63.51868644 49.6615569244 55.8329769313 66.2961652929 51.2370263755 59.285146518 45.9920892325 53.1092862986 48.8610333618 51.2656992919 50.2563299873 63.4916713626 50.6339962709 63.1908435017 62.1979020881 60.6819112761 51.5075468453 61.4235935846
88 | 72.8698871943 51.776565196 73.9630430123 68.6172486645 52.3946043959 49.3323324542 56.6024044464 49.589807291 55.5524844723 31.9088407577 60.4527852565 48.6849870551 59.7918608638 38.3855916183 56.1217291015 54.154279224 71.9288792205 45.7575680331 68.3684713816 47.4836242917 64.5039020108 56.2467897772 57.8074318855 46.6079171955
89 | 52.4727151026 67.0138017653 54.2591055947 76.6236988377 51.9674908971 81.875813428 48.6608760838 69.5392107996 44.4539255526 77.1335395595 46.7752951104 72.0445407841 52.8593083072 79.6025541225 50.4283006063 78.025897621 54.4064015917 78.0934181879 50.4965578443 63.9311058069 38.0595232563 64.5990042613 47.1695965154 70.793677218
90 | 47.9319147503 29.3950988075 42.2019664814 21.9358697032 49.6437961951 17.3247637188 42.3389038783 29.7191381742 45.2657661955 22.4945773463 43.128286031 27.5122473508 40.366690226 27.0217818895 52.9760042418 25.0949550163 40.4439638644 22.2012509584 50.5098482375 21.8912400238 38.3329292918 32.3103131432 42.5103129015 23.023802132
91 | 73.1626620032 52.4365897832 79.1306168813 62.924256297 72.4292584597 50.6514402104 70.0708400547 49.5371765808 71.1655507094 32.2075380536 69.6362220853 47.6185225257 83.6372211351 47.4767900379 65.1441360455 37.9037180082 78.5568343838 52.7439663471 68.7712333947 51.4083817668 66.4048064406 47.3911763534 59.1222594853 48.7996576855
92 | 46.0011784811 10.2284744715 52.1418226114 19.3755951938 49.2072751445 17.4694179681 50.353965879 9.61659899697 50.3879897882 17.2181498321 46.4709841814 5.21476901715 46.860590485 0.469738228914 48.4170101987 1.0201268829 39.6159864562 17.4813610987 50.5095188094 2.4284637327 36.6873907231 5.26670388266 38.1455324189 5.28846285593
93 | 47.3689354735 65.9902466232 57.5960521126 76.2539795528 50.8356054294 48.7040458369 49.7254488467 49.7691758937 50.5406472777 67.4660279954 52.3864641734 55.0080239919 48.012694723 52.5650998228 51.8445109289 52.9232657814 50.6290476401 63.3157954023 50.8830340978 58.9073829515 64.5883180837 63.2717526521 52.6698653514 59.9672629106
94 | 55.3982974381 9.52915012801 50.532790628 19.3645449911 72.1572879084 19.3611791821 49.6713724887 9.51141090975 65.7175523439 16.6407013983 64.2629374002 8.42485404019 60.9023968743 7.02586295276 57.4847183454 9.8789723702 77.3602148423 15.0333730943 68.4718943272 13.6605643632 65.6492565614 9.21440036191 79.4929759708 12.9013385267
95 | 34.436596637 14.861197827 39.9009403072 23.0624763786 26.9430004807 18.0558678843 28.7366325674 9.62168676932 24.9235632122 19.6574401277 25.9372409847 13.9394376553 33.4304130843 14.9375296592 18.44161392 19.6167622264 38.5450321349 14.9609929903 33.3105730248 14.0156511817 29.2273874729 15.6242393602 29.8032141867 5.19784254079
96 | 51.9068836671 28.9784112304 46.8884243825 19.9392786597 50.0796078942 17.1901916373 54.4164944099 29.6933755968 61.1102959766 25.8583650102 54.7127776986 27.1983258631 48.1305803861 21.170622003 61.4332989883 33.3291460577 41.7671420779 18.0819460543 50.4990887394 14.7610789974 62.3173682955 27.7717669797 48.6060159259 34.8741127416
97 | 63.8074078125 31.5010035748 61.2480363587 19.9944837648 73.1853389397 18.1978962908 63.8876746308 29.5605932575 57.1281218053 26.6671979417 62.8591383541 32.2444123718 63.1376988102 35.0921809499 63.8328066519 34.2186217294 63.6346163154 28.4148968087 68.136866713 31.8800131038 64.6102064455 34.0772522274 67.0230718419 40.4352219177
98 | 55.3745587929 9.3907467866 52.5682295957 19.1082552841 50.2120041797 17.2752427089 61.0089959621 9.56408658357 55.1088150391 18.3070400784 60.5412793272 1.98201266252 67.6330382044 3.62375832025 55.9596124257 8.54880936474 76.8664907299 16.3888262472 50.4997121232 5.18211247539 62.4895442677 5.2540647522 77.0874498605 6.77381202599
99 | 47.3682546243 10.0053806417 40.8507110227 22.6272135959 50.7330620048 17.2066545497 38.351123931 9.50517509693 41.4378714795 21.0357779427 39.2555191053 3.23484009237 48.3959059632 0.483669844256 38.4121093573 11.0424456249 38.9996749422 15.398903025 50.7245171394 4.22092876774 36.3777402011 4.79676310727 32.9638274223 12.1963332828
100 | 53.7599404182 28.633933753 57.9307070742 19.5074635614 50.5965945595 17.0868513671 53.2788275977 29.5800278536 57.840544168 24.7442064706 59.5333940207 29.5129682368 63.933625979 33.9980193818 61.6184504688 34.4323463804 61.1037341824 31.0630989022 50.4836575864 25.983153175 62.2906638616 25.8383042726 47.4563974849 33.4568079676
101 | 32.3116118071 79.4234901033 48.4449601083 75.805322106 27.6283123536 81.4351277685 42.7539545815 69.5448295322 43.6141063425 78.3318184447 37.1677812428 77.9227566101 29.6075914193 68.67142684 36.1321241832 84.1423514423 32.7357193671 58.2681122811 34.600724139 74.580799771 35.9664474846 76.4609325138 36.4159599258 82.3426860051
102 | 35.0983131877 45.8229497803 29.2385791295 61.7414510296 51.4787204097 47.6364351523 51.40683464 49.5127307485 45.4768330771 65.7558103326 46.7729666217 49.9101790273 51.4459973677 48.0896321538 50.548571757 50.1673631461 40.3268962476 50.2562688101 50.5051470858 58.1097863348 38.1333105747 44.2031384492 53.7481379735 41.1299179332
103 | 27.5639086303 20.0986199619 34.5074204256 27.1791738102 26.6501031675 17.7028522333 29.1353097657 29.6476113303 30.5986914249 26.2646336367 26.0590798262 23.5767461803 26.1795789972 26.173312453 23.0333511172 24.1004476156 38.8435289544 15.3830284619 31.9273353428 18.2452410916 29.6673158522 26.2174006891 36.8103875941 14.6243209583
104 | 35.022668676 44.8538138719 26.1648891415 42.6339977651 52.4240394312 48.3684634264 50.7058580458 49.5900984286 46.1732522066 32.4674827356 45.642333901 46.1606149737 51.1699842502 49.4577721937 52.708690905 50.2040079385 38.9720894675 51.4283179632 50.7467217507 46.8611040986 36.6342981645 44.5129640143 55.2266717503 43.3881233394
105 | 70.1582918741 82.870662723 61.2640621914 75.8348643595 73.4614169575 82.5142789395 73.7192801639 89.6250307415 74.1640034703 85.8739325641 77.1184352257 92.1524073907 65.238633772 85.3860731277 87.2204223492 89.5096435042 58.1419852753 92.4641823191 69.0599900296 94.0182408253 72.8927345675 99.690102848 84.5184103867 94.5017550911
106 | 42.8207884307 11.0944166426 48.1772234093 19.96348799 49.5875708593 17.2233110688 42.3914199313 9.51085241999 44.9505883814 21.4411258134 41.3971055659 16.3395327685 38.2529045344 10.1970941331 43.2146587325 15.8412505464 39.2563516911 15.6554996225 50.5528084414 12.5285522342 36.363582259 12.8762067776 37.7217019004 18.0122624378
107 | 72.1961753288 55.2401640604 74.262754322 68.2089784417 72.1003255187 50.524411015 64.238099481 49.667282978 70.6063408095 64.3718611942 67.6237266365 55.3555230436 75.7054910962 55.9478419239 63.6295545625 65.3682808958 77.5048078526 63.1701682654 68.1130628556 53.1719870384 66.8616892768 58.3579212055 57.1513160296 54.3043122325
108 | 69.4953801996 83.0388941089 61.9248701522 75.4632512068 73.1152239018 82.2659346111 75.4658231729 89.5701173547 78.7622164499 81.0767016507 78.6944284536 91.0519005025 69.1495584844 83.1773088386 82.8407172021 85.3475346488 60.3042585363 86.1020652574 68.9009665872 91.7659880623 70.4947256575 91.6361883376 89.1638748696 89.3897063991
109 | 44.8756477219 64.5354470563 49.2059494321 75.890997526 51.5168360115 47.8728833231 43.5355511551 69.8022628259 41.4856505182 69.4638623276 44.1914003424 60.3477148741 40.9908223727 58.5953671711 37.8052421178 65.3526082634 40.3623128634 63.3708110493 50.5125894486 67.0990512674 40.4620273227 58.0612358439 47.5960680435 67.0599531589
110 | 58.2274283761 9.59425730068 59.0711495765 19.5658578269 50.4361300186 17.8122796711 56.6455284536 9.56795636591 54.9721268872 20.3193982533 56.4321635388 18.5019042466 54.7369958695 15.9899900957 53.0471607534 25.3452928659 38.8520375212 15.3017987003 50.6433480576 21.8076091897 62.5725862604 21.2706699757 44.0839808086 28.4531427686
111 | 69.9652878617 58.1254227911 70.7759821649 71.1906444227 72.6904044112 51.9081550415 64.8817827824 49.5223607029 67.3869471106 67.6091749531 63.9154408733 55.5715864741 70.8436584403 61.0800007039 63.3624913324 61.8673178694 64.9851007919 66.9129302181 68.7150764885 52.7839240768 65.0423104784 56.3958340115 67.3222355456 59.9776127555
112 | 66.981764276 62.3670928803 47.2909431902 75.5456520641 52.4260007964 49.0858120003 53.1826375952 49.5792906103 58.0729718328 67.5352410613 55.3430884226 50.6588161179 46.0848469002 54.241648058 50.1293995037 52.1767329609 46.2831430196 44.5858632597 50.5094281681 58.3349054063 64.5805333982 44.6987047249 53.970346777 58.3222263461
113 | 43.2080999397 10.9573747342 44.5585411386 20.9513237448 49.8928780702 17.2987207279 49.0019343675 9.51314147118 53.7419598031 16.3543344997 50.3527426877 18.4425859785 55.0242672823 13.7997825853 52.0598829301 24.7811179349 38.9790108301 14.7912978134 50.5102676927 19.275278754 59.0158758758 14.8038416355 40.5821345498 23.193847975
114 | 63.3424281243 85.1983977411 64.3769965296 74.5422123925 74.2144609441 82.8611136538 66.1769921164 69.8677292155 64.5709488641 78.481397685 64.410453894 74.7016847088 70.8328544063 59.457915746 64.7397132079 66.8587109109 63.9208586632 72.6626592731 68.8755679825 71.81611673 66.7260552238 72.191119294 72.1358226003 66.0148266894
115 | 61.8941142047 85.5365012081 65.719336823 73.9384742586 73.6969897946 82.4241427069 64.6896340773 89.8804768823 66.750326078 81.244828486 67.8537006216 90.9782943002 61.4359336567 90.6293373206 63.2061867617 91.5345067804 58.4567907471 91.0883971195 69.3528450421 85.2024656993 66.0457622214 90.3404780781 80.5661987672 79.3860100973
116 | 35.0247964888 48.4780527323 25.7526012727 45.512193929 26.9142945732 47.8720377242 34.0161641016 49.5923131741 41.9128524399 34.8850608511 36.0668525678 46.7771018934 32.9126462137 35.0273451664 37.5702175095 35.4750858391 35.0705681662 54.7763996776 31.592491511 46.5525616212 36.7698419874 47.6915384047 52.081178532 38.664614177
117 | 63.7466676639 85.001381992 58.5639507779 76.95368768 74.1329824058 82.7415842797 71.4912567944 89.779520813 67.5878550673 85.1288245695 66.8847012287 86.597929143 70.1945058902 82.53970046 66.0141871836 96.2281355527 60.4562922052 85.5589584116 68.7152792139 89.800543242 66.7007853199 88.0740036304 78.2959074615 80.9009883751
118 | 46.0412099294 65.4758392727 56.5142707059 76.4130323533 52.3012195588 81.7777763908 37.8276395996 69.7771406255 41.8914182002 74.0751560438 48.1322033888 74.1680443399 55.5971034504 76.8262649892 51.188572282 78.5169591321 54.9670975336 79.3752215335 50.7464104076 67.6866861081 40.6884527063 70.1500618604 43.0417365468 72.914360436
119 | 68.7294427024 60.7336130999 62.2453274295 20.4452846038 50.6484596468 49.485152531 64.1861995591 49.4996052109 56.0936470735 33.7048951699 57.9877595341 46.3640224394 46.4034031167 52.5061810575 52.0458461599 51.7855131037 71.0358206277 45.5012218355 50.5147200943 51.7692441926 64.0504148025 45.9750826254 57.8462873861 46.5640667963
120 | 51.2421202604 28.8174309931 60.7503274965 20.0070302936 51.781171727 47.6943593751 58.2509400812 29.5053628912 54.807933746 34.8238656601 57.279473983 39.2244044428 61.7069354708 39.3427535092 59.1341409144 31.1716860043 49.819028103 26.0631818036 50.4855925972 45.0640220551 61.7537071317 35.0403563339 56.5537932082 44.9172932588
121 | 44.9260102589 30.7306427677 41.6659976963 21.9102474315 48.9476556535 17.4538463899 45.9814961806 29.8026603538 42.1041040475 22.0754807492 42.7317067706 27.1053007737 40.0334682823 31.2062591849 49.6912508641 22.0962342027 41.2046648991 22.8884826143 50.4961070936 30.9566185758 38.3654407223 30.6377347943 40.7759312017 22.4965280155
122 | 39.864029415 12.1268508266 38.965853038 23.1715029542 49.8839935056 17.6668921498 41.4594860523 9.51510814628 40.6322278516 20.2134985881 41.3433769218 17.5565871076 36.636745459 12.9497597418 49.6274272655 20.8715225546 38.8973487908 14.5684951867 50.8939617067 17.8979192857 35.34979839 18.9409711345 41.4686321434 21.2765237451
123 | 65.3898783708 32.3628003919 50.8130365968 19.2122677378 51.1815320029 49.224026764 44.5187768636 49.5412547105 52.9473739254 34.6964496121 54.5300116922 45.1212923634 54.5548622149 46.541123971 45.8987967947 48.4828204612 43.0747680452 29.164874806 50.5334297151 46.1165674327 63.1639155552 43.8224977254 53.3207105454 40.2958577294
124 | 35.1280373252 50.6199893427 25.8193031751 45.3831411049 27.7435859378 49.1443959413 36.1830557018 49.5655904728 37.1619145725 34.9270199582 36.2615304473 47.1868575228 30.2959037105 40.3533451474 42.4703885061 42.8972842245 42.7892463641 47.3809757547 31.4075931099 39.5576209008 35.5037350539 44.4356192297 54.1787181963 41.9252481403
125 | 35.1883283318 46.0186231248 33.7188307397 28.0245711227 52.4097627886 49.6908809656 52.3794998192 49.6427569923 43.6260889369 31.348637041 45.89536139 43.0091090793 44.6467916493 52.9167718811 41.3303559044 40.5645382132 45.7990320984 41.6203580309 50.5106479209 35.7609310166 40.2407553506 41.2188034396 52.2224415414 39.4857300768
126 | 33.5564810906 15.4379215402 43.7686656094 21.2399260471 27.1641774014 18.0357549152 31.9792879527 29.5098860158 38.4578606572 25.1462223682 36.7428693581 21.318797784 33.0955730397 15.250014781 41.5782930254 13.1583503102 39.2313325864 14.6819535256 31.7447176563 15.1553267336 35.5076996558 20.441871323 39.5894713256 23.1674666016
127 | 41.8493028594 33.1107809186 32.0462240563 29.6006700423 51.8972499409 48.8535411055 41.7323964659 49.9885480173 39.8025029961 31.6694161868 44.2730279654 43.0976170646 48.6558094126 50.9624523811 47.9968834075 47.173794809 44.8572997366 37.5527243552 50.5283792653 45.2925329434 35.7116966795 41.7368369355 51.1445896969 38.1685585049
128 | 91.4645553108 54.276119954 79.9803917596 60.1859548741 72.2591570777 50.9603155156 83.5505483996 49.7433465894 87.6953524862 64.1675056408 90.8189821192 52.9117912654 93.8766866378 58.1551407173 81.0418345985 53.6322952814 87.238260447 63.3603449303 84.7381057579 57.57152424 75.9194605547 55.9642503397 73.954314656 69.025919772
129 | 50.7513289755 28.8254277825 44.1631854006 20.9378734957 51.167521452 17.420245605 51.0466439119 29.6348173571 55.0313695649 24.2329568985 50.2495137191 22.5105551702 47.6916189992 19.8530868781 55.2999913723 27.6725405069 39.7591387019 16.0581069663 50.4960462619 28.775752956 62.5959861342 13.865480591 46.6030787786 29.3203577253
130 | 37.1382313902 56.2347460305 28.1469187485 59.4425893647 27.6203663353 48.5659590648 35.2208281028 49.8246276902 35.7875693564 70.4508935185 34.5302742892 55.1525286173 34.7439317636 63.239139011 24.4391357692 53.256009259 34.6595066063 55.7964072648 30.9024665339 51.3979227214 36.3592061996 49.6894703669 47.0588296198 67.9140671318
131 | 51.3245955776 29.3694279221 48.4596386093 19.8258283407 49.9307207142 47.4673197077 56.1078154776 29.5897014114 45.7153978533 29.5048728853 52.2933015779 39.0275321146 55.7384109333 44.006451194 48.8651686953 47.4953310233 45.0795042397 39.2460626831 50.4990447704 45.219311508 60.9533240866 35.2614209174 51.2996556522 38.151390624
132 | 50.0617177646 66.8388631061 62.6400655563 75.1059514675 52.4681488416 48.4153538361 52.3050356595 49.586029536 66.8294472512 70.9572107699 60.3723009041 59.4480651933 61.6329921268 66.2007109572 59.3629255376 58.1221303308 71.4986084304 63.2664972311 67.4836234184 58.7608751022 61.9844532942 51.5996098175 51.6747930102 61.3069905569
133 | 71.1286744081 82.4103384088 71.3551809876 70.7365209804 74.8559822601 82.9154318552 65.1829663096 69.5356497432 72.7684415802 72.2759424228 70.9826609713 73.9097293958 73.876044464 78.6499451195 73.8686918583 74.365377497 64.6284484268 68.0176220577 67.7912232301 76.6345549657 69.0248544179 74.3658126733 74.4877699677 70.2840828022
134 | 62.7621580839 65.3342922465 62.2211004565 75.2918400224 73.236980457 82.042128935 71.7499169467 69.5816407003 69.2157687261 70.6739445208 69.3511769343 69.6848425533 64.0650107416 67.5431990412 71.0084559182 72.5991473224 62.6643017162 77.3047015503 69.478095457 71.6466840898 69.3283603587 68.2658788994 70.9151728548 64.8743593268
135 | 68.2631690948 83.3928038006 60.8082489671 75.5677831969 73.4620941227 82.5367663286 73.3533905524 89.7280834699 65.2920773809 81.8698809666 64.7606448508 87.5143671854 68.6186574849 83.1450787214 65.8885219735 93.5413221267 60.8881776628 81.8282798624 68.798837139 88.5662367162 64.9587274236 86.788072428 76.9253677933 85.8275947589
136 | 47.7143304937 66.1693254562 56.6133335208 76.2824639356 27.3620534602 81.8157904304 39.0257199089 69.7925041639 34.1693997898 74.6333930333 37.5739383201 68.2599582353 33.7420210016 68.1761618675 39.3239149275 68.2074735382 27.5777447689 62.5184468587 31.2194812334 60.7497323694 35.9029270448 69.9326613341 39.2799713038 79.5306293291
137 | 53.3909749147 9.47659774941 47.828630597 20.0159817648 51.1207066875 17.3947014893 50.9518060784 9.56757750393 52.2972508715 18.4544641946 50.3719234268 18.8511111632 46.0737878855 22.7021766114 47.0362598198 19.4567595279 40.1629157442 18.0084443179 50.5124479961 19.7877612592 62.2287012911 18.4316526088 44.7641917885 25.4829270365
138 | 60.0788225062 29.3294901661 55.0609964096 18.7760367713 50.5367036851 17.3415187427 56.1850795225 29.7272917464 62.8920160731 23.9212796723 58.6103385138 25.3264185715 45.7820627638 22.5254831843 55.2644171521 27.979646521 51.0438829983 27.5320193458 50.5021389989 29.6734435663 65.7610427799 25.4249979812 45.6894919283 30.4982485081
139 | 67.0688514179 62.2757080212 72.0776113868 70.7350247034 52.4107069522 51.5750330675 55.7047279218 49.6997257124 60.2851241478 69.5922617796 60.974068899 52.1737161474 55.300323754 44.8267044955 54.4325284089 55.0420672447 65.344542801 67.0862321349 69.2956313871 53.3111234754 63.717134406 57.9297172295 56.5656104828 55.0790049267
140 | 48.4806233045 9.78936730909 40.5466818982 22.750153119 50.4937192377 17.1776021089 50.6789672694 9.68187618873 55.5667252079 18.7720780041 51.2716198477 17.7989003539 50.9386403876 17.7051520618 50.8620164739 22.2804402981 41.4759633693 16.9687852269 50.9568786264 20.8191365864 60.6414986925 22.3562714183 45.3086600865 26.4068602066
141 | 38.3303831911 36.6401749551 36.2186392875 25.5092494312 27.8390086322 49.7707408011 33.4031658184 29.5662653577 33.6002874631 31.9702490493 32.5306118335 35.1442358024 33.1426658555 37.2820445887 33.6118755686 34.4414392522 41.8602703588 24.871703109 31.179108228 37.2644589281 36.1703232934 38.3905019554 41.6464988427 25.8096287553
142 | 75.5666109354 79.79350494 65.5602641512 74.4661969558 74.1037194415 82.4942552661 67.482077177 69.6257273029 67.7380919972 77.8043458937 67.0286227706 73.7120880682 73.612485663 76.7997003489 67.8046756773 70.4668148519 64.0629875776 70.3632376694 68.0060993451 75.2331666566 66.2606163715 73.3057355058 70.9373508824 64.7354190204
143 | 65.342854895 63.4890309543 75.6693118937 66.9496990316 72.5798472332 50.5879235624 69.5249496468 49.7418302092 72.2912258294 68.2846141662 71.8231621294 51.801994236 75.9661115945 56.1066045137 77.6848664679 49.6495235051 81.4735845494 55.2475375605 69.1966419802 57.0105100516 65.9949495365 50.496009825 65.1226687541 57.2102883078
144 | 58.156326506 86.0884980538 63.3338555681 75.1674610352 52.3573674622 81.8495188222 61.4465491669 89.9299387054 45.5148736705 83.6231138223 51.7258753296 88.2598907844 43.9680967255 83.6925675684 58.6999356553 86.6760645452 57.9679167635 91.4961842339 50.502999124 86.1430443949 63.8882156828 85.5242939375 42.0747025888 86.7621470282
145 | 59.9762207034 66.4365586203 63.6616292048 75.0209875351 52.6708104355 50.1132396455 70.259594146 49.5410037293 60.5318650331 69.9040392495 58.8293506485 59.1523350502 66.3902427236 65.4974406002 56.7347581344 55.9196279581 65.9177021099 64.2159720089 50.497404115 58.6335403234 63.3948125393 65.5996687054 51.6938804802 61.1985058019
146 | 41.2184950618 33.9143743701 47.0996001682 20.2184740503 51.0228694742 17.6444611807 49.8252928807 29.5119296683 47.0121406417 25.164203411 47.8245168621 30.3736430952 48.3478245476 20.1647239115 49.3045007035 21.5545872983 42.16428141 17.5327909125 50.5010434804 26.9487857692 38.0391260762 25.3498194029 47.8258653273 32.1475271621
147 | 70.9490431819 57.5695335157 68.9692703899 72.6167772465 51.1465476317 47.9850897892 58.6561396379 49.5078191964 57.2857197502 67.4571845337 58.7120492807 53.4741104036 47.6199598928 53.4390192433 50.5667248932 51.5005246997 64.7816697483 68.6982776203 50.5061709575 40.6870937167 64.7331227445 59.8520026309 55.5797585237 56.8591764239
148 | 60.5905034178 85.6737632611 63.7278943546 74.7735561502 51.6271169534 82.442521141 63.6535736001 89.9117908486 61.0599302102 82.4506990912 58.4273620799 98.8086066907 57.3508184375 95.3228018559 62.4965461658 92.1477384961 58.4367720788 91.7936776757 50.5295078804 89.5070565762 63.7287468792 96.2624475 42.4819427624 99.9405408863
149 | 79.3795586977 76.8183483183 67.5398379039 73.2875018826 72.7639056548 81.747378725 89.5199216536 69.6213689098 85.9092091977 76.8860961186 84.7671857056 78.3829828693 81.8038756438 68.1165233479 78.0399460209 78.2889108972 87.7471710197 62.3644884037 85.3789318379 77.0909732521 77.9393881974 81.5933522247 82.2586757782 80.6849741887
150 | 54.1039680401 28.5486815203 50.570876253 19.3659637939 52.7147488521 48.9953913799 59.2602403146 29.5925410843 54.941128709 29.9598560406 53.5371603018 37.2178686292 55.622203599 42.7666820818 58.5584578384 31.3452694053 48.8207211622 25.3094332025 50.502367777 28.2419589386 62.5672215089 36.6442370501 51.0169456332 36.4703736318
151 | 55.9071451284 86.1903552112 52.1194633503 76.4118346756 52.1156667203 81.6858617343 54.6140799031 89.5190185351 54.2175644964 79.3122954394 52.3698071509 90.0798651909 56.2052254685 93.073202805 55.3173804094 82.5208350152 57.381422417 89.2189746857 50.5002004285 94.3258321374 63.3308050967 87.2946174216 41.709425056 82.9514261224
152 | 37.0165144028 13.4291751792 34.5071339616 27.1642063926 27.1840446364 18.3913597653 31.3609499678 9.55828087147 40.442412783 20.1777987813 36.6424287184 14.1205994871 35.770735662 11.8445413698 37.1518657158 9.93271742597 40.5364610928 16.5513080945 32.9380427093 8.63978961486 36.2874555151 16.2143671898 36.6416693695 11.7829499141
153 | 47.1883875067 29.6752046083 49.0350125321 19.6406705874 51.6501381423 52.1114643515 58.3656336584 29.7009467641 54.8350710379 27.9551470357 53.1898904001 36.31819696 55.6157796115 46.639858113 60.6272516939 32.9721007068 48.8665345414 24.5751512892 50.5044821749 38.2669994603 64.3374610582 36.9093134538 50.1489594303 36.42168634
154 | 33.8707616725 15.2176079695 39.3932582861 23.4661515295 27.0370819922 17.8810892907 24.0248866 9.50177668105 21.6478432609 17.0578454027 22.9556917312 3.28795271471 33.5544971369 16.3917102209 30.3287817174 2.7950266515 38.7017401979 14.5673501826 31.9061819625 4.09004916255 27.9658593382 0.100132835987 29.2378419818 0.201588700168
155 | 53.8873815954 67.3004304882 53.2370891467 76.3219241644 51.8508571121 82.3561777209 50.0745509698 69.8948534841 49.7407040525 72.3438433698 51.4897928186 66.2761429234 53.5670641452 75.0394835341 40.5289056335 68.4406177853 47.3057414672 63.5356320946 50.5146669474 72.8389401608 62.0177434581 61.5460696567 49.2409704851 64.6287137754
156 | 23.4128767577 24.9932889866 30.3050104189 32.2092580051 26.7269371682 17.7606977249 11.197851234 29.6061393437 23.4135107237 24.1160607719 17.4726406031 26.3816538233 13.5445167365 35.013161179 21.9602903889 22.9092689303 40.0715151506 19.7628785419 15.4234924837 24.4294436709 23.2093211678 24.452793942 32.2801934223 7.68228170481
157 | 59.2031455585 66.4731555139 59.9120902337 75.955628541 52.322212218 50.5645507887 54.5263017574 69.7995711789 59.732748768 74.5995813235 56.1119002815 64.973613647 63.4499600034 68.2528290581 62.0818084194 63.066854555 50.9874160325 66.9708472018 50.4970288362 60.8725160956 64.6893918058 68.9491937962 48.6535940233 65.1013350744
158 | 53.3421285851 28.5361891088 45.6577675486 20.6287283664 48.8227262477 17.6769138553 55.2926295285 29.8720061971 51.84188275 24.326537989 48.66259658 25.1442381682 46.6213468664 23.0272234811 47.0046631461 19.5700288639 39.7273219523 17.7427833259 50.5147481143 27.5220118937 38.8151502148 21.2445468092 41.9672327164 24.7383350808
159 | 37.9773079928 58.4086893442 32.2983250309 66.1676515627 27.5744015758 49.0564124617 43.1671727103 69.8134584091 35.1858799938 71.7877972645 35.0097546447 61.8414463794 34.4301113995 63.3208313577 36.8488123893 66.1443788995 27.8315530614 63.4577427226 31.823457401 58.0353997928 35.879158191 60.8088472794 47.786047996 66.6584328384
160 | 63.8954363003 31.5892319233 74.2818223341 27.5125582186 49.8660272233 48.5332686485 65.9235673197 49.5314146343 64.7894961861 28.6067623899 62.0582574774 40.5892174066 59.9011470304 38.4103840156 65.3684744523 37.0544429184 60.7180453494 32.0223986097 69.2222738169 38.320686636 64.2149676841 40.8995484956 57.3614779333 46.0377041966
161 | 46.8009200573 65.6309411433 48.8743251498 75.8619112088 50.7188153686 82.4122022415 36.5101399692 69.5717553448 39.3233407753 72.3579996199 42.7602301599 65.5735927972 43.969600506 57.2751280357 38.6735045976 66.1333017819 40.2717738558 63.260469899 50.5486961277 66.5047967709 38.1522197259 63.4183421967 47.3991211109 67.8245340581
162 | 54.1752574808 67.2443290808 55.0217479929 76.3271030184 51.1166125443 82.2805033838 53.0336707961 69.5954263098 49.7222837847 72.8586203342 51.7819495499 69.1587743442 60.4652675892 70.8583590378 52.7651460265 80.8138690746 54.9542826669 79.6366538678 50.4868166013 69.0395731799 64.7802449882 75.0116853872 45.7754012678 70.2905446213
163 | 35.0328074392 47.0161994793 25.6309460655 46.3527331305 49.684995873 47.1423974148 37.7292304723 49.5220928555 46.8377217616 30.9104421207 39.7684052539 46.2641493457 48.2802163974 53.8210505451 44.6449811273 42.9867249579 39.5584807511 50.7316883959 50.4767272764 42.1540722918 37.3115354145 40.0945652786 46.5279078819 32.0969781607
164 | 36.5966714028 55.1393412864 32.3387625278 66.1520509957 51.7576790559 48.1544667456 48.0477293132 49.6156425795 56.4486800942 66.246165661 49.9037438242 51.5643036666 45.6426860539 54.019210238 56.3557499462 56.3698395265 38.5408249205 51.6509540839 50.5664383268 55.2166554481 39.1455743003 55.9300911182 50.414496968 63.515688046
165 | 60.1789616396 85.8349003354 58.138806143 76.277404642 74.3722689113 82.841644194 69.5499462754 89.9104611135 67.6408762363 81.0638026744 65.9508065333 81.54311104 68.4337980417 83.9871029806 62.7908403333 90.7745139214 60.8818246549 83.691361165 69.4276602398 80.8817003321 64.7004658027 84.2410697359 75.6558080528 70.6232343768
166 | 43.8392804403 10.7675919087 39.3874876095 23.3314675397 50.3586042758 17.3404105797 55.2946405658 9.65280890816 51.0887333136 17.4207079071 45.7255676885 17.6088516715 48.0787604728 19.8586758849 45.6023560911 18.1880002036 39.0779817408 15.1217331245 50.5164841444 18.7714619401 39.3157321673 17.4249064009 38.9350007631 19.9303438004
167 | 71.0631008112 82.413145609 64.7203758414 74.540808488 74.669864644 82.6451967575 77.9209150204 69.6563169591 70.190150431 79.8160434122 73.2476800243 76.3457223656 71.5324408709 78.1226215562 73.8234267297 72.8556524532 63.4211270407 71.8215741252 67.717859049 77.420423327 66.9610968797 78.9177218706 76.8623729688 74.745466245
168 | 61.0078590279 66.0069152952 75.226897994 67.1448239224 73.1702631156 51.291784998 62.3538609914 49.7241800426 65.3288389858 69.9687837238 64.7406276978 56.8564285768 66.3712570227 65.2591682511 63.0282586945 60.248785245 69.6307974648 63.0262676889 67.3252661847 59.2108714884 63.5634172811 51.577217772 68.3848142834 61.6475417891
169 | 40.3937808449 11.929502425 43.862718245 20.6314888182 50.3430362625 17.3356957351 41.7635727792 29.525716257 36.4135340707 20.7575456385 39.6911524411 21.5543827363 35.6989957633 31.4793558586 39.3325931777 11.5122032727 39.9256760618 20.0072995211 31.2807594765 28.4032209379 37.7277740702 20.8742181893 39.8149308163 22.568888749
170 | 73.233261546 46.2728956309 73.4858887436 26.6605188382 72.2763997441 49.8925756023 67.4640887007 49.5186509596 67.3338017288 32.7200934885 65.1849858944 42.3342953927 61.8813203042 38.6979087885 70.6107189529 43.3463018971 71.3351179851 45.4809640835 68.4440956963 47.0594283761 62.9085658938 42.0666778581 57.2787703942 46.0511276298
171 | 36.7463838589 39.6323328812 36.484234146 25.5511017726 51.9595008711 48.6311129889 52.571282651 49.5993534846 50.4660915116 30.3719906993 46.4543030372 42.1013187786 54.7638851939 43.3409145317 42.9876176802 42.5016350341 44.9003990351 38.6621087066 50.4998642204 35.7727775003 37.9688599138 35.9647173411 50.3199373427 36.9141354617
172 | 92.3164841827 53.6036606907 80.2408247052 59.9096419587 72.5113639515 49.5169965661 80.8146550388 49.6273622127 85.0253168668 69.8491345567 85.1014120196 49.879922604 81.0773713532 48.9912003221 83.8500085708 54.4582911121 81.0522739765 55.3514887285 83.2417661385 49.2468151243 71.7804033983 49.0292504888 63.6232793923 44.7199882091
173 | 56.5957268212 66.4861619186 57.3262668062 76.2420475436 49.3188735515 47.7677390556 55.0000382918 69.569366071 57.8179140686 72.4076932358 56.8076429645 61.3912422242 66.2887849338 65.5160158412 58.0981014539 60.8104526507 48.6837128248 63.0244180536 50.4992572732 61.3509393048 62.7178154915 64.8027380739 51.1519525045 61.8363641008
174 | 71.130198532 38.2845665483 77.8174982252 31.6230935286 51.2024349254 47.8424314409 64.7173880599 49.5918779658 60.0625439375 28.814777535 62.089831145 43.2953528917 60.6877687332 37.2357773929 65.9010356456 38.1969153868 70.0033169529 43.4749524852 68.2450551484 41.6621136629 64.7637676696 46.1743035443 64.780951339 43.5362519863
175 | 36.7297971525 56.1719024563 47.5321974167 76.1283827915 51.2493548382 48.8517496193 49.2430004869 49.5134390301 50.4927427013 65.8748574667 50.3739521609 52.7076059349 51.886224266 46.6827069143 50.2942389307 50.4738498423 43.3916127767 46.6762787816 50.5059850839 56.7111827006 64.8919512882 51.951138948 54.702571767 57.4194305761
176 | 69.4168237297 83.1690819018 58.5457781315 76.0633760797 73.2234625736 82.3312387934 56.4831269583 69.5710248572 70.091329673 77.740494552 65.9897949653 78.1267826946 72.0124711531 80.4303870915 67.1584637658 69.8248190808 62.5354760586 75.1119905477 68.9797275966 85.5207962242 63.2603814591 77.3890622663 75.9669447908 72.9888833529
177 | 49.2789675121 66.3053937582 57.4926729326 76.5844688705 52.3509264731 80.8660918457 55.4341035864 69.6341056637 51.1903999641 71.448639888 47.4033148956 71.7343964656 49.4085610552 81.0649934377 46.2240949429 76.44995472 53.5163193989 73.9696393907 50.5743164216 72.6262620941 40.3678836174 70.2957526802 42.4660072971 76.8475487077
178 | 71.917940263 40.1475618392 81.2800201379 38.5277880637 72.0155954415 49.749196998 58.4294445586 49.5799412382 65.1787752457 30.4053395535 65.2987403534 44.2958416221 61.4013458389 39.8634327541 71.1249285487 43.2907599835 70.0980666505 44.4516281802 67.6799259207 46.8313098387 62.1349086032 41.9585055143 67.4328987652 39.9201854454
179 | 55.1932540033 86.1445825547 50.8059149803 76.1704384046 51.392090777 82.0253019846 50.9726760429 90.4484143288 50.2474856463 82.6942674236 49.3171390944 98.5149448495 56.053366038 96.2505216153 44.0090721269 92.1207239033 58.9620236832 88.87563423 50.5124816586 91.9553135211 42.5529773627 98.1834095833 36.8585151844 99.6860139919
180 | 60.7555046571 66.1070156579 67.3169677374 73.4031840093 73.3294708766 82.3957569897 63.7985862345 69.5619308052 72.3540983643 73.2809688616 71.1123423883 68.8231486421 81.4210661089 71.1417287966 61.1208859477 62.5828571338 78.3696651505 62.940285322 69.0808816745 70.9612413759 66.3985808063 68.4773515844 69.6473297403 63.5093554295
181 | 52.7183843236 28.6738559507 58.2079290267 19.5358274706 49.8036552414 17.3541049007 55.7157783767 29.5022035434 56.3442763738 23.6860012577 52.313818423 27.8787342702 47.199484367 20.5057622347 62.4764683037 35.1340037568 50.6066453722 26.2695348794 50.5031351875 27.890942171 61.6650987853 25.074641231 48.1174941328 33.730109089
182 | 61.5176188718 29.7485037895 65.751489026 21.3497943962 72.2623300967 51.0379274616 63.8475160562 29.5347722075 61.0239552705 33.3590429327 64.0379035674 35.5295377024 65.8682366975 36.7517539486 67.0776479466 39.7066183708 47.9457694142 23.7863278211 68.7125615627 31.9667249678 64.4968090058 38.1282411509 69.1079175823 37.7777573003
183 | 37.3042826949 57.3698935108 31.3310098114 65.0022487368 51.3503610268 49.5809716854 38.2233733229 49.8536386224 44.6507777443 70.320552188 45.2692918023 50.6774651068 45.7434444612 54.1890043203 46.7700234231 46.3134495219 32.1522204992 57.8496963526 50.4868921879 53.1447883604 39.9642000416 56.688948334 52.4419376013 39.3034927542
184 | 42.5811791949 32.6720139074 35.4985542811 25.8492644063 26.8276058091 17.7805532034 42.6492040606 29.5079304906 33.0644395142 26.8465366859 34.5734013121 29.761074167 33.434381747 35.9194959831 31.6106715999 29.5708973609 39.8645674676 18.6409505368 32.7828205264 26.2908249077 32.5841665341 27.2438076007 43.7040069952 28.6001329398
185 |
--------------------------------------------------------------------------------