From 73a3878ea25865e061a8c640c37de9f79eda02ac Mon Sep 17 00:00:00 2001 From: Rucknium <86333515+Rucknium@users.noreply.github.com> Date: Mon, 1 Nov 2021 16:07:34 +0000 Subject: [PATCH 1/4] Update README.md --- Statistical-Monero-Logo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Statistical-Monero-Logo/README.md b/Statistical-Monero-Logo/README.md index b004cbb..b10079e 100644 --- a/Statistical-Monero-Logo/README.md +++ b/Statistical-Monero-Logo/README.md @@ -3,7 +3,7 @@ These files create an animated gif that visually builds a Monero logo from rando The probability density function was constructed from the coordinates embedded in this SVG file: -https://raw.githubusercontent.com/fluffypony/monero-logo-artefacts/master/Logo Subsequent%20Tweaks/monero%20file.svg +https://raw.githubusercontent.com/fluffypony/monero-logo-artefacts/master/Logo%20Subsequent%20Tweaks/monero%20file.svg To create the gif, first run data-construction.R . This may take days to complete since over 50 million observations have to be drawn from a cumulative distribution function that is created through numerical integration. Then run gif-construction.R . For best results, it is recommended to install Cairo, which is software separate from R. Read gif-construction.R for more details. From c8fb4c1b61509e2ebfa2c7ff477d3e47f1300395 Mon Sep 17 00:00:00 2001 From: Rucknium <86333515+Rucknium@users.noreply.github.com> Date: Mon, 1 Nov 2021 16:10:15 +0000 Subject: [PATCH 2/4] Update README.md --- Statistical-Monero-Logo/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Statistical-Monero-Logo/README.md b/Statistical-Monero-Logo/README.md index b10079e..9025e2b 100644 --- a/Statistical-Monero-Logo/README.md +++ b/Statistical-Monero-Logo/README.md @@ -1,6 +1,8 @@ # Statistical Monero Logo These files create an animated gif that visually builds a Monero logo from random draws of a probability density function. +![Statistical Monero Logo](Statistical-Monero-Logo.gif) + The probability density function was constructed from the coordinates embedded in this SVG file: https://raw.githubusercontent.com/fluffypony/monero-logo-artefacts/master/Logo%20Subsequent%20Tweaks/monero%20file.svg From 3c03cb78d16b7f6a125e0a03fbd94f8d94944111 Mon Sep 17 00:00:00 2001 From: Rucknium <86333515+Rucknium@users.noreply.github.com> Date: Mon, 1 Nov 2021 19:29:14 +0000 Subject: [PATCH 3/4] Remove superflous line in data-construction.R --- Statistical-Monero-Logo/data-construction.R | 2 -- 1 file changed, 2 deletions(-) diff --git a/Statistical-Monero-Logo/data-construction.R b/Statistical-Monero-Logo/data-construction.R index 1f8e974..5fa34b8 100644 --- a/Statistical-Monero-Logo/data-construction.R +++ b/Statistical-Monero-Logo/data-construction.R @@ -47,8 +47,6 @@ M.outline <- M.outline[(-1) * (which.min(M.outline$x) + 1):(which.max(M.outline$ M.outline <- M.outline[(-1) * c(1, 9), ] -M.outline <- M.outline - M.outline$x <- M.outline$x - min(M.outline$x) M.outline$x <- M.outline$x / max(M.outline$x) From 4cfafc052fede45a2dbf4101676c3b7857064657 Mon Sep 17 00:00:00 2001 From: Rucknium <86333515+Rucknium@users.noreply.github.com> Date: Thu, 4 Nov 2021 12:05:23 +0000 Subject: [PATCH 4/4] Fixed closed parenthesis --- Statistical-Monero-Logo/data-construction.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Statistical-Monero-Logo/data-construction.R b/Statistical-Monero-Logo/data-construction.R index 5fa34b8..904e7ad 100644 --- a/Statistical-Monero-Logo/data-construction.R +++ b/Statistical-Monero-Logo/data-construction.R @@ -86,7 +86,7 @@ for ( i in 3:48) { save(generated.logo.observations, file = "generated-logo-observations.Rdata") # When i = 48, y will be length 57280991 - print(paste(i, length(generated.logo.observations) ) + print(paste(i, length(generated.logo.observations) )) }