Compare commits
25 Commits
v0.2.0-bet
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d6907eb93c | ||
|
|
804fd351d2 | ||
|
|
0606b4b29d | ||
|
|
9fffe1de17 | ||
|
|
937dcb5bb3 | ||
|
|
fc7e9cf510 | ||
|
|
149f5d5aca | ||
|
|
e93df1e53c | ||
|
|
7450075187 | ||
|
|
44f3ccfc10 | ||
|
|
0a4af76d3a | ||
|
|
180f482931 | ||
|
|
4b9f5dc5ef | ||
|
|
acf01b5394 | ||
|
|
03a07a762e | ||
|
|
da59682b74 | ||
|
|
1b268dbfd1 | ||
|
|
97a5b06530 | ||
|
|
670b87b184 | ||
|
|
8de24395cb | ||
|
|
edea2c9e0d | ||
|
|
ed4f626fd8 | ||
|
|
578528e64d | ||
|
|
be273dcbfd | ||
|
|
94ec1f2dfe |
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
benchmarks/** linguist-documentation
|
||||
40
.github/workflows/docs.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: Deploy benchmarks to github pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: "deploy"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.url }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v3
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: "./benchmarks"
|
||||
|
||||
- name: Deploy to Github Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v1
|
||||
45
.github/workflows/nightly-release.yml
vendored
@@ -18,6 +18,7 @@ jobs:
|
||||
- pallas
|
||||
- vesta
|
||||
- bw6_761
|
||||
- baby_jub_jub
|
||||
- all
|
||||
target:
|
||||
- x86_64-unknown-linux-gnu
|
||||
@@ -27,7 +28,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Install stable toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
@@ -43,14 +44,14 @@ jobs:
|
||||
run: |
|
||||
cross build --release --target ${{ matrix.target }} --features ${{ matrix.curve }}
|
||||
mkdir release
|
||||
cp target/${{ matrix.target }}/release/*.a release/
|
||||
cp ../target/${{ matrix.target }}/release/*.a release/
|
||||
tar -czvf ${{ matrix.target }}-${{matrix.curve}}.tar.gz release/
|
||||
|
||||
- name: Upload archive artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.target }}-archive
|
||||
path: ${{ matrix.target }}-${{matrix.curve}}.tar.gz
|
||||
name: ${{ matrix.target }}-${{ matrix.curve }}-archive
|
||||
path: ./sdk/${{ matrix.target }}-${{matrix.curve}}.tar.gz
|
||||
retention-days: 2
|
||||
|
||||
macos:
|
||||
@@ -67,13 +68,14 @@ jobs:
|
||||
- pallas
|
||||
- vesta
|
||||
- bw6_761
|
||||
- baby_jub_jub
|
||||
- all
|
||||
target:
|
||||
- x86_64-apple-darwin
|
||||
- aarch64-apple-darwin
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Install stable toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
@@ -89,45 +91,48 @@ jobs:
|
||||
run: |
|
||||
cross build --release --target ${{ matrix.target }} --features ${{ matrix.curve }}
|
||||
mkdir release
|
||||
cp target/${{ matrix.target }}/release/*.a release/
|
||||
cp ../target/${{ matrix.target }}/release/*.a release/
|
||||
tar -czvf ${{ matrix.target }}-${{ matrix.curve }}.tar.gz release/
|
||||
|
||||
- name: Upload archive artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.target }}-archive
|
||||
path: ${{ matrix.target }}-${{ matrix.curve }}.tar.gz
|
||||
name: ${{ matrix.target }}-${{ matrix.curve }}-archive
|
||||
path: ./sdk/${{ matrix.target }}-${{ matrix.curve }}.tar.gz
|
||||
retention-days: 2
|
||||
|
||||
|
||||
prepare-prerelease:
|
||||
name: Prepare pre-release
|
||||
needs: [linux, macos]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: master
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: |
|
||||
*-archive
|
||||
path: ./libs
|
||||
merge-multiple: true
|
||||
|
||||
- name: Delete tag
|
||||
uses: dev-drprasad/delete-tag-and-release@v0.2.1
|
||||
with:
|
||||
delete_release: true
|
||||
tag_name: nightly
|
||||
run: gh release delete nightly --cleanup-tag
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Create prerelease
|
||||
run: |
|
||||
ls -Rlah ./libs
|
||||
gh release create nightly --prerelease --target master \
|
||||
--title 'Nightly build ("master" branch)' \
|
||||
--generate-notes \
|
||||
--draft=false \
|
||||
*-archive/*.tar.gz \
|
||||
./libs/*.tar.gz
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Delete artifacts
|
||||
uses: geekyeggo/delete-artifact@v1
|
||||
|
||||
3
.gitignore
vendored
@@ -1 +1,4 @@
|
||||
/target
|
||||
expanded.rs
|
||||
stealth_address_kit.h
|
||||
stealth_address_kit.nim*
|
||||
|
||||
517
Cargo.lock
generated
@@ -29,6 +29,21 @@ dependencies = [
|
||||
"zerocopy",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "aho-corasick"
|
||||
version = "1.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "anes"
|
||||
version = "0.1.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
||||
|
||||
[[package]]
|
||||
name = "ark-bls12-377"
|
||||
version = "0.4.0"
|
||||
@@ -86,12 +101,24 @@ dependencies = [
|
||||
"ark-serialize",
|
||||
"ark-std",
|
||||
"derivative",
|
||||
"hashbrown",
|
||||
"hashbrown 0.13.2",
|
||||
"itertools",
|
||||
"num-traits",
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ark-ed-on-bn254"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "71892f265d01650e34988a546b37ea1d2ba1da162a639597a03d1550f26004d8"
|
||||
dependencies = [
|
||||
"ark-bn254",
|
||||
"ark-ec",
|
||||
"ark-ff",
|
||||
"ark-std",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ark-ff"
|
||||
version = "0.4.2"
|
||||
@@ -156,7 +183,7 @@ dependencies = [
|
||||
"ark-serialize",
|
||||
"ark-std",
|
||||
"derivative",
|
||||
"hashbrown",
|
||||
"hashbrown 0.13.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -226,6 +253,17 @@ dependencies = [
|
||||
"ark-std",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "atty"
|
||||
version = "0.2.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
||||
dependencies = [
|
||||
"hermit-abi",
|
||||
"libc",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "autocfg"
|
||||
version = "1.3.0"
|
||||
@@ -247,6 +285,24 @@ dependencies = [
|
||||
"rustc-demangle",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "bumpalo"
|
||||
version = "3.16.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
||||
|
||||
[[package]]
|
||||
name = "cast"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.98"
|
||||
@@ -259,6 +315,54 @@ version = "1.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||
|
||||
[[package]]
|
||||
name = "ciborium"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
||||
dependencies = [
|
||||
"ciborium-io",
|
||||
"ciborium-ll",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ciborium-io"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
||||
|
||||
[[package]]
|
||||
name = "ciborium-ll"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
||||
dependencies = [
|
||||
"ciborium-io",
|
||||
"half",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "3.2.25"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"clap_lex",
|
||||
"indexmap",
|
||||
"textwrap",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "clap_lex"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
||||
dependencies = [
|
||||
"os_str_bytes",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "color-eyre"
|
||||
version = "0.6.3"
|
||||
@@ -286,6 +390,67 @@ dependencies = [
|
||||
"tracing-error",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "criterion"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb"
|
||||
dependencies = [
|
||||
"anes",
|
||||
"atty",
|
||||
"cast",
|
||||
"ciborium",
|
||||
"clap",
|
||||
"criterion-plot",
|
||||
"itertools",
|
||||
"lazy_static",
|
||||
"num-traits",
|
||||
"oorandom",
|
||||
"plotters",
|
||||
"rayon",
|
||||
"regex",
|
||||
"serde",
|
||||
"serde_derive",
|
||||
"serde_json",
|
||||
"tinytemplate",
|
||||
"walkdir",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "criterion-plot"
|
||||
version = "0.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
||||
dependencies = [
|
||||
"cast",
|
||||
"itertools",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-deque"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
||||
dependencies = [
|
||||
"crossbeam-epoch",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-epoch"
|
||||
version = "0.9.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
||||
dependencies = [
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.8.20"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
||||
|
||||
[[package]]
|
||||
name = "crunchy"
|
||||
version = "0.2.2"
|
||||
@@ -365,6 +530,22 @@ version = "0.28.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
||||
|
||||
[[package]]
|
||||
name = "half"
|
||||
version = "2.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"crunchy",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.12.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.13.2"
|
||||
@@ -374,12 +555,31 @@ dependencies = [
|
||||
"ahash",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hermit-abi"
|
||||
version = "0.1.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "indenter"
|
||||
version = "0.3.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
|
||||
|
||||
[[package]]
|
||||
name = "indexmap"
|
||||
version = "1.9.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"hashbrown 0.12.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.10.5"
|
||||
@@ -395,6 +595,15 @@ version = "1.0.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
||||
|
||||
[[package]]
|
||||
name = "js-sys"
|
||||
version = "0.3.69"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
||||
dependencies = [
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "lazy_static"
|
||||
version = "1.4.0"
|
||||
@@ -407,6 +616,12 @@ version = "0.2.155"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
||||
|
||||
[[package]]
|
||||
name = "log"
|
||||
version = "0.4.21"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
||||
|
||||
[[package]]
|
||||
name = "memchr"
|
||||
version = "2.7.2"
|
||||
@@ -465,6 +680,18 @@ version = "1.19.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
||||
|
||||
[[package]]
|
||||
name = "oorandom"
|
||||
version = "11.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
||||
|
||||
[[package]]
|
||||
name = "os_str_bytes"
|
||||
version = "6.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
|
||||
|
||||
[[package]]
|
||||
name = "owo-colors"
|
||||
version = "3.5.0"
|
||||
@@ -483,6 +710,34 @@ version = "0.2.14"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
||||
|
||||
[[package]]
|
||||
name = "plotters"
|
||||
version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
|
||||
dependencies = [
|
||||
"num-traits",
|
||||
"plotters-backend",
|
||||
"plotters-svg",
|
||||
"wasm-bindgen",
|
||||
"web-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "plotters-backend"
|
||||
version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
|
||||
|
||||
[[package]]
|
||||
name = "plotters-svg"
|
||||
version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
|
||||
dependencies = [
|
||||
"plotters-backend",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ppv-lite86"
|
||||
version = "0.2.17"
|
||||
@@ -537,6 +792,55 @@ dependencies = [
|
||||
"getrandom",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon"
|
||||
version = "1.10.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
||||
dependencies = [
|
||||
"either",
|
||||
"rayon-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon-core"
|
||||
version = "1.12.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
||||
dependencies = [
|
||||
"crossbeam-deque",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "regex"
|
||||
version = "1.10.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"memchr",
|
||||
"regex-automata",
|
||||
"regex-syntax",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "regex-automata"
|
||||
version = "0.4.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"memchr",
|
||||
"regex-syntax",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "regex-syntax"
|
||||
version = "0.8.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
||||
|
||||
[[package]]
|
||||
name = "rustc-demangle"
|
||||
version = "0.1.24"
|
||||
@@ -558,6 +862,15 @@ version = "1.0.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
||||
|
||||
[[package]]
|
||||
name = "same-file"
|
||||
version = "1.0.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
||||
dependencies = [
|
||||
"winapi-util",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "semver"
|
||||
version = "1.0.23"
|
||||
@@ -606,13 +919,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "stealth_address_kit"
|
||||
version = "0.1.0"
|
||||
version = "0.3.1"
|
||||
dependencies = [
|
||||
"ark-bls12-377",
|
||||
"ark-bls12-381",
|
||||
"ark-bn254",
|
||||
"ark-bw6-761",
|
||||
"ark-ec",
|
||||
"ark-ed-on-bn254",
|
||||
"ark-ff",
|
||||
"ark-pallas",
|
||||
"ark-secp256k1",
|
||||
@@ -620,9 +934,8 @@ dependencies = [
|
||||
"ark-serialize",
|
||||
"ark-std",
|
||||
"ark-vesta",
|
||||
"cfg-if",
|
||||
"color-eyre",
|
||||
"num-bigint",
|
||||
"criterion",
|
||||
"num-traits",
|
||||
"paste",
|
||||
"rand",
|
||||
@@ -659,6 +972,12 @@ dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "textwrap"
|
||||
version = "0.16.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
|
||||
|
||||
[[package]]
|
||||
name = "thread_local"
|
||||
version = "1.1.8"
|
||||
@@ -678,6 +997,16 @@ dependencies = [
|
||||
"crunchy",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tinytemplate"
|
||||
version = "1.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"serde_json",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tracing"
|
||||
version = "0.1.40"
|
||||
@@ -743,12 +1072,190 @@ version = "0.9.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
||||
|
||||
[[package]]
|
||||
name = "walkdir"
|
||||
version = "2.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
||||
dependencies = [
|
||||
"same-file",
|
||||
"winapi-util",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasi"
|
||||
version = "0.11.0+wasi-snapshot-preview1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen"
|
||||
version = "0.2.92"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"wasm-bindgen-macro",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-backend"
|
||||
version = "0.2.92"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"log",
|
||||
"once_cell",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn 2.0.66",
|
||||
"wasm-bindgen-shared",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-macro"
|
||||
version = "0.2.92"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
||||
dependencies = [
|
||||
"quote",
|
||||
"wasm-bindgen-macro-support",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-macro-support"
|
||||
version = "0.2.92"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn 2.0.66",
|
||||
"wasm-bindgen-backend",
|
||||
"wasm-bindgen-shared",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen-shared"
|
||||
version = "0.2.92"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
||||
|
||||
[[package]]
|
||||
name = "web-sys"
|
||||
version = "0.3.69"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
||||
dependencies = [
|
||||
"js-sys",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi"
|
||||
version = "0.3.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
||||
dependencies = [
|
||||
"winapi-i686-pc-windows-gnu",
|
||||
"winapi-x86_64-pc-windows-gnu",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi-i686-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||
|
||||
[[package]]
|
||||
name = "winapi-util"
|
||||
version = "0.1.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
||||
dependencies = [
|
||||
"windows-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "winapi-x86_64-pc-windows-gnu"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||
|
||||
[[package]]
|
||||
name = "windows-sys"
|
||||
version = "0.52.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
||||
dependencies = [
|
||||
"windows-targets",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows-targets"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
||||
dependencies = [
|
||||
"windows_aarch64_gnullvm",
|
||||
"windows_aarch64_msvc",
|
||||
"windows_i686_gnu",
|
||||
"windows_i686_gnullvm",
|
||||
"windows_i686_msvc",
|
||||
"windows_x86_64_gnu",
|
||||
"windows_x86_64_gnullvm",
|
||||
"windows_x86_64_msvc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_gnullvm"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
||||
|
||||
[[package]]
|
||||
name = "windows_aarch64_msvc"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnu"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_gnullvm"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
||||
|
||||
[[package]]
|
||||
name = "windows_i686_msvc"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnu"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_gnullvm"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
||||
|
||||
[[package]]
|
||||
name = "windows_x86_64_msvc"
|
||||
version = "0.52.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
||||
|
||||
[[package]]
|
||||
name = "zerocopy"
|
||||
version = "0.7.34"
|
||||
|
||||
@@ -5,3 +5,8 @@ members = [
|
||||
"example"
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3 # Optimize for performance
|
||||
lto = true # Enable Link Time Optimization
|
||||
codegen-units = 1 # Reduce codegen units for better optimization
|
||||
|
||||
20
Makefile
@@ -1,8 +1,24 @@
|
||||
.PHONY: deps clean example
|
||||
|
||||
deps:
|
||||
@cargo install cross --git https://github.com/cross-rs/cross.git --rev 1511a28
|
||||
@cargo install cbindgen
|
||||
|
||||
clean:
|
||||
@cargo clean
|
||||
|
||||
example:
|
||||
@cargo run -p stealth_address_kit_example
|
||||
@cargo run --release -p stealth_address_kit_example
|
||||
|
||||
bench:
|
||||
@cargo bench --all-features
|
||||
cp -r target/criterion/** benchmarks/
|
||||
|
||||
expand:
|
||||
@cargo expand --all-features -p stealth_address_kit > expanded.rs
|
||||
|
||||
generate_c_bindings: expand
|
||||
@cbindgen --output stealth_address_kit.h --lang c expanded.rs
|
||||
|
||||
generate_nim_bindings: expand
|
||||
@nbindgen --output stealth_address_kit.nim expanded.rs
|
||||
@sed -i.bak "s/= int/= uint8/g" 'stealth_address_kit.nim'
|
||||
|
||||
76
README.md
@@ -1,8 +1,10 @@
|
||||
# stealth-address-kit
|
||||
# Stealth Address Kit
|
||||
|
||||
Uses the [arkworks-rs](https://github.com/arkworks-rs/curves) suite of libraries.
|
||||
The Stealth Address Kit leverages the [arkworks-rs](https://github.com/arkworks-rs/curves) suite of libraries to provide a robust implementation of stealth addresses.
|
||||
|
||||
## Existing Implementations
|
||||
## Supported Curves
|
||||
|
||||
The following curves are currently supported:
|
||||
|
||||
1. `ark_bn254`
|
||||
2. `ark_bls_12_381`
|
||||
@@ -12,18 +14,25 @@ Uses the [arkworks-rs](https://github.com/arkworks-rs/curves) suite of libraries
|
||||
6. `pallas`
|
||||
7. `vesta`
|
||||
8. `bw6_761`
|
||||
9. `baby_jub_jub`
|
||||
|
||||
## Usage
|
||||
## Benchmarks
|
||||
|
||||
See the [benchmarks](./benchmarks/report/index.html) for performance comparisons across supported curves.
|
||||
|
||||
## Usage Example
|
||||
|
||||
Below is an example demonstrating how to use the Stealth Address Kit with the `ark_bn254` curve:
|
||||
|
||||
```rust
|
||||
use stealth_address_kit::StealthAddressOnCurve;
|
||||
use ark_bn254::Bn254; // or ark_bls_12_381::Bls12_381 or ark_bls_12_377::Bls12_377, stealth_address_kit::Secp256k1, stealth_address_kit::Secp256r1, etc
|
||||
use ark_bn254::Bn254;
|
||||
|
||||
fn main() {
|
||||
let (spending_key, spending_public_key) = Bn254::random_keypair();
|
||||
let (viewing_key, viewing_public_key) = Bn254::random_keypair();
|
||||
|
||||
// generate ephemeral keypair
|
||||
// Generate ephemeral keypair
|
||||
let (ephemeral_private_key, ephemeral_public_key) = Bn254::random_keypair();
|
||||
|
||||
let (stealth_address, view_tag) = Bn254::generate_stealth_address(viewing_public_key, spending_public_key, ephemeral_private_key);
|
||||
@@ -39,32 +48,55 @@ fn main() {
|
||||
}
|
||||
```
|
||||
|
||||
## Adding a new curve
|
||||
## Adding a New Curve
|
||||
|
||||
1. Add the curve to the `Cargo.toml` file, as a feature
|
||||
2. Create a new module in the `src` directory, with the curve name, suffixed by `_impl.rs`
|
||||
3. Implement the `StealthAddressOnCurve` trait for the curve
|
||||
4. Define the macro `define_curve_ffi`
|
||||
5. Add the curve to the `lib.rs` file, in the `mod` declaration, as well as re-export if required
|
||||
6. Add the curve to the README
|
||||
7. Add the curve to the nightly release workflow
|
||||
To add support for a new curve, follow these steps:
|
||||
|
||||
1. Add the curve to the `Cargo.toml` file as a feature.
|
||||
2. Create a new module in the `src` directory with the curve name, suffixed by `_impl.rs`.
|
||||
3. Implement the `StealthAddressOnCurve` trait for the curve.
|
||||
4. Define the macro `define_curve_ffi`.
|
||||
5. Add the curve to the `lib.rs` file in the `mod` declaration, and re-export if required.
|
||||
6. Update the README to include the new curve.
|
||||
7. Add the curve to the nightly release workflow.
|
||||
8. Add the curve to the benchmarks.
|
||||
|
||||
## Building and Testing
|
||||
|
||||
1. Building
|
||||
`cargo build --release --features <bn254/bls12_381/bls12_377/secp256k1/secp256r1/etc>`
|
||||
### Building
|
||||
|
||||
2. Testing
|
||||
`cargo test --release --features <bn254/bls12_381/bls12_377/secp256k1/secp256r1/etc>`
|
||||
To build the project, use the following command:
|
||||
|
||||
## FFI Api
|
||||
```sh
|
||||
cargo build --release --features <bn254/bls12_381/bls12_377/secp256k1/secp256r1/etc>
|
||||
```
|
||||
|
||||
### Testing
|
||||
|
||||
To run tests, use the following command:
|
||||
|
||||
```sh
|
||||
cargo test --release --features <bn254/bls12_381/bls12_377/secp256k1/secp256r1/etc>
|
||||
```
|
||||
|
||||
### Benchmarks
|
||||
|
||||
To run benchmarks, use the following command:
|
||||
|
||||
```sh
|
||||
make bench
|
||||
```
|
||||
|
||||
This will run benchmarks for all supported curves, and output the results to the `benchmarks` directory.
|
||||
|
||||
## FFI API
|
||||
|
||||
The exposed FFI API supports all curves, prefixed by the curve name. Ensure that the correct feature is enabled when building the library.
|
||||
|
||||
## Precompiled Libraries
|
||||
|
||||
Check out the nightly releases.
|
||||
Precompiled libraries are available in the nightly releases.
|
||||
|
||||
## Attribution
|
||||
## Acknowledgements
|
||||
|
||||
- Inspired by the [erc-5564](https://eips.ethereum.org/EIPS/eip-5564) eip and the [poc](https://github.com/nerolation/EIP-Stealth-Address-ERC/blob/main/minimal_poc.ipynb) by Nerolation.
|
||||
This project is inspired by the [ERC-5564](https://eips.ethereum.org/EIPS/eip-5564) EIP and the [proof of concept](https://github.com/nerolation/EIP-Stealth-Address-ERC/blob/main/minimal_poc.ipynb) by Nerolation.
|
||||
|
||||
BIN
benchmarks/.DS_Store
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"compute_shared_point","value_str":null,"throughput":null,"full_id":"babyjubjub/compute_shared_point","directory_name":"babyjubjub/compute_shared_point","title":"babyjubjub/compute_shared_point"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52498.593137482756,"upper_bound":52877.65349448519},"point_estimate":52678.64021161422,"standard_error":97.00495835040917},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52062.401468580254,"upper_bound":52546.79634674922},"point_estimate":52262.852600250626,"standard_error":117.12445383731304},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":86.75986672918428,"upper_bound":765.4451525623534},"point_estimate":372.01168611227143,"standard_error":164.76747139833802},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52385.82814344779,"upper_bound":52657.80690942485},"point_estimate":52514.88622354616,"standard_error":69.60389146963412},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":723.4475054318106,"upper_bound":1178.2812855006785},"point_estimate":972.6765393982532,"standard_error":116.06365414123243}}
|
||||
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[19.0,38.0,57.0,76.0,95.0,114.0,133.0,152.0,171.0,190.0,209.0,228.0,247.0,266.0,285.0,304.0,323.0,342.0,361.0,380.0,399.0,418.0,437.0,456.0,475.0,494.0,513.0,532.0,551.0,570.0,589.0,608.0,627.0,646.0,665.0,684.0,703.0,722.0,741.0,760.0,779.0,798.0,817.0,836.0,855.0,874.0,893.0,912.0,931.0,950.0,969.0,988.0,1007.0,1026.0,1045.0,1064.0,1083.0,1102.0,1121.0,1140.0,1159.0,1178.0,1197.0,1216.0,1235.0,1254.0,1273.0,1292.0,1311.0,1330.0,1349.0,1368.0,1387.0,1406.0,1425.0,1444.0,1463.0,1482.0,1501.0,1520.0,1539.0,1558.0,1577.0,1596.0,1615.0,1634.0,1653.0,1672.0,1691.0,1710.0,1729.0,1748.0,1767.0,1786.0,1805.0,1824.0,1843.0,1862.0,1881.0,1900.0],"times":[1000658.0,1982566.0,2964391.0,3954341.0,4939124.0,5938699.0,6915941.0,7906890.0,9268878.0,10076747.0,11007197.0,12354435.0,13787964.0,14841872.0,15908779.0,16854396.0,18031011.0,19089668.0,19544831.0,19891454.0,20758363.0,21738896.0,23110718.0,23725879.0,24708579.0,25701653.0,26681395.0,27682261.0,28672211.0,29655452.0,30643444.0,31637852.0,32828216.0,33596460.0,34598035.0,36805516.0,36570768.0,37563093.0,38544001.0,39540993.0,40518401.0,41496934.0,42730506.0,43638665.0,44477408.0,45467525.0,46438016.0,47448799.0,48428915.0,49897236.0,50411481.0,51398348.0,53138417.0,54885485.0,55954059.0,55594146.0,56986800.0,57978125.0,59420237.0,59301947.0,61671551.0,62544752.0,62717084.0,64094113.0,64627026.0,66574468.0,68455910.0,67264837.0,69138487.0,71310469.0,71538466.0,72397417.0,73297743.0,74187610.0,75326851.0,75866179.0,78356615.0,77125251.0,79396649.0,81115175.0,80675679.0,81953960.0,84012693.0,84690644.0,84900851.0,87769243.0,85995300.0,87193497.0,88202281.0,88948024.0,90005807.0,91155422.0,91915832.0,92915907.0,93894899.0,95350636.0,95961756.0,96858665.0,98335819.0,98966313.0]}
|
||||
@@ -0,0 +1 @@
|
||||
[49272.960384389364,50649.29285216909,54319.51276624836,55695.84523402808]
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.45158983366542,"upper_bound":-0.450641127586571},"point_estimate":-0.45110700037229856,"standard_error":0.00024014172894135384},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.4515249920951963,"upper_bound":-0.45092243847556807},"point_estimate":-0.4512834748565894,"standard_error":0.00017260671453952822}}
|
||||
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"compute_shared_point","value_str":null,"throughput":null,"full_id":"babyjubjub/compute_shared_point","directory_name":"babyjubjub/compute_shared_point","title":"babyjubjub/compute_shared_point"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52498.593137482756,"upper_bound":52877.65349448519},"point_estimate":52678.64021161422,"standard_error":97.00495835040917},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52062.401468580254,"upper_bound":52546.79634674922},"point_estimate":52262.852600250626,"standard_error":117.12445383731304},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":86.75986672918428,"upper_bound":765.4451525623534},"point_estimate":372.01168611227143,"standard_error":164.76747139833802},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":52385.82814344779,"upper_bound":52657.80690942485},"point_estimate":52514.88622354616,"standard_error":69.60389146963412},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":723.4475054318106,"upper_bound":1178.2812855006785},"point_estimate":972.6765393982532,"standard_error":116.06365414123243}}
|
||||
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[19.0,38.0,57.0,76.0,95.0,114.0,133.0,152.0,171.0,190.0,209.0,228.0,247.0,266.0,285.0,304.0,323.0,342.0,361.0,380.0,399.0,418.0,437.0,456.0,475.0,494.0,513.0,532.0,551.0,570.0,589.0,608.0,627.0,646.0,665.0,684.0,703.0,722.0,741.0,760.0,779.0,798.0,817.0,836.0,855.0,874.0,893.0,912.0,931.0,950.0,969.0,988.0,1007.0,1026.0,1045.0,1064.0,1083.0,1102.0,1121.0,1140.0,1159.0,1178.0,1197.0,1216.0,1235.0,1254.0,1273.0,1292.0,1311.0,1330.0,1349.0,1368.0,1387.0,1406.0,1425.0,1444.0,1463.0,1482.0,1501.0,1520.0,1539.0,1558.0,1577.0,1596.0,1615.0,1634.0,1653.0,1672.0,1691.0,1710.0,1729.0,1748.0,1767.0,1786.0,1805.0,1824.0,1843.0,1862.0,1881.0,1900.0],"times":[1000658.0,1982566.0,2964391.0,3954341.0,4939124.0,5938699.0,6915941.0,7906890.0,9268878.0,10076747.0,11007197.0,12354435.0,13787964.0,14841872.0,15908779.0,16854396.0,18031011.0,19089668.0,19544831.0,19891454.0,20758363.0,21738896.0,23110718.0,23725879.0,24708579.0,25701653.0,26681395.0,27682261.0,28672211.0,29655452.0,30643444.0,31637852.0,32828216.0,33596460.0,34598035.0,36805516.0,36570768.0,37563093.0,38544001.0,39540993.0,40518401.0,41496934.0,42730506.0,43638665.0,44477408.0,45467525.0,46438016.0,47448799.0,48428915.0,49897236.0,50411481.0,51398348.0,53138417.0,54885485.0,55954059.0,55594146.0,56986800.0,57978125.0,59420237.0,59301947.0,61671551.0,62544752.0,62717084.0,64094113.0,64627026.0,66574468.0,68455910.0,67264837.0,69138487.0,71310469.0,71538466.0,72397417.0,73297743.0,74187610.0,75326851.0,75866179.0,78356615.0,77125251.0,79396649.0,81115175.0,80675679.0,81953960.0,84012693.0,84690644.0,84900851.0,87769243.0,85995300.0,87193497.0,88202281.0,88948024.0,90005807.0,91155422.0,91915832.0,92915907.0,93894899.0,95350636.0,95961756.0,96858665.0,98335819.0,98966313.0]}
|
||||
@@ -0,0 +1 @@
|
||||
[49272.960384389364,50649.29285216909,54319.51276624836,55695.84523402808]
|
||||
88
benchmarks/babyjubjub/compute_shared_point/report/MAD.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:MAD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (ns)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="419" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5e-4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,419 86,419 "/>
|
||||
<text x="77" y="362" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.001
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,362 86,362 "/>
|
||||
<text x="77" y="305" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.0015
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,305 86,305 "/>
|
||||
<text x="77" y="248" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.002
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,248 86,248 "/>
|
||||
<text x="77" y="192" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.0025
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,192 86,192 "/>
|
||||
<text x="77" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.003
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,135 86,135 "/>
|
||||
<text x="77" y="78" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.0035
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,78 86,78 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="177" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="177,473 177,478 "/>
|
||||
<text x="279" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
200
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="279,473 279,478 "/>
|
||||
<text x="381" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
300
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="381,473 381,478 "/>
|
||||
<text x="482" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
400
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="482,473 482,478 "/>
|
||||
<text x="584" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
500
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="584,473 584,478 "/>
|
||||
<text x="686" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
600
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="686,473 686,478 "/>
|
||||
<text x="788" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
700
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="788,473 788,478 "/>
|
||||
<text x="890" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
800
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="890,473 890,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,468 98,467 100,465 102,464 103,463 105,461 107,459 109,458 110,456 112,454 114,452 115,450 117,448 119,446 120,443 122,441 124,439 125,437 127,434 129,432 131,430 132,428 134,425 136,423 137,420 139,418 141,416 142,413 144,410 146,408 147,405 149,402 151,399 153,396 154,393 156,390 158,386 159,383 161,380 163,376 164,373 166,370 168,366 169,363 171,359 173,356 175,353 176,350 178,347 180,345 181,342 183,340 185,338 186,336 188,335 190,334 191,333 193,333 195,334 197,334 198,335 200,337 202,339 203,341 205,344 207,347 208,350 210,353 212,357 214,360 215,363 217,367 219,370 220,372 222,375 224,377 225,379 227,380 229,381 230,381 232,381 234,380 236,379 237,378 239,376 241,374 242,372 244,369 246,366 247,362 249,358 251,354 252,350 254,345 256,339 258,334 259,327 261,321 263,313 264,305 266,297 268,288 269,278 271,268 273,257 274,246 276,235 278,223 280,212 281,200 283,189 285,178 286,167 288,157 290,148 291,140 293,132 295,125 296,120 298,116 300,112 302,110 303,109 305,109 307,109 308,111 310,114 312,117 313,121 315,126 317,131 318,137 320,143 322,150 324,156 325,163 327,171 329,178 330,185 332,192 334,200 335,207 337,214 339,221 341,228 342,234 344,241 346,247 347,253 349,259 351,264 352,269 354,274 356,278 357,282 359,286 361,290 363,293 364,295 366,298 368,300 369,302 371,303 373,305 374,306 376,306 378,307 379,308 381,308 383,308 385,309 386,309 388,309 390,310 391,310 393,311 395,311 396,312 398,312 400,313 401,314 403,314 405,314 407,315 408,315 410,314 412,314 413,313 415,312 417,310 418,308 420,306 422,303 423,299 425,296 427,291 429,286 430,281 432,275 434,268 435,261 437,253 439,245 440,236 442,227 444,217 445,207 447,197 449,187 451,177 452,166 454,156 456,146 457,137 459,128 461,120 462,113 464,107 466,102 468,97 469,94 471,93 473,92 474,92 476,94 478,96 479,99 481,104 483,108 484,114 486,120 488,126 490,132 491,139 493,146 495,152 496,159 498,165 500,171 501,177 503,182 505,187 506,192 508,197 510,201 512,205 513,208 515,212 517,215 518,218 520,220 522,223 523,225 525,227 527,228 528,230 530,231 532,232 534,233 535,233 537,234 539,234 540,234 542,234 544,233 545,232 547,232 549,231 550,230 552,229 554,229 556,228 557,228 559,228 561,228 562,228 564,230 566,231 567,233 569,236 571,239 573,242 574,246 576,251 578,256 579,261 581,267 583,273 584,280 586,286 588,292 589,299 591,305 593,312 595,318 596,323 598,329 600,334 601,339 603,343 605,347 606,351 608,354 610,357 611,360 613,363 615,365 617,367 618,369 620,371 622,373 623,374 625,376 627,377 628,379 630,380 632,382 633,383 635,384 637,385 639,387 640,388 642,389 644,391 645,392 647,394 649,395 650,396 652,398 654,399 655,401 657,403 659,404 661,406 662,408 664,409 666,411 667,413 669,415 671,417 672,419 674,421 676,423 677,425 679,427 681,429 683,432 684,434 686,436 688,438 689,440 691,442 693,444 694,446 696,447 698,449 700,450 701,451 703,453 705,453 706,454 708,455 710,455 711,455 713,455 715,455 716,455 718,454 720,454 722,453 723,452 725,451 727,450 728,449 730,447 732,446 733,445 735,444 737,442 738,441 740,440 742,439 744,438 745,438 747,437 749,437 750,437 752,437 754,437 755,438 757,439 759,440 760,441 762,442 764,443 766,445 767,446 769,448 771,450 772,451 774,453 776,455 777,456 779,457 781,459 782,460 784,461 786,462 788,462 789,463 791,463 793,463 794,463 796,463 798,462 799,461 801,460 803,459 804,458 806,457 808,455 810,454 811,452 813,450 815,448 816,446 818,444 820,442 821,440 823,438 825,436 827,435 828,433 830,432 832,431 833,430 835,429 837,428 838,428 840,428 842,428 843,428 845,429 847,429 849,430 850,431 852,432 854,433 855,434 857,435 859,436 860,437 862,438 864,439 865,440 867,441 869,442 871,443 872,444 874,445 876,445 877,446 879,447 881,447 882,448 884,449 886,449 887,450 889,450 891,451 893,451 894,452 896,452 898,452 899,453 901,453 903,454 904,454 906,454 908,455 909,455 911,455 913,455 915,456 916,456 918,456 920,456 921,456 923,456 925,456 926,456 928,456 930,456 932,456 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,373 166,370 168,366 169,363 171,359 173,356 175,353 176,350 178,347 180,345 181,342 183,340 185,338 186,336 188,335 190,334 191,333 193,333 195,334 197,334 198,335 200,337 202,339 203,341 205,344 207,347 208,350 210,353 212,357 214,360 215,363 217,367 219,370 220,372 222,375 224,377 225,379 227,380 229,381 230,381 232,381 234,380 236,379 237,378 239,376 241,374 242,372 244,369 246,366 247,362 249,358 251,354 252,350 254,345 256,339 258,334 259,327 261,321 263,313 264,305 266,297 268,288 269,278 271,268 273,257 274,246 276,235 278,223 280,212 281,200 283,189 285,178 286,167 288,157 290,148 291,140 293,132 295,125 296,120 298,116 300,112 302,110 303,109 305,109 307,109 308,111 310,114 312,117 313,121 315,126 317,131 318,137 320,143 322,150 324,156 325,163 327,171 329,178 330,185 332,192 334,200 335,207 337,214 339,221 341,228 342,234 344,241 346,247 347,253 349,259 351,264 352,269 354,274 356,278 357,282 359,286 361,290 363,293 364,295 366,298 368,300 369,302 371,303 373,305 374,306 376,306 378,307 379,308 381,308 383,308 385,309 386,309 388,309 390,310 391,310 393,311 395,311 396,312 398,312 400,313 401,314 403,314 405,314 407,315 408,315 410,314 412,314 413,313 415,312 417,310 418,308 420,306 422,303 423,299 425,296 427,291 429,286 430,281 432,275 434,268 435,261 437,253 439,245 440,236 442,227 444,217 445,207 447,197 449,187 451,177 452,166 454,156 456,146 457,137 459,128 461,120 462,113 464,107 466,102 468,97 469,94 471,93 473,92 474,92 476,94 478,96 479,99 481,104 483,108 484,114 486,120 488,126 490,132 491,139 493,146 495,152 496,159 498,165 500,171 501,177 503,182 505,187 506,192 508,197 510,201 512,205 513,208 515,212 517,215 518,218 520,220 522,223 523,225 525,227 527,228 528,230 530,231 532,232 534,233 535,233 537,234 539,234 540,234 542,234 544,233 545,232 547,232 549,231 550,230 552,229 554,229 556,228 557,228 559,228 561,228 562,228 564,230 566,231 567,233 569,236 571,239 573,242 574,246 576,251 578,256 579,261 581,267 583,273 584,280 586,286 588,292 589,299 591,305 593,312 595,318 596,323 598,329 600,334 601,339 603,343 605,347 606,351 608,354 610,357 611,360 613,363 615,365 617,367 618,369 620,371 622,373 623,374 625,376 627,377 628,379 630,380 632,382 633,383 635,384 637,385 639,387 640,388 642,389 644,391 645,392 647,394 649,395 650,396 652,398 654,399 655,401 657,403 659,404 661,406 662,408 664,409 666,411 667,413 669,415 671,417 672,419 674,421 676,423 677,425 679,427 681,429 683,432 684,434 686,436 688,438 689,440 691,442 693,444 694,446 696,447 698,449 700,450 701,451 703,453 705,453 706,454 708,455 710,455 711,455 713,455 715,455 716,455 718,454 720,454 722,453 723,452 725,451 727,450 728,449 730,447 732,446 733,445 735,444 737,442 738,441 740,440 742,439 744,438 745,438 747,437 749,437 750,437 752,437 754,437 755,438 757,439 759,440 760,441 762,442 764,443 766,445 767,446 769,448 771,450 772,451 774,453 776,455 777,456 779,457 781,459 782,460 784,461 786,462 788,462 789,463 791,463 793,463 794,463 796,463 798,462 799,461 801,460 803,459 804,458 806,457 808,455 810,454 811,452 813,450 815,448 816,446 818,444 820,442 821,440 823,438 825,436 827,435 828,433 830,432 832,431 833,430 835,429 837,428 838,428 840,428 842,428 843,428 845,429 847,429 849,430 850,431 852,432 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="454,473 454,157 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
100
benchmarks/babyjubjub/compute_shared_point/report/SD.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:SD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="436" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,436 86,436 "/>
|
||||
<text x="77" y="377" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,377 86,377 "/>
|
||||
<text x="77" y="318" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,318 86,318 "/>
|
||||
<text x="77" y="259" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,259 86,259 "/>
|
||||
<text x="77" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,200 86,200 "/>
|
||||
<text x="77" y="141" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,141 86,141 "/>
|
||||
<text x="77" y="82" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,82 86,82 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="128" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.7
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="128,473 128,478 "/>
|
||||
<text x="204" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.75
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="204,473 204,478 "/>
|
||||
<text x="280" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="280,473 280,478 "/>
|
||||
<text x="356" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.85
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="356,473 356,478 "/>
|
||||
<text x="432" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="432,473 432,478 "/>
|
||||
<text x="508" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.95
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="508,473 508,478 "/>
|
||||
<text x="584" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="584,473 584,478 "/>
|
||||
<text x="660" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="660,473 660,478 "/>
|
||||
<text x="736" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="736,473 736,478 "/>
|
||||
<text x="812" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="812,473 812,478 "/>
|
||||
<text x="888" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="888,473 888,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,470 90,470 92,469 93,469 95,468 97,468 98,467 100,467 102,466 103,466 105,466 107,465 109,465 110,464 112,464 114,463 115,463 117,462 119,462 120,461 122,461 124,460 125,460 127,459 129,458 131,458 132,457 134,457 136,456 137,455 139,455 141,454 142,453 144,452 146,452 147,451 149,450 151,449 153,448 154,448 156,447 158,446 159,445 161,444 163,443 164,442 166,441 168,440 169,439 171,438 173,437 175,436 176,435 178,434 180,433 181,432 183,431 185,430 186,429 188,428 190,427 191,426 193,425 195,424 197,423 198,422 200,420 202,419 203,418 205,417 207,416 208,415 210,414 212,412 214,411 215,410 217,408 219,407 220,406 222,404 224,403 225,401 227,399 229,398 230,396 232,394 234,393 236,391 237,389 239,387 241,385 242,383 244,381 246,379 247,377 249,375 251,373 252,371 254,369 256,367 258,365 259,363 261,361 263,359 264,358 266,356 268,354 269,352 271,350 273,348 274,347 276,345 278,343 280,341 281,340 283,338 285,336 286,335 288,333 290,332 291,330 293,329 295,327 296,326 298,324 300,323 302,321 303,319 305,318 307,316 308,314 310,312 312,310 313,309 315,306 317,304 318,302 320,300 322,298 324,295 325,293 327,290 329,288 330,285 332,283 334,280 335,277 337,275 339,272 341,269 342,267 344,264 346,262 347,259 349,257 351,254 352,252 354,249 356,247 357,245 359,243 361,240 363,238 364,236 366,234 368,232 369,230 371,228 373,226 374,224 376,222 378,220 379,218 381,217 383,215 385,213 386,211 388,210 390,208 391,206 393,204 395,203 396,201 398,199 400,198 401,196 403,194 405,193 407,191 408,189 410,187 412,186 413,184 415,182 417,180 418,178 420,176 422,174 423,172 425,170 427,169 429,167 430,165 432,163 434,161 435,159 437,157 439,155 440,154 442,152 444,150 445,149 447,147 449,145 451,144 452,142 454,141 456,139 457,138 459,136 461,135 462,134 464,132 466,131 468,130 469,128 471,127 473,126 474,124 476,123 478,122 479,121 481,120 483,119 484,118 486,116 488,115 490,114 491,113 493,112 495,111 496,110 498,109 500,109 501,108 503,107 505,106 506,105 508,104 510,103 512,102 513,101 515,100 517,100 518,99 520,98 522,97 523,97 525,96 527,96 528,95 530,95 532,95 534,94 535,94 537,94 539,94 540,94 542,94 544,94 545,94 547,94 549,94 550,94 552,94 554,95 556,95 557,95 559,96 561,96 562,96 564,97 566,97 567,98 569,98 571,98 573,99 574,99 576,100 578,100 579,100 581,101 583,101 584,102 586,102 588,102 589,103 591,103 593,104 595,105 596,105 598,106 600,107 601,108 603,109 605,110 606,111 608,112 610,114 611,115 613,117 615,118 617,120 618,122 620,124 622,126 623,128 625,130 627,133 628,135 630,137 632,139 633,142 635,144 637,146 639,148 640,151 642,153 644,155 645,157 647,159 649,161 650,163 652,165 654,167 655,169 657,171 659,173 661,175 662,177 664,179 666,181 667,183 669,185 671,187 672,189 674,192 676,194 677,196 679,198 681,201 683,203 684,206 686,208 688,211 689,213 691,216 693,219 694,221 696,224 698,227 700,229 701,232 703,235 705,237 706,240 708,243 710,245 711,248 713,250 715,253 716,256 718,258 720,261 722,263 723,265 725,268 727,270 728,273 730,275 732,278 733,280 735,282 737,285 738,287 740,290 742,292 744,294 745,297 747,299 749,302 750,304 752,307 754,309 755,312 757,314 759,317 760,319 762,322 764,324 766,326 767,329 769,331 771,334 772,336 774,338 776,341 777,343 779,345 781,347 782,349 784,352 786,354 788,356 789,358 791,360 793,362 794,364 796,367 798,369 799,371 801,373 803,375 804,377 806,379 808,382 810,384 811,386 813,388 815,390 816,392 818,394 820,396 821,398 823,400 825,401 827,403 828,405 830,406 832,408 833,410 835,411 837,412 838,414 840,415 842,417 843,418 845,419 847,420 849,422 850,423 852,424 854,425 855,426 857,427 859,428 860,430 862,431 864,432 865,433 867,434 869,435 871,436 872,437 874,439 876,440 877,441 879,442 881,443 882,444 884,445 886,446 887,448 889,449 891,450 893,451 894,452 896,453 898,454 899,455 901,456 903,458 904,459 906,460 908,461 909,462 911,463 913,464 915,464 916,465 918,466 920,467 921,468 923,469 925,470 926,470 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,442 166,441 168,440 169,439 171,438 173,437 175,436 176,435 178,434 180,433 181,432 183,431 185,430 186,429 188,428 190,427 191,426 193,425 195,424 197,423 198,422 200,420 202,419 203,418 205,417 207,416 208,415 210,414 212,412 214,411 215,410 217,408 219,407 220,406 222,404 224,403 225,401 227,399 229,398 230,396 232,394 234,393 236,391 237,389 239,387 241,385 242,383 244,381 246,379 247,377 249,375 251,373 252,371 254,369 256,367 258,365 259,363 261,361 263,359 264,358 266,356 268,354 269,352 271,350 273,348 274,347 276,345 278,343 280,341 281,340 283,338 285,336 286,335 288,333 290,332 291,330 293,329 295,327 296,326 298,324 300,323 302,321 303,319 305,318 307,316 308,314 310,312 312,310 313,309 315,306 317,304 318,302 320,300 322,298 324,295 325,293 327,290 329,288 330,285 332,283 334,280 335,277 337,275 339,272 341,269 342,267 344,264 346,262 347,259 349,257 351,254 352,252 354,249 356,247 357,245 359,243 361,240 363,238 364,236 366,234 368,232 369,230 371,228 373,226 374,224 376,222 378,220 379,218 381,217 383,215 385,213 386,211 388,210 390,208 391,206 393,204 395,203 396,201 398,199 400,198 401,196 403,194 405,193 407,191 408,189 410,187 412,186 413,184 415,182 417,180 418,178 420,176 422,174 423,172 425,170 427,169 429,167 430,165 432,163 434,161 435,159 437,157 439,155 440,154 442,152 444,150 445,149 447,147 449,145 451,144 452,142 454,141 456,139 457,138 459,136 461,135 462,134 464,132 466,131 468,130 469,128 471,127 473,126 474,124 476,123 478,122 479,121 481,120 483,119 484,118 486,116 488,115 490,114 491,113 493,112 495,111 496,110 498,109 500,109 501,108 503,107 505,106 506,105 508,104 510,103 512,102 513,101 515,100 517,100 518,99 520,98 522,97 523,97 525,96 527,96 528,95 530,95 532,95 534,94 535,94 537,94 539,94 540,94 542,94 544,94 545,94 547,94 549,94 550,94 552,94 554,95 556,95 557,95 559,96 561,96 562,96 564,97 566,97 567,98 569,98 571,98 573,99 574,99 576,100 578,100 579,100 581,101 583,101 584,102 586,102 588,102 589,103 591,103 593,104 595,105 596,105 598,106 600,107 601,108 603,109 605,110 606,111 608,112 610,114 611,115 613,117 615,118 617,120 618,122 620,124 622,126 623,128 625,130 627,133 628,135 630,137 632,139 633,142 635,144 637,146 639,148 640,151 642,153 644,155 645,157 647,159 649,161 650,163 652,165 654,167 655,169 657,171 659,173 661,175 662,177 664,179 666,181 667,183 669,185 671,187 672,189 674,192 676,194 677,196 679,198 681,201 683,203 684,206 686,208 688,211 689,213 691,216 693,219 694,221 696,224 698,227 700,229 701,232 703,235 705,237 706,240 708,243 710,245 711,248 713,250 715,253 716,256 718,258 720,261 722,263 723,265 725,268 727,270 728,273 730,275 732,278 733,280 735,282 737,285 738,287 740,290 742,292 744,294 745,297 747,299 749,302 750,304 752,307 754,309 755,312 757,314 759,317 760,319 762,322 764,324 766,326 767,329 769,331 771,334 772,336 774,338 776,341 777,343 779,345 781,347 782,349 784,352 786,354 788,356 789,358 791,360 793,362 794,364 796,367 798,369 799,371 801,373 803,375 804,377 806,379 808,382 810,384 811,386 813,388 815,390 816,392 818,394 820,396 821,398 823,400 825,401 827,403 828,405 830,406 832,408 833,410 835,411 837,412 838,414 840,415 842,417 843,418 845,419 847,420 849,422 850,423 852,424 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="542,473 542,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
348
benchmarks/babyjubjub/compute_shared_point/report/both/pdf.svg
Normal file
@@ -0,0 +1,348 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L81.53,662.40 '/> <g transform="translate(64.14,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,586.35 L81.53,586.35 '/> <g transform="translate(64.14,590.25)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,510.30 L81.53,510.30 '/> <g transform="translate(64.14,514.20)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,434.25 L81.53,434.25 '/> <g transform="translate(64.14,438.15)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,358.20 L81.53,358.20 '/> <g transform="translate(64.14,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,282.16 L81.53,282.16 '/> <g transform="translate(64.14,286.06)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,206.11 L81.53,206.11 '/> <g transform="translate(64.14,210.01)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,130.06 L81.53,130.06 '/> <g transform="translate(64.14,133.96)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L72.53,653.40 '/> <g transform="translate(72.53,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M177.27,662.40 L177.27,653.40 '/> <g transform="translate(177.27,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 55</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M282.02,662.40 L282.02,653.40 '/> <g transform="translate(282.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M386.76,662.40 L386.76,653.40 '/> <g transform="translate(386.76,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 65</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M491.51,662.40 L491.51,653.40 '/> <g transform="translate(491.51,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M596.25,662.40 L596.25,653.40 '/> <g transform="translate(596.25,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 75</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M700.99,662.40 L700.99,653.40 '/> <g transform="translate(700.99,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M805.74,662.40 L805.74,653.40 '/> <g transform="translate(805.74,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 85</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M910.48,662.40 L910.48,653.40 '/> <g transform="translate(910.48,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1015.23,662.40 L1015.23,653.40 '/> <g transform="translate(1015.23,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1119.97,662.40 L1119.97,653.40 '/> <g transform="translate(1119.97,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '1145.14,67.51 1187.70,67.51 1187.70,58.51 1145.14,58.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '1050.68,662.16 1050.80,662.12 1050.93,662.07 1051.05,662.02 1051.17,661.96 1051.29,661.89 1051.42,661.82 1051.54,661.73 1051.66,661.63 1051.78,661.52 1051.91,661.39 1052.03,661.24 1052.15,661.08 1052.27,660.90 1052.40,660.69 1052.52,660.46
|
||||
1052.64,660.21 1052.76,659.92 1052.88,659.60 1053.01,659.25 1053.13,658.85 1053.25,658.42 1053.37,657.93 1053.50,657.40 1053.62,656.81 1053.74,656.17 1053.86,655.46 1053.99,654.69 1054.11,653.84 1054.23,652.92 1054.35,651.91 1054.48,650.81
|
||||
1054.60,649.63 1054.72,648.34 1054.84,646.94 1054.97,645.44 1055.09,643.82 1055.21,642.08 1055.33,640.21 1055.46,638.20 1055.58,636.06 1055.70,633.77 1055.82,631.33 1055.95,628.73 1056.07,625.98 1056.19,623.05 1056.31,619.96 1056.44,616.69
|
||||
1056.56,613.25 1056.68,609.63 1056.80,605.82 1056.93,601.83 1057.05,597.65 1057.17,593.29 1057.29,588.74 1057.42,584.00 1057.54,579.08 1057.66,573.97 1057.78,568.69 1057.90,563.24 1058.03,557.61 1058.15,551.82 1058.27,545.87 1058.39,539.77
|
||||
1058.52,533.54 1058.64,527.17 1058.76,520.68 1058.88,514.08 1059.01,507.38 1059.13,500.60 1059.25,493.75 1059.37,486.84 1059.50,479.89 1059.62,472.92 1059.74,465.95 1059.86,458.98 1059.99,452.04 1060.11,445.15 1060.23,438.33 1060.35,431.58
|
||||
1060.48,424.95 1060.60,418.43 1060.72,412.06 1060.84,405.85 1060.97,399.82 1061.09,393.98 1061.21,388.37 1061.33,382.99 1061.46,377.86 1061.58,373.00 1061.70,368.43 1061.82,364.15 1061.95,360.19 1062.07,356.56 1062.19,353.26 1062.31,350.31
|
||||
1062.43,347.72 1062.56,345.50 1062.68,343.65 1062.80,342.17 1062.92,341.08 1063.05,340.37 1063.17,340.04 1063.29,340.10 1063.41,340.54 1063.54,341.35 1063.66,342.53 1063.78,344.08 1063.90,345.99 1064.03,348.24 1064.15,350.83 1064.27,353.74
|
||||
1064.39,356.96 1064.52,360.48 1064.64,364.28 1064.76,368.35 1064.88,372.66 1065.01,377.21 1065.13,381.98 1065.25,386.94 1065.37,392.08 1065.50,397.39 1065.62,402.83 1065.74,408.40 1065.86,414.08 1065.99,419.84 1066.11,425.68 1066.23,431.56
|
||||
1066.35,437.49 1066.48,443.43 1066.60,449.38 1066.72,455.33 1066.84,461.24 1066.97,467.13 1067.09,472.96 1067.21,478.73 1067.33,484.43 1067.45,490.05 1067.58,495.58 1067.70,501.02 1067.82,506.34 1067.94,511.56 1068.07,516.65 1068.19,521.63
|
||||
1068.31,526.48 1068.43,531.19 1068.56,535.78 1068.68,540.22 1068.80,544.53 1068.92,548.71 1069.05,552.74 1069.17,556.64 1069.29,560.40 1069.41,564.02 1069.54,567.50 1069.66,570.85 1069.78,574.07 1069.90,577.16 1070.03,580.12 1070.15,582.96
|
||||
1070.27,585.68 1070.39,588.28 1070.52,590.77 1070.64,593.14 1070.76,595.41 1070.88,597.58 1071.01,599.64 1071.13,601.61 1071.25,603.50 1071.37,605.29 1071.50,607.01 1071.62,608.64 1071.74,610.20 1071.86,611.70 1071.99,613.12 1072.11,614.49
|
||||
1072.23,615.80 1072.35,617.06 1072.47,618.27 1072.60,619.44 1072.72,620.56 1072.84,621.65 1072.96,622.70 1073.09,623.72 1073.21,624.71 1073.33,625.68 1073.45,626.62 1073.58,627.55 1073.70,628.46 1073.82,629.35 1073.94,630.23 1074.07,631.09
|
||||
1074.19,631.95 1074.31,632.79 1074.43,633.63 1074.56,634.46 1074.68,635.29 1074.80,636.10 1074.92,636.91 1075.05,637.72 1075.17,638.52 1075.29,639.31 1075.41,640.10 1075.54,640.88 1075.66,641.65 1075.78,642.42 1075.90,643.17 1076.03,643.92
|
||||
1076.15,644.66 1076.27,645.39 1076.39,646.10 1076.52,646.81 1076.64,647.50 1076.76,648.18 1076.88,648.85 1077.00,649.50 1077.13,650.13 1077.25,650.75 1077.37,651.35 1077.49,651.93 1077.62,652.50 1077.74,653.05 1077.86,653.58 1077.98,654.09
|
||||
1078.11,654.59 1078.23,655.06 1078.35,655.51 1078.47,655.95 1078.60,656.37 1078.72,656.77 1078.84,657.15 1078.96,657.51 1079.09,657.85 1079.21,658.18 1079.33,658.48 1079.45,658.77 1079.58,659.05 1079.70,659.31 1079.82,659.55 1079.94,659.78
|
||||
1080.07,659.99 1080.19,660.19 1080.31,660.38 1080.43,660.55 1080.56,660.71 1080.68,660.86 1080.80,661.00 1080.92,661.13 1081.05,661.25 1081.17,661.36 1081.29,661.46 1081.41,661.55 1081.54,661.63 1081.66,661.71 1081.78,661.78 1081.90,661.84
|
||||
1082.02,661.90 1082.15,661.96 1082.27,662.00 1082.39,662.05 1082.51,662.09 1082.64,662.12 1082.76,662.15 1082.88,662.18 1083.00,662.21 1083.13,662.23 1083.25,662.25 1083.37,662.27 1083.49,662.29 1083.62,662.30 1083.74,662.31 1083.86,662.32
|
||||
1083.98,662.33 1084.11,662.34 1084.23,662.35 1084.35,662.36 1084.47,662.36 1084.60,662.37 1084.72,662.37 1084.84,662.38 1084.96,662.38 1085.09,662.38 1085.21,662.39 1085.33,662.39 1085.45,662.39 1085.58,662.39 1085.70,662.39 1085.82,662.39
|
||||
1085.94,662.39 1086.07,662.40 1086.19,662.40 1086.31,662.40 1086.43,662.40 1086.56,662.40 1086.68,662.40 1086.80,662.40 1086.92,662.40 1087.04,662.40 1087.17,662.40 1087.29,662.40 1087.41,662.40 1087.53,662.40 1087.66,662.40 1087.78,662.40
|
||||
1087.90,662.40 1088.02,662.40 1088.15,662.40 1088.27,662.40 1088.39,662.40 1088.51,662.40 1088.64,662.40 1088.76,662.40 1088.88,662.40 1089.00,662.40 1089.13,662.40 1089.25,662.40 1089.37,662.40 1089.49,662.40 1089.62,662.40 1089.74,662.40
|
||||
1089.86,662.40 1089.98,662.40 1090.11,662.40 1090.23,662.40 1090.35,662.40 1090.47,662.40 1090.60,662.40 1090.72,662.40 1090.84,662.40 1090.96,662.40 1091.09,662.40 1091.21,662.40 1091.33,662.40 1091.45,662.40 1091.57,662.40 1091.70,662.40
|
||||
1091.82,662.40 1091.94,662.40 1092.06,662.40 1092.19,662.40 1092.31,662.40 1092.43,662.40 1092.55,662.40 1092.68,662.40 1092.80,662.39 1092.92,662.39 1093.04,662.39 1093.17,662.39 1093.29,662.39 1093.41,662.39 1093.53,662.39 1093.66,662.38
|
||||
1093.78,662.38 1093.90,662.38 1094.02,662.37 1094.15,662.37 1094.27,662.36 1094.39,662.36 1094.51,662.35 1094.64,662.34 1094.76,662.33 1094.88,662.32 1095.00,662.31 1095.13,662.30 1095.25,662.28 1095.37,662.27 1095.49,662.25 1095.62,662.23
|
||||
1095.74,662.21 1095.86,662.18 1095.98,662.15 1096.11,662.12 1096.23,662.08 1096.35,662.05 1096.47,662.00 1096.59,661.96 1096.72,661.91 1096.84,661.85 1096.96,661.79 1097.08,661.72 1097.21,661.65 1097.33,661.57 1097.45,661.49 1097.57,661.39
|
||||
1097.70,661.29 1097.82,661.19 1097.94,661.08 1098.06,660.95 1098.19,660.83 1098.31,660.69 1098.43,660.54 1098.55,660.39 1098.68,660.23 1098.80,660.06 1098.92,659.88 1099.04,659.70 1099.17,659.50 1099.29,659.30 1099.41,659.09 1099.53,658.87
|
||||
1099.66,658.65 1099.78,658.42 1099.90,658.19 1100.02,657.95 1100.15,657.70 1100.27,657.46 1100.39,657.21 1100.51,656.95 1100.64,656.70 1100.76,656.45 1100.88,656.20 1101.00,655.95 1101.13,655.71 1101.25,655.46 1101.37,655.23 1101.49,655.00
|
||||
1101.61,654.78 1101.74,654.57 1101.86,654.37 1101.98,654.18 1102.10,654.01 1102.23,653.84 1102.35,653.70 1102.47,653.56 1102.59,653.44 1102.72,653.34 1102.84,653.26 1102.96,653.19 1103.08,653.15 1103.21,653.12 1103.33,653.10 1103.45,653.11
|
||||
1103.57,653.14 1103.70,653.18 1103.82,653.24 1103.94,653.33 1104.06,653.42 1104.19,653.54 1104.31,653.67 1104.43,653.81 1104.55,653.97 1104.68,654.15 1104.80,654.33 1104.92,654.53 1105.04,654.74 1105.17,654.96 1105.29,655.18 1105.41,655.42
|
||||
1105.53,655.66 1105.66,655.90 1105.78,656.15 1105.90,656.40 1106.02,656.65 1106.14,656.90 1106.27,657.16 1106.39,657.41 1106.51,657.65 1106.63,657.90 1106.76,658.14 1106.88,658.38 1107.00,658.61 1107.12,658.83 1107.25,659.05 1107.37,659.26
|
||||
1107.49,659.46 1107.61,659.66 1107.74,659.85 1107.86,660.03 1107.98,660.20 1108.10,660.36 1108.23,660.51 1108.35,660.66 1108.47,660.80 1108.59,660.93 1108.72,661.05 1108.84,661.17 1108.96,661.27 1109.08,661.37 1109.21,661.47 1109.33,661.55
|
||||
1109.45,661.63 1109.57,661.71 1109.70,661.78 1109.82,661.84 1109.94,661.89 1110.06,661.95 1110.19,661.99 1110.31,662.04 1110.43,662.08 1110.55,662.11 1110.68,662.15 1110.80,662.17 1110.92,662.20 1111.04,662.22 1111.16,662.24 1111.29,662.26
|
||||
1111.41,662.28 1111.53,662.30 1111.65,662.31 1111.78,662.32 1111.78,662.40 1111.65,662.40 1111.53,662.40 1111.41,662.40 1111.29,662.40 1111.16,662.40 1111.04,662.40 1110.92,662.40 1110.80,662.40 1110.68,662.40 1110.55,662.40 1110.43,662.40
|
||||
1110.31,662.40 1110.19,662.40 1110.06,662.40 1109.94,662.40 1109.82,662.40 1109.70,662.40 1109.57,662.40 1109.45,662.40 1109.33,662.40 1109.21,662.40 1109.08,662.40 1108.96,662.40 1108.84,662.40 1108.72,662.40 1108.59,662.40 1108.47,662.40
|
||||
1108.35,662.40 1108.23,662.40 1108.10,662.40 1107.98,662.40 1107.86,662.40 1107.74,662.40 1107.61,662.40 1107.49,662.40 1107.37,662.40 1107.25,662.40 1107.12,662.40 1107.00,662.40 1106.88,662.40 1106.76,662.40 1106.63,662.40 1106.51,662.40
|
||||
1106.39,662.40 1106.27,662.40 1106.14,662.40 1106.02,662.40 1105.90,662.40 1105.78,662.40 1105.66,662.40 1105.53,662.40 1105.41,662.40 1105.29,662.40 1105.17,662.40 1105.04,662.40 1104.92,662.40 1104.80,662.40 1104.68,662.40 1104.55,662.40
|
||||
1104.43,662.40 1104.31,662.40 1104.19,662.40 1104.06,662.40 1103.94,662.40 1103.82,662.40 1103.70,662.40 1103.57,662.40 1103.45,662.40 1103.33,662.40 1103.21,662.40 1103.08,662.40 1102.96,662.40 1102.84,662.40 1102.72,662.40 1102.59,662.40
|
||||
1102.47,662.40 1102.35,662.40 1102.23,662.40 1102.10,662.40 1101.98,662.40 1101.86,662.40 1101.74,662.40 1101.61,662.40 1101.49,662.40 1101.37,662.40 1101.25,662.40 1101.13,662.40 1101.00,662.40 1100.88,662.40 1100.76,662.40 1100.64,662.40
|
||||
1100.51,662.40 1100.39,662.40 1100.27,662.40 1100.15,662.40 1100.02,662.40 1099.90,662.40 1099.78,662.40 1099.66,662.40 1099.53,662.40 1099.41,662.40 1099.29,662.40 1099.17,662.40 1099.04,662.40 1098.92,662.40 1098.80,662.40 1098.68,662.40
|
||||
1098.55,662.40 1098.43,662.40 1098.31,662.40 1098.19,662.40 1098.06,662.40 1097.94,662.40 1097.82,662.40 1097.70,662.40 1097.57,662.40 1097.45,662.40 1097.33,662.40 1097.21,662.40 1097.08,662.40 1096.96,662.40 1096.84,662.40 1096.72,662.40
|
||||
1096.59,662.40 1096.47,662.40 1096.35,662.40 1096.23,662.40 1096.11,662.40 1095.98,662.40 1095.86,662.40 1095.74,662.40 1095.62,662.40 1095.49,662.40 1095.37,662.40 1095.25,662.40 1095.13,662.40 1095.00,662.40 1094.88,662.40 1094.76,662.40
|
||||
1094.64,662.40 1094.51,662.40 1094.39,662.40 1094.27,662.40 1094.15,662.40 1094.02,662.40 1093.90,662.40 1093.78,662.40 1093.66,662.40 1093.53,662.40 1093.41,662.40 1093.29,662.40 1093.17,662.40 1093.04,662.40 1092.92,662.40 1092.80,662.40
|
||||
1092.68,662.40 1092.55,662.40 1092.43,662.40 1092.31,662.40 1092.19,662.40 1092.06,662.40 1091.94,662.40 1091.82,662.40 1091.70,662.40 1091.57,662.40 1091.45,662.40 1091.33,662.40 1091.21,662.40 1091.09,662.40 1090.96,662.40 1090.84,662.40
|
||||
1090.72,662.40 1090.60,662.40 1090.47,662.40 1090.35,662.40 1090.23,662.40 1090.11,662.40 1089.98,662.40 1089.86,662.40 1089.74,662.40 1089.62,662.40 1089.49,662.40 1089.37,662.40 1089.25,662.40 1089.13,662.40 1089.00,662.40 1088.88,662.40
|
||||
1088.76,662.40 1088.64,662.40 1088.51,662.40 1088.39,662.40 1088.27,662.40 1088.15,662.40 1088.02,662.40 1087.90,662.40 1087.78,662.40 1087.66,662.40 1087.53,662.40 1087.41,662.40 1087.29,662.40 1087.17,662.40 1087.04,662.40 1086.92,662.40
|
||||
1086.80,662.40 1086.68,662.40 1086.56,662.40 1086.43,662.40 1086.31,662.40 1086.19,662.40 1086.07,662.40 1085.94,662.40 1085.82,662.40 1085.70,662.40 1085.58,662.40 1085.45,662.40 1085.33,662.40 1085.21,662.40 1085.09,662.40 1084.96,662.40
|
||||
1084.84,662.40 1084.72,662.40 1084.60,662.40 1084.47,662.40 1084.35,662.40 1084.23,662.40 1084.11,662.40 1083.98,662.40 1083.86,662.40 1083.74,662.40 1083.62,662.40 1083.49,662.40 1083.37,662.40 1083.25,662.40 1083.13,662.40 1083.00,662.40
|
||||
1082.88,662.40 1082.76,662.40 1082.64,662.40 1082.51,662.40 1082.39,662.40 1082.27,662.40 1082.15,662.40 1082.02,662.40 1081.90,662.40 1081.78,662.40 1081.66,662.40 1081.54,662.40 1081.41,662.40 1081.29,662.40 1081.17,662.40 1081.05,662.40
|
||||
1080.92,662.40 1080.80,662.40 1080.68,662.40 1080.56,662.40 1080.43,662.40 1080.31,662.40 1080.19,662.40 1080.07,662.40 1079.94,662.40 1079.82,662.40 1079.70,662.40 1079.58,662.40 1079.45,662.40 1079.33,662.40 1079.21,662.40 1079.09,662.40
|
||||
1078.96,662.40 1078.84,662.40 1078.72,662.40 1078.60,662.40 1078.47,662.40 1078.35,662.40 1078.23,662.40 1078.11,662.40 1077.98,662.40 1077.86,662.40 1077.74,662.40 1077.62,662.40 1077.49,662.40 1077.37,662.40 1077.25,662.40 1077.13,662.40
|
||||
1077.00,662.40 1076.88,662.40 1076.76,662.40 1076.64,662.40 1076.52,662.40 1076.39,662.40 1076.27,662.40 1076.15,662.40 1076.03,662.40 1075.90,662.40 1075.78,662.40 1075.66,662.40 1075.54,662.40 1075.41,662.40 1075.29,662.40 1075.17,662.40
|
||||
1075.05,662.40 1074.92,662.40 1074.80,662.40 1074.68,662.40 1074.56,662.40 1074.43,662.40 1074.31,662.40 1074.19,662.40 1074.07,662.40 1073.94,662.40 1073.82,662.40 1073.70,662.40 1073.58,662.40 1073.45,662.40 1073.33,662.40 1073.21,662.40
|
||||
1073.09,662.40 1072.96,662.40 1072.84,662.40 1072.72,662.40 1072.60,662.40 1072.47,662.40 1072.35,662.40 1072.23,662.40 1072.11,662.40 1071.99,662.40 1071.86,662.40 1071.74,662.40 1071.62,662.40 1071.50,662.40 1071.37,662.40 1071.25,662.40
|
||||
1071.13,662.40 1071.01,662.40 1070.88,662.40 1070.76,662.40 1070.64,662.40 1070.52,662.40 1070.39,662.40 1070.27,662.40 1070.15,662.40 1070.03,662.40 1069.90,662.40 1069.78,662.40 1069.66,662.40 1069.54,662.40 1069.41,662.40 1069.29,662.40
|
||||
1069.17,662.40 1069.05,662.40 1068.92,662.40 1068.80,662.40 1068.68,662.40 1068.56,662.40 1068.43,662.40 1068.31,662.40 1068.19,662.40 1068.07,662.40 1067.94,662.40 1067.82,662.40 1067.70,662.40 1067.58,662.40 1067.45,662.40 1067.33,662.40
|
||||
1067.21,662.40 1067.09,662.40 1066.97,662.40 1066.84,662.40 1066.72,662.40 1066.60,662.40 1066.48,662.40 1066.35,662.40 1066.23,662.40 1066.11,662.40 1065.99,662.40 1065.86,662.40 1065.74,662.40 1065.62,662.40 1065.50,662.40 1065.37,662.40
|
||||
1065.25,662.40 1065.13,662.40 1065.01,662.40 1064.88,662.40 1064.76,662.40 1064.64,662.40 1064.52,662.40 1064.39,662.40 1064.27,662.40 1064.15,662.40 1064.03,662.40 1063.90,662.40 1063.78,662.40 1063.66,662.40 1063.54,662.40 1063.41,662.40
|
||||
1063.29,662.40 1063.17,662.40 1063.05,662.40 1062.92,662.40 1062.80,662.40 1062.68,662.40 1062.56,662.40 1062.43,662.40 1062.31,662.40 1062.19,662.40 1062.07,662.40 1061.95,662.40 1061.82,662.40 1061.70,662.40 1061.58,662.40 1061.46,662.40
|
||||
1061.33,662.40 1061.21,662.40 1061.09,662.40 1060.97,662.40 1060.84,662.40 1060.72,662.40 1060.60,662.40 1060.48,662.40 1060.35,662.40 1060.23,662.40 1060.11,662.40 1059.99,662.40 1059.86,662.40 1059.74,662.40 1059.62,662.40 1059.50,662.40
|
||||
1059.37,662.40 1059.25,662.40 1059.13,662.40 1059.01,662.40 1058.88,662.40 1058.76,662.40 1058.64,662.40 1058.52,662.40 1058.39,662.40 1058.27,662.40 1058.15,662.40 1058.03,662.40 1057.90,662.40 1057.78,662.40 1057.66,662.40 1057.54,662.40
|
||||
1057.42,662.40 1057.29,662.40 1057.17,662.40 1057.05,662.40 1056.93,662.40 1056.80,662.40 1056.68,662.40 1056.56,662.40 1056.44,662.40 1056.31,662.40 1056.19,662.40 1056.07,662.40 1055.95,662.40 1055.82,662.40 1055.70,662.40 1055.58,662.40
|
||||
1055.46,662.40 1055.33,662.40 1055.21,662.40 1055.09,662.40 1054.97,662.40 1054.84,662.40 1054.72,662.40 1054.60,662.40 1054.48,662.40 1054.35,662.40 1054.23,662.40 1054.11,662.40 1053.99,662.40 1053.86,662.40 1053.74,662.40 1053.62,662.40
|
||||
1053.50,662.40 1053.37,662.40 1053.25,662.40 1053.13,662.40 1053.01,662.40 1052.88,662.40 1052.76,662.40 1052.64,662.40 1052.52,662.40 1052.40,662.40 1052.27,662.40 1052.15,662.40 1052.03,662.40 1051.91,662.40 1051.78,662.40 1051.66,662.40
|
||||
1051.54,662.40 1051.42,662.40 1051.29,662.40 1051.17,662.40 1051.05,662.40 1050.93,662.40 1050.80,662.40 1050.68,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M1145.14,81.01 L1187.70,81.01 M1064.93,662.40 L1064.93,374.41 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '1145.14,103.51 1187.70,103.51 1187.70,94.51 1145.14,94.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '136.03,662.28 136.09,662.26 136.16,662.24 136.22,662.22 136.29,662.19 136.35,662.16 136.42,662.13 136.48,662.09 136.54,662.05 136.61,662.00 136.67,661.94 136.74,661.88 136.80,661.81 136.86,661.73 136.93,661.64 136.99,661.54
|
||||
137.06,661.43 137.12,661.30 137.19,661.16 137.25,661.01 137.31,660.83 137.38,660.64 137.44,660.42 137.51,660.18 137.57,659.91 137.64,659.62 137.70,659.29 137.76,658.92 137.83,658.51 137.89,658.07 137.96,657.57 138.02,657.02
|
||||
138.08,656.42 138.15,655.76 138.21,655.03 138.28,654.22 138.34,653.34 138.41,652.38 138.47,651.32 138.53,650.16 138.60,648.89 138.66,647.51 138.73,646.01 138.79,644.37 138.86,642.58 138.92,640.65 138.98,638.55 139.05,636.28
|
||||
139.11,633.82 139.18,631.17 139.24,628.32 139.31,625.24 139.37,621.94 139.43,618.39 139.50,614.59 139.56,610.53 139.63,606.19 139.69,601.57 139.75,596.65 139.82,591.42 139.88,585.88 139.95,580.01 140.01,573.81 140.08,567.27
|
||||
140.14,560.39 140.20,553.16 140.27,545.58 140.33,537.64 140.40,529.35 140.46,520.70 140.53,511.71 140.59,502.37 140.65,492.70 140.72,482.69 140.78,472.37 140.85,461.74 140.91,450.83 140.97,439.64 141.04,428.20 141.10,416.52
|
||||
141.17,404.64 141.23,392.57 141.30,380.34 141.36,367.98 141.42,355.53 141.49,343.01 141.55,330.46 141.62,317.91 141.68,305.40 141.75,292.95 141.81,280.62 141.87,268.44 141.94,256.44 142.00,244.66 142.07,233.15 142.13,221.92
|
||||
142.20,211.03 142.26,200.51 142.32,190.38 142.39,180.69 142.45,171.46 142.52,162.73 142.58,154.51 142.64,146.84 142.71,139.73 142.77,133.22 142.84,127.30 142.90,122.01 142.97,117.36 143.03,113.34 143.09,109.98 143.16,107.27
|
||||
143.22,105.22 143.29,103.83 143.35,103.09 143.42,103.00 143.48,103.54 143.54,104.71 143.61,106.49 143.67,108.87 143.74,111.83 143.80,115.35 143.86,119.41 143.93,123.99 143.99,129.05 144.06,134.58 144.12,140.55 144.19,146.93
|
||||
144.25,153.69 144.31,160.80 144.38,168.23 144.44,175.96 144.51,183.94 144.57,192.15 144.64,200.57 144.70,209.15 144.76,217.88 144.83,226.72 144.89,235.64 144.96,244.61 145.02,253.62 145.09,262.63 145.15,271.63 145.21,280.58
|
||||
145.28,289.46 145.34,298.26 145.41,306.96 145.47,315.54 145.53,323.98 145.60,332.27 145.66,340.40 145.73,348.36 145.79,356.12 145.86,363.70 145.92,371.08 145.98,378.26 146.05,385.22 146.11,391.98 146.18,398.53 146.24,404.87
|
||||
146.31,411.00 146.37,416.93 146.43,422.66 146.50,428.19 146.56,433.53 146.63,438.69 146.69,443.67 146.75,448.48 146.82,453.13 146.88,457.63 146.95,461.99 147.01,466.22 147.08,470.32 147.14,474.31 147.20,478.19 147.27,481.97
|
||||
147.33,485.67 147.40,489.28 147.46,492.83 147.53,496.31 147.59,499.73 147.65,503.10 147.72,506.43 147.78,509.71 147.85,512.96 147.91,516.18 147.97,519.37 148.04,522.54 148.10,525.68 148.17,528.81 148.23,531.91 148.30,534.99
|
||||
148.36,538.05 148.42,541.09 148.49,544.11 148.55,547.10 148.62,550.07 148.68,553.01 148.75,555.92 148.81,558.80 148.87,561.64 148.94,564.44 149.00,567.21 149.07,569.93 149.13,572.60 149.20,575.22 149.26,577.79 149.32,580.31
|
||||
149.39,582.77 149.45,585.17 149.52,587.51 149.58,589.78 149.64,591.99 149.71,594.14 149.77,596.21 149.84,598.22 149.90,600.17 149.97,602.04 150.03,603.85 150.09,605.60 150.16,607.27 150.22,608.88 150.29,610.43 150.35,611.92
|
||||
150.42,613.35 150.48,614.72 150.54,616.03 150.61,617.29 150.67,618.50 150.74,619.66 150.80,620.77 150.86,621.84 150.93,622.87 150.99,623.86 151.06,624.81 151.12,625.73 151.19,626.62 151.25,627.49 151.31,628.32 151.38,629.14
|
||||
151.44,629.93 151.51,630.70 151.57,631.45 151.64,632.19 151.70,632.92 151.76,633.63 151.83,634.33 151.89,635.03 151.96,635.71 152.02,636.39 152.09,637.06 152.15,637.73 152.21,638.39 152.28,639.04 152.34,639.70 152.41,640.34
|
||||
152.47,640.99 152.53,641.63 152.60,642.27 152.66,642.90 152.73,643.53 152.79,644.15 152.86,644.77 152.92,645.39 152.98,646.00 153.05,646.60 153.11,647.20 153.18,647.79 153.24,648.37 153.31,648.94 153.37,649.50 153.43,650.06
|
||||
153.50,650.60 153.56,651.14 153.63,651.66 153.69,652.17 153.75,652.67 153.82,653.16 153.88,653.63 153.95,654.09 154.01,654.54 154.08,654.97 154.14,655.39 154.20,655.79 154.27,656.18 154.33,656.56 154.40,656.92 154.46,657.26
|
||||
154.53,657.60 154.59,657.91 154.65,658.21 154.72,658.50 154.78,658.77 154.85,659.03 154.91,659.28 154.97,659.51 155.04,659.73 155.10,659.94 155.17,660.13 155.23,660.31 155.30,660.48 155.36,660.64 155.42,660.79 155.49,660.93
|
||||
155.55,661.06 155.62,661.18 155.68,661.29 155.75,661.39 155.81,661.49 155.87,661.58 155.94,661.66 156.00,661.73 156.07,661.80 156.13,661.86 156.20,661.91 156.26,661.96 156.32,662.01 156.39,662.05 156.45,662.09 156.52,662.13
|
||||
156.58,662.16 156.64,662.18 156.71,662.21 156.77,662.23 156.84,662.25 156.90,662.27 156.97,662.28 157.03,662.30 157.09,662.31 157.16,662.32 157.22,662.33 157.29,662.34 157.35,662.34 157.42,662.35 157.48,662.35 157.54,662.36
|
||||
157.61,662.36 157.67,662.36 157.74,662.36 157.80,662.37 157.86,662.36 157.93,662.36 157.99,662.36 158.06,662.36 158.12,662.35 158.19,662.35 158.25,662.34 158.31,662.34 158.38,662.33 158.44,662.32 158.51,662.31 158.57,662.30
|
||||
158.64,662.28 158.70,662.27 158.76,662.25 158.83,662.23 158.89,662.20 158.96,662.17 159.02,662.15 159.09,662.11 159.15,662.07 159.21,662.03 159.28,661.99 159.34,661.94 159.41,661.88 159.47,661.82 159.53,661.75 159.60,661.68
|
||||
159.66,661.60 159.73,661.51 159.79,661.41 159.86,661.30 159.92,661.19 159.98,661.06 160.05,660.93 160.11,660.79 160.18,660.63 160.24,660.46 160.31,660.28 160.37,660.09 160.43,659.89 160.50,659.67 160.56,659.44 160.63,659.20
|
||||
160.69,658.94 160.75,658.67 160.82,658.38 160.88,658.08 160.95,657.77 161.01,657.45 161.08,657.11 161.14,656.75 161.20,656.39 161.27,656.01 161.33,655.62 161.40,655.23 161.46,654.82 161.53,654.40 161.59,653.98 161.65,653.55
|
||||
161.72,653.12 161.78,652.68 161.85,652.24 161.91,651.80 161.97,651.36 162.04,650.93 162.10,650.49 162.17,650.07 162.23,649.65 162.30,649.25 162.36,648.85 162.42,648.47 162.49,648.11 162.55,647.76 162.62,647.43 162.68,647.12
|
||||
162.75,646.83 162.81,646.57 162.87,646.33 162.94,646.12 163.00,645.94 163.07,645.78 163.13,645.66 163.20,645.56 163.26,645.49 163.32,645.46 163.39,645.45 163.45,645.48 163.52,645.54 163.58,645.63 163.64,645.75 163.71,645.89
|
||||
163.77,646.07 163.84,646.27 163.90,646.50 163.97,646.76 164.03,647.04 164.09,647.34 164.16,647.67 164.22,648.01 164.29,648.37 164.35,648.75 164.42,649.14 164.48,649.54 164.54,649.95 164.61,650.38 164.67,650.81 164.74,651.24
|
||||
164.80,651.68 164.86,652.12 164.93,652.56 164.99,653.00 165.06,653.43 165.12,653.86 165.19,654.29 165.25,654.71 165.31,655.12 165.38,655.52 165.44,655.91 165.51,656.29 165.57,656.66 165.64,657.01 165.70,657.35 165.76,657.68
|
||||
165.83,658.00 165.89,658.30 165.96,658.59 166.02,658.87 166.09,659.13 166.15,659.38 166.21,659.61 166.28,659.83 166.34,660.04 166.41,660.23 166.47,660.41 166.53,660.59 166.60,660.74 166.66,660.89 166.73,661.03 166.79,661.16
|
||||
166.86,661.27 166.92,661.38 166.98,661.48 167.05,661.57 167.11,661.66 167.18,661.73 167.24,661.80 167.31,661.86 167.37,661.92 167.43,661.97 167.50,662.02 167.56,662.06 167.63,662.10 167.69,662.14 167.75,662.17 167.82,662.20
|
||||
167.88,662.22 167.95,662.24 168.01,662.26 168.08,662.28 168.08,662.40 168.01,662.40 167.95,662.40 167.88,662.40 167.82,662.40 167.75,662.40 167.69,662.40 167.63,662.40 167.56,662.40 167.50,662.40 167.43,662.40 167.37,662.40
|
||||
167.31,662.40 167.24,662.40 167.18,662.40 167.11,662.40 167.05,662.40 166.98,662.40 166.92,662.40 166.86,662.40 166.79,662.40 166.73,662.40 166.66,662.40 166.60,662.40 166.53,662.40 166.47,662.40 166.41,662.40 166.34,662.40
|
||||
166.28,662.40 166.21,662.40 166.15,662.40 166.09,662.40 166.02,662.40 165.96,662.40 165.89,662.40 165.83,662.40 165.76,662.40 165.70,662.40 165.64,662.40 165.57,662.40 165.51,662.40 165.44,662.40 165.38,662.40 165.31,662.40
|
||||
165.25,662.40 165.19,662.40 165.12,662.40 165.06,662.40 164.99,662.40 164.93,662.40 164.86,662.40 164.80,662.40 164.74,662.40 164.67,662.40 164.61,662.40 164.54,662.40 164.48,662.40 164.42,662.40 164.35,662.40 164.29,662.40
|
||||
164.22,662.40 164.16,662.40 164.09,662.40 164.03,662.40 163.97,662.40 163.90,662.40 163.84,662.40 163.77,662.40 163.71,662.40 163.64,662.40 163.58,662.40 163.52,662.40 163.45,662.40 163.39,662.40 163.32,662.40 163.26,662.40
|
||||
163.20,662.40 163.13,662.40 163.07,662.40 163.00,662.40 162.94,662.40 162.87,662.40 162.81,662.40 162.75,662.40 162.68,662.40 162.62,662.40 162.55,662.40 162.49,662.40 162.42,662.40 162.36,662.40 162.30,662.40 162.23,662.40
|
||||
162.17,662.40 162.10,662.40 162.04,662.40 161.97,662.40 161.91,662.40 161.85,662.40 161.78,662.40 161.72,662.40 161.65,662.40 161.59,662.40 161.53,662.40 161.46,662.40 161.40,662.40 161.33,662.40 161.27,662.40 161.20,662.40
|
||||
161.14,662.40 161.08,662.40 161.01,662.40 160.95,662.40 160.88,662.40 160.82,662.40 160.75,662.40 160.69,662.40 160.63,662.40 160.56,662.40 160.50,662.40 160.43,662.40 160.37,662.40 160.31,662.40 160.24,662.40 160.18,662.40
|
||||
160.11,662.40 160.05,662.40 159.98,662.40 159.92,662.40 159.86,662.40 159.79,662.40 159.73,662.40 159.66,662.40 159.60,662.40 159.53,662.40 159.47,662.40 159.41,662.40 159.34,662.40 159.28,662.40 159.21,662.40 159.15,662.40
|
||||
159.09,662.40 159.02,662.40 158.96,662.40 158.89,662.40 158.83,662.40 158.76,662.40 158.70,662.40 158.64,662.40 158.57,662.40 158.51,662.40 158.44,662.40 158.38,662.40 158.31,662.40 158.25,662.40 158.19,662.40 158.12,662.40
|
||||
158.06,662.40 157.99,662.40 157.93,662.40 157.86,662.40 157.80,662.40 157.74,662.40 157.67,662.40 157.61,662.40 157.54,662.40 157.48,662.40 157.42,662.40 157.35,662.40 157.29,662.40 157.22,662.40 157.16,662.40 157.09,662.40
|
||||
157.03,662.40 156.97,662.40 156.90,662.40 156.84,662.40 156.77,662.40 156.71,662.40 156.64,662.40 156.58,662.40 156.52,662.40 156.45,662.40 156.39,662.40 156.32,662.40 156.26,662.40 156.20,662.40 156.13,662.40 156.07,662.40
|
||||
156.00,662.40 155.94,662.40 155.87,662.40 155.81,662.40 155.75,662.40 155.68,662.40 155.62,662.40 155.55,662.40 155.49,662.40 155.42,662.40 155.36,662.40 155.30,662.40 155.23,662.40 155.17,662.40 155.10,662.40 155.04,662.40
|
||||
154.97,662.40 154.91,662.40 154.85,662.40 154.78,662.40 154.72,662.40 154.65,662.40 154.59,662.40 154.53,662.40 154.46,662.40 154.40,662.40 154.33,662.40 154.27,662.40 154.20,662.40 154.14,662.40 154.08,662.40 154.01,662.40
|
||||
153.95,662.40 153.88,662.40 153.82,662.40 153.75,662.40 153.69,662.40 153.63,662.40 153.56,662.40 153.50,662.40 153.43,662.40 153.37,662.40 153.31,662.40 153.24,662.40 153.18,662.40 153.11,662.40 153.05,662.40 152.98,662.40
|
||||
152.92,662.40 152.86,662.40 152.79,662.40 152.73,662.40 152.66,662.40 152.60,662.40 152.53,662.40 152.47,662.40 152.41,662.40 152.34,662.40 152.28,662.40 152.21,662.40 152.15,662.40 152.09,662.40 152.02,662.40 151.96,662.40
|
||||
151.89,662.40 151.83,662.40 151.76,662.40 151.70,662.40 151.64,662.40 151.57,662.40 151.51,662.40 151.44,662.40 151.38,662.40 151.31,662.40 151.25,662.40 151.19,662.40 151.12,662.40 151.06,662.40 150.99,662.40 150.93,662.40
|
||||
150.86,662.40 150.80,662.40 150.74,662.40 150.67,662.40 150.61,662.40 150.54,662.40 150.48,662.40 150.42,662.40 150.35,662.40 150.29,662.40 150.22,662.40 150.16,662.40 150.09,662.40 150.03,662.40 149.97,662.40 149.90,662.40
|
||||
149.84,662.40 149.77,662.40 149.71,662.40 149.64,662.40 149.58,662.40 149.52,662.40 149.45,662.40 149.39,662.40 149.32,662.40 149.26,662.40 149.20,662.40 149.13,662.40 149.07,662.40 149.00,662.40 148.94,662.40 148.87,662.40
|
||||
148.81,662.40 148.75,662.40 148.68,662.40 148.62,662.40 148.55,662.40 148.49,662.40 148.42,662.40 148.36,662.40 148.30,662.40 148.23,662.40 148.17,662.40 148.10,662.40 148.04,662.40 147.97,662.40 147.91,662.40 147.85,662.40
|
||||
147.78,662.40 147.72,662.40 147.65,662.40 147.59,662.40 147.53,662.40 147.46,662.40 147.40,662.40 147.33,662.40 147.27,662.40 147.20,662.40 147.14,662.40 147.08,662.40 147.01,662.40 146.95,662.40 146.88,662.40 146.82,662.40
|
||||
146.75,662.40 146.69,662.40 146.63,662.40 146.56,662.40 146.50,662.40 146.43,662.40 146.37,662.40 146.31,662.40 146.24,662.40 146.18,662.40 146.11,662.40 146.05,662.40 145.98,662.40 145.92,662.40 145.86,662.40 145.79,662.40
|
||||
145.73,662.40 145.66,662.40 145.60,662.40 145.53,662.40 145.47,662.40 145.41,662.40 145.34,662.40 145.28,662.40 145.21,662.40 145.15,662.40 145.09,662.40 145.02,662.40 144.96,662.40 144.89,662.40 144.83,662.40 144.76,662.40
|
||||
144.70,662.40 144.64,662.40 144.57,662.40 144.51,662.40 144.44,662.40 144.38,662.40 144.31,662.40 144.25,662.40 144.19,662.40 144.12,662.40 144.06,662.40 143.99,662.40 143.93,662.40 143.86,662.40 143.80,662.40 143.74,662.40
|
||||
143.67,662.40 143.61,662.40 143.54,662.40 143.48,662.40 143.42,662.40 143.35,662.40 143.29,662.40 143.22,662.40 143.16,662.40 143.09,662.40 143.03,662.40 142.97,662.40 142.90,662.40 142.84,662.40 142.77,662.40 142.71,662.40
|
||||
142.64,662.40 142.58,662.40 142.52,662.40 142.45,662.40 142.39,662.40 142.32,662.40 142.26,662.40 142.20,662.40 142.13,662.40 142.07,662.40 142.00,662.40 141.94,662.40 141.87,662.40 141.81,662.40 141.75,662.40 141.68,662.40
|
||||
141.62,662.40 141.55,662.40 141.49,662.40 141.42,662.40 141.36,662.40 141.30,662.40 141.23,662.40 141.17,662.40 141.10,662.40 141.04,662.40 140.97,662.40 140.91,662.40 140.85,662.40 140.78,662.40 140.72,662.40 140.65,662.40
|
||||
140.59,662.40 140.53,662.40 140.46,662.40 140.40,662.40 140.33,662.40 140.27,662.40 140.20,662.40 140.14,662.40 140.08,662.40 140.01,662.40 139.95,662.40 139.88,662.40 139.82,662.40 139.75,662.40 139.69,662.40 139.63,662.40
|
||||
139.56,662.40 139.50,662.40 139.43,662.40 139.37,662.40 139.31,662.40 139.24,662.40 139.18,662.40 139.11,662.40 139.05,662.40 138.98,662.40 138.92,662.40 138.86,662.40 138.79,662.40 138.73,662.40 138.66,662.40 138.60,662.40
|
||||
138.53,662.40 138.47,662.40 138.41,662.40 138.34,662.40 138.28,662.40 138.21,662.40 138.15,662.40 138.08,662.40 138.02,662.40 137.96,662.40 137.89,662.40 137.83,662.40 137.76,662.40 137.70,662.40 137.64,662.40 137.57,662.40
|
||||
137.51,662.40 137.44,662.40 137.38,662.40 137.31,662.40 137.25,662.40 137.19,662.40 137.12,662.40 137.06,662.40 136.99,662.40 136.93,662.40 136.86,662.40 136.80,662.40 136.74,662.40 136.67,662.40 136.61,662.40 136.54,662.40
|
||||
136.48,662.40 136.42,662.40 136.35,662.40 136.29,662.40 136.22,662.40 136.16,662.40 136.09,662.40 136.03,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1145.14,117.01 L1187.70,117.01 M144.74,662.40 L144.74,215.26 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/compute_shared_point</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1,396 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L1254.82,644.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L81.53,644.40 '/> <g transform="translate(64.14,648.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,585.36 L1254.82,585.36 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,585.36 L81.53,585.36 '/> <g transform="translate(64.14,589.26)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,526.32 L1254.82,526.32 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,526.32 L81.53,526.32 '/> <g transform="translate(64.14,530.22)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,467.28 L1254.82,467.28 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,467.28 L81.53,467.28 '/> <g transform="translate(64.14,471.18)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,408.24 L1254.82,408.24 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,408.24 L81.53,408.24 '/> <g transform="translate(64.14,412.14)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,349.20 L1254.82,349.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,349.20 L81.53,349.20 '/> <g transform="translate(64.14,353.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,290.17 L1254.82,290.17 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,290.17 L81.53,290.17 '/> <g transform="translate(64.14,294.07)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,231.13 L1254.82,231.13 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,231.13 L81.53,231.13 '/> <g transform="translate(64.14,235.03)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 140</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,172.09 L1254.82,172.09 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,172.09 L81.53,172.09 '/> <g transform="translate(64.14,175.99)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 160</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,113.05 L1254.82,113.05 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,113.05 L81.53,113.05 '/> <g transform="translate(64.14,116.95)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 180</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,54.01 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L72.53,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L72.53,635.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M190.76,644.40 L190.76,99.01 M190.76,63.01 L190.76,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M190.76,644.40 L190.76,635.40 '/> <g transform="translate(190.76,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M308.99,644.40 L308.99,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M308.99,644.40 L308.99,635.40 '/> <g transform="translate(308.99,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M427.22,644.40 L427.22,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M427.22,644.40 L427.22,635.40 '/> <g transform="translate(427.22,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M545.45,644.40 L545.45,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M545.45,644.40 L545.45,635.40 '/> <g transform="translate(545.45,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M663.68,644.40 L663.68,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M663.68,644.40 L663.68,635.40 '/> <g transform="translate(663.68,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M781.90,644.40 L781.90,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M781.90,644.40 L781.90,635.40 '/> <g transform="translate(781.90,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M900.13,644.40 L900.13,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M900.13,644.40 L900.13,635.40 '/> <g transform="translate(900.13,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1018.36,644.40 L1018.36,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1018.36,644.40 L1018.36,635.40 '/> <g transform="translate(1018.36,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1136.59,644.40 L1136.59,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1136.59,644.40 L1136.59,635.40 '/> <g transform="translate(1136.59,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1254.82,644.40 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1254.82,644.40 L1254.82,635.40 '/> <g transform="translate(1254.82,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,98.85 1195.71,98.59 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,344.77 1195.71,344.34 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,75.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M89.31,72.01 L131.87,72.01 M72.53,644.40 L1195.71,98.73 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,93.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M89.31,90.01 L131.87,90.01 M72.53,644.40 L1195.71,344.55 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,349.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,693.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/compute_shared_point</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,320 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,594.80 L89.92,594.80 '/> <g transform="translate(72.53,598.70)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,527.20 L89.92,527.20 '/> <g transform="translate(72.53,531.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,459.60 L89.92,459.60 '/> <g transform="translate(72.53,463.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,392.00 L89.92,392.00 '/> <g transform="translate(72.53,395.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,324.41 L89.92,324.41 '/> <g transform="translate(72.53,328.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,256.81 L89.92,256.81 '/> <g transform="translate(72.53,260.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,189.21 L89.92,189.21 '/> <g transform="translate(72.53,193.11)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,121.61 L89.92,121.61 '/> <g transform="translate(72.53,125.51)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M157.31,662.40 L157.31,653.40 '/> <g transform="translate(157.31,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.16</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M317.72,662.40 L317.72,653.40 '/> <g transform="translate(317.72,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.14</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M478.12,662.40 L478.12,653.40 '/> <g transform="translate(478.12,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.12</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M638.53,662.40 L638.53,653.40 '/> <g transform="translate(638.53,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M798.94,662.40 L798.94,653.40 '/> <g transform="translate(798.94,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.08</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M959.34,662.40 L959.34,653.40 '/> <g transform="translate(959.34,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.06</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M80.92,631.10 L82.78,630.35 L84.65,629.57 L86.51,628.78 L88.37,627.98 L90.24,627.16
|
||||
L92.10,626.32 L93.97,625.47 L95.83,624.62 L97.69,623.75 L99.56,622.87 L101.42,621.99 L103.28,621.10 L105.15,620.20
|
||||
L107.01,619.31 L108.88,618.40 L110.74,617.49 L112.60,616.58 L114.47,615.65 L116.33,614.73 L118.19,613.79 L120.06,612.84
|
||||
L121.92,611.88 L123.78,610.90 L125.65,609.91 L127.51,608.90 L129.38,607.87 L131.24,606.81 L133.10,605.73 L134.97,604.61
|
||||
L136.83,603.47 L138.69,602.29 L140.56,601.07 L142.42,599.82 L144.29,598.53 L146.15,597.20 L148.01,595.83 L149.88,594.43
|
||||
L151.74,592.98 L153.60,591.51 L155.47,589.99 L157.33,588.45 L159.19,586.88 L161.06,585.29 L162.92,583.68 L164.79,582.05
|
||||
L166.65,580.41 L168.51,578.78 L170.38,577.14 L172.24,575.50 L174.10,573.88 L175.97,572.27 L177.83,570.67 L179.70,569.09
|
||||
L181.56,567.54 L183.42,566.00 L185.29,564.49 L187.15,562.99 L189.01,561.52 L190.88,560.06 L192.74,558.62 L194.60,557.19
|
||||
L196.47,555.76 L198.33,554.33 L200.20,552.90 L202.06,551.46 L203.92,550.01 L205.79,548.54 L207.65,547.04 L209.51,545.52
|
||||
L211.38,543.96 L213.24,542.37 L215.11,540.74 L216.97,539.06 L218.83,537.34 L220.70,535.57 L222.56,533.76 L224.42,531.90
|
||||
L226.29,529.99 L228.15,528.03 L230.01,526.03 L231.88,523.99 L233.74,521.90 L235.61,519.77 L237.47,517.61 L239.33,515.41
|
||||
L241.20,513.17 L243.06,510.91 L244.92,508.61 L246.79,506.28 L248.65,503.93 L250.52,501.56 L252.38,499.15 L254.24,496.73
|
||||
L256.11,494.28 L257.97,491.80 L259.83,489.30 L261.70,486.78 L263.56,484.22 L265.43,481.64 L267.29,479.02 L269.15,476.37
|
||||
L271.02,473.69 L272.88,470.96 L274.74,468.20 L276.61,465.39 L278.47,462.53 L280.33,459.63 L282.20,456.68 L284.06,453.69
|
||||
L285.93,450.65 L287.79,447.57 L289.65,444.44 L291.52,441.27 L293.38,438.07 L295.24,434.84 L297.11,431.58 L298.97,428.30
|
||||
L300.84,425.01 L302.70,421.71 L304.56,418.40 L306.43,415.10 L308.29,411.80 L310.15,408.52 L312.02,405.25 L313.88,402.01
|
||||
L315.74,398.79 L317.61,395.60 L319.47,392.44 L321.34,389.31 L323.20,386.20 L325.06,383.13 L326.93,380.08 L328.79,377.05
|
||||
L330.65,374.04 L332.52,371.05 L334.38,368.06 L336.25,365.08 L338.11,362.11 L339.97,359.12 L341.84,356.13 L343.70,353.13
|
||||
L345.56,350.10 L347.43,347.07 L349.29,344.01 L351.15,340.92 L353.02,337.82 L354.88,334.69 L356.75,331.54 L358.61,328.37
|
||||
L360.47,325.18 L362.34,321.97 L364.20,318.75 L366.06,315.51 L367.93,312.25 L369.79,308.99 L371.66,305.71 L373.52,302.43
|
||||
L375.38,299.14 L377.25,295.84 L379.11,292.54 L380.97,289.23 L382.84,285.91 L384.70,282.60 L386.56,279.28 L388.43,275.96
|
||||
L390.29,272.65 L392.16,269.33 L394.02,266.02 L395.88,262.72 L397.75,259.44 L399.61,256.17 L401.47,252.92 L403.34,249.69
|
||||
L405.20,246.49 L407.07,243.32 L408.93,240.19 L410.79,237.10 L412.66,234.05 L414.52,231.05 L416.38,228.10 L418.25,225.21
|
||||
L420.11,222.36 L421.97,219.58 L423.84,216.84 L425.70,214.16 L427.57,211.54 L429.43,208.96 L431.29,206.43 L433.16,203.95
|
||||
L435.02,201.50 L436.88,199.08 L438.75,196.69 L440.61,194.32 L442.48,191.96 L444.34,189.61 L446.20,187.26 L448.07,184.90
|
||||
L449.93,182.53 L451.79,180.14 L453.66,177.73 L455.52,175.29 L457.38,172.83 L459.25,170.33 L461.11,167.81 L462.98,165.26
|
||||
L464.84,162.68 L466.70,160.08 L468.57,157.46 L470.43,154.83 L472.29,152.20 L474.16,149.56 L476.02,146.94 L477.89,144.34
|
||||
L479.75,141.77 L481.61,139.23 L483.48,136.74 L485.34,134.30 L487.20,131.91 L489.07,129.59 L490.93,127.33 L492.79,125.15
|
||||
L494.66,123.04 L496.52,121.01 L498.39,119.06 L500.25,117.17 L502.11,115.37 L503.98,113.63 L505.84,111.96 L507.70,110.36
|
||||
L509.57,108.82 L511.43,107.33 L513.30,105.90 L515.16,104.52 L517.02,103.20 L518.89,101.92 L520.75,100.69 L522.61,99.51
|
||||
L524.48,98.38 L526.34,97.31 L528.20,96.29 L530.07,95.33 L531.93,94.44 L533.80,93.61 L535.66,92.85 L537.52,92.16
|
||||
L539.39,91.54 L541.25,91.01 L543.11,90.55 L544.98,90.16 L546.84,89.86 L548.71,89.62 L550.57,89.46 L552.43,89.36
|
||||
L554.30,89.33 L556.16,89.36 L558.02,89.44 L559.89,89.58 L561.75,89.77 L563.62,90.01 L565.48,90.29 L567.34,90.61
|
||||
L569.21,90.99 L571.07,91.40 L572.93,91.86 L574.80,92.37 L576.66,92.93 L578.52,93.54 L580.39,94.21 L582.25,94.93
|
||||
L584.12,95.70 L585.98,96.54 L587.84,97.43 L589.71,98.38 L591.57,99.39 L593.43,100.46 L595.30,101.58 L597.16,102.77
|
||||
L599.03,104.01 L600.89,105.30 L602.75,106.66 L604.62,108.07 L606.48,109.55 L608.34,111.09 L610.21,112.69 L612.07,114.36
|
||||
L613.93,116.11 L615.80,117.93 L617.66,119.83 L619.53,121.81 L621.39,123.88 L623.25,126.03 L625.12,128.27 L626.98,130.59
|
||||
L628.84,133.00 L630.71,135.49 L632.57,138.05 L634.44,140.69 L636.30,143.39 L638.16,146.15 L640.03,148.96 L641.89,151.82
|
||||
L643.75,154.71 L645.62,157.62 L647.48,160.56 L649.34,163.51 L651.21,166.46 L653.07,169.42 L654.94,172.37 L656.80,175.31
|
||||
L658.66,178.24 L660.53,181.16 L662.39,184.07 L664.25,186.96 L666.12,189.84 L667.98,192.71 L669.85,195.58 L671.71,198.45
|
||||
L673.57,201.32 L675.44,204.20 L677.30,207.09 L679.16,210.01 L681.03,212.96 L682.89,215.94 L684.75,218.96 L686.62,222.03
|
||||
L688.48,225.14 L690.35,228.31 L692.21,231.53 L694.07,234.81 L695.94,238.14 L697.80,241.52 L699.66,244.95 L701.53,248.43
|
||||
L703.39,251.94 L705.26,255.49 L707.12,259.05 L708.98,262.64 L710.85,266.23 L712.71,269.82 L714.57,273.40 L716.44,276.96
|
||||
L718.30,280.51 L720.16,284.03 L722.03,287.51 L723.89,290.96 L725.76,294.38 L727.62,297.75 L729.48,301.09 L731.35,304.40
|
||||
L733.21,307.67 L735.07,310.92 L736.94,314.14 L738.80,317.35 L740.67,320.54 L742.53,323.74 L744.39,326.93 L746.26,330.14
|
||||
L748.12,333.36 L749.98,336.60 L751.85,339.87 L753.71,343.17 L755.57,346.51 L757.44,349.89 L759.30,353.30 L761.17,356.76
|
||||
L763.03,360.25 L764.89,363.78 L766.76,367.34 L768.62,370.92 L770.48,374.52 L772.35,378.14 L774.21,381.76 L776.08,385.37
|
||||
L777.94,388.98 L779.80,392.56 L781.67,396.11 L783.53,399.62 L785.39,403.08 L787.26,406.50 L789.12,409.85 L790.98,413.14
|
||||
L792.85,416.37 L794.71,419.53 L796.58,422.62 L798.44,425.65 L800.30,428.61 L802.17,431.51 L804.03,434.36 L805.89,437.16
|
||||
L807.76,439.92 L809.62,442.65 L811.49,445.35 L813.35,448.02 L815.21,450.69 L817.08,453.36 L818.94,456.03 L820.80,458.70
|
||||
L822.67,461.40 L824.53,464.11 L826.39,466.84 L828.26,469.61 L830.12,472.39 L831.99,475.20 L833.85,478.04 L835.71,480.89
|
||||
L837.58,483.76 L839.44,486.65 L841.30,489.53 L843.17,492.42 L845.03,495.30 L846.90,498.16 L848.76,501.00 L850.62,503.80
|
||||
L852.49,506.56 L854.35,509.28 L856.21,511.93 L858.08,514.53 L859.94,517.06 L861.81,519.52 L863.67,521.90 L865.53,524.20
|
||||
L867.40,526.43 L869.26,528.57 L871.12,530.64 L872.99,532.63 L874.85,534.55 L876.71,536.40 L878.58,538.19 L880.44,539.93
|
||||
L882.31,541.61 L884.17,543.26 L886.03,544.87 L887.90,546.45 L889.76,548.01 L891.62,549.56 L893.49,551.10 L895.35,552.64
|
||||
L897.22,554.19 L899.08,555.74 L900.94,557.30 L902.81,558.87 L904.67,560.46 L906.53,562.06 L908.40,563.67 L910.26,565.29
|
||||
L912.12,566.92 L913.99,568.56 L915.85,570.19 L917.72,571.83 L919.58,573.46 L921.44,575.08 L923.31,576.68 L925.17,578.28
|
||||
L927.03,579.85 L928.90,581.41 L930.76,582.95 L932.63,584.46 L934.49,585.96 L936.35,587.43 L938.22,588.88 L940.08,590.32
|
||||
L941.94,591.73 L943.81,593.13 L945.67,594.52 L947.53,595.88 L949.40,597.24 L951.26,598.57 L953.13,599.89 L954.99,601.20
|
||||
L956.85,602.49 L958.72,603.76 L960.58,605.01 L962.44,606.25 L964.31,607.46 L966.17,608.64 L968.04,609.80 L969.90,610.94
|
||||
L971.76,612.05 L973.63,613.13 L975.49,614.18 L977.35,615.20 L979.22,616.19 L981.08,617.15 L982.94,618.08 L984.81,618.99
|
||||
L986.67,619.87 L988.54,620.72 L990.40,621.55 L992.26,622.36 L994.13,623.14 L995.99,623.91 L997.85,624.66 L999.72,625.39
|
||||
L1001.58,626.10 L1003.45,626.80 L1005.31,627.48 L1007.17,628.16 L1009.04,628.81 L1010.90,629.46 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '166.65,580.41 168.51,578.78 170.38,577.14 172.24,575.50 174.10,573.88 175.97,572.27 177.83,570.67 179.70,569.09 181.56,567.54 183.42,566.00 185.29,564.49 187.15,562.99 189.01,561.52 190.88,560.06 192.74,558.62 194.60,557.19
|
||||
196.47,555.76 198.33,554.33 200.20,552.90 202.06,551.46 203.92,550.01 205.79,548.54 207.65,547.04 209.51,545.52 211.38,543.96 213.24,542.37 215.11,540.74 216.97,539.06 218.83,537.34 220.70,535.57 222.56,533.76 224.42,531.90
|
||||
226.29,529.99 228.15,528.03 230.01,526.03 231.88,523.99 233.74,521.90 235.61,519.77 237.47,517.61 239.33,515.41 241.20,513.17 243.06,510.91 244.92,508.61 246.79,506.28 248.65,503.93 250.52,501.56 252.38,499.15 254.24,496.73
|
||||
256.11,494.28 257.97,491.80 259.83,489.30 261.70,486.78 263.56,484.22 265.43,481.64 267.29,479.02 269.15,476.37 271.02,473.69 272.88,470.96 274.74,468.20 276.61,465.39 278.47,462.53 280.33,459.63 282.20,456.68 284.06,453.69
|
||||
285.93,450.65 287.79,447.57 289.65,444.44 291.52,441.27 293.38,438.07 295.24,434.84 297.11,431.58 298.97,428.30 300.84,425.01 302.70,421.71 304.56,418.40 306.43,415.10 308.29,411.80 310.15,408.52 312.02,405.25 313.88,402.01
|
||||
315.74,398.79 317.61,395.60 319.47,392.44 321.34,389.31 323.20,386.20 325.06,383.13 326.93,380.08 328.79,377.05 330.65,374.04 332.52,371.05 334.38,368.06 336.25,365.08 338.11,362.11 339.97,359.12 341.84,356.13 343.70,353.13
|
||||
345.56,350.10 347.43,347.07 349.29,344.01 351.15,340.92 353.02,337.82 354.88,334.69 356.75,331.54 358.61,328.37 360.47,325.18 362.34,321.97 364.20,318.75 366.06,315.51 367.93,312.25 369.79,308.99 371.66,305.71 373.52,302.43
|
||||
375.38,299.14 377.25,295.84 379.11,292.54 380.97,289.23 382.84,285.91 384.70,282.60 386.56,279.28 388.43,275.96 390.29,272.65 392.16,269.33 394.02,266.02 395.88,262.72 397.75,259.44 399.61,256.17 401.47,252.92 403.34,249.69
|
||||
405.20,246.49 407.07,243.32 408.93,240.19 410.79,237.10 412.66,234.05 414.52,231.05 416.38,228.10 418.25,225.21 420.11,222.36 421.97,219.58 423.84,216.84 425.70,214.16 427.57,211.54 429.43,208.96 431.29,206.43 433.16,203.95
|
||||
435.02,201.50 436.88,199.08 438.75,196.69 440.61,194.32 442.48,191.96 444.34,189.61 446.20,187.26 448.07,184.90 449.93,182.53 451.79,180.14 453.66,177.73 455.52,175.29 457.38,172.83 459.25,170.33 461.11,167.81 462.98,165.26
|
||||
464.84,162.68 466.70,160.08 468.57,157.46 470.43,154.83 472.29,152.20 474.16,149.56 476.02,146.94 477.89,144.34 479.75,141.77 481.61,139.23 483.48,136.74 485.34,134.30 487.20,131.91 489.07,129.59 490.93,127.33 492.79,125.15
|
||||
494.66,123.04 496.52,121.01 498.39,119.06 500.25,117.17 502.11,115.37 503.98,113.63 505.84,111.96 507.70,110.36 509.57,108.82 511.43,107.33 513.30,105.90 515.16,104.52 517.02,103.20 518.89,101.92 520.75,100.69 522.61,99.51
|
||||
524.48,98.38 526.34,97.31 528.20,96.29 530.07,95.33 531.93,94.44 533.80,93.61 535.66,92.85 537.52,92.16 539.39,91.54 541.25,91.01 543.11,90.55 544.98,90.16 546.84,89.86 548.71,89.62 550.57,89.46 552.43,89.36
|
||||
554.30,89.33 556.16,89.36 558.02,89.44 559.89,89.58 561.75,89.77 563.62,90.01 565.48,90.29 567.34,90.61 569.21,90.99 571.07,91.40 572.93,91.86 574.80,92.37 576.66,92.93 578.52,93.54 580.39,94.21 582.25,94.93
|
||||
584.12,95.70 585.98,96.54 587.84,97.43 589.71,98.38 591.57,99.39 593.43,100.46 595.30,101.58 597.16,102.77 599.03,104.01 600.89,105.30 602.75,106.66 604.62,108.07 606.48,109.55 608.34,111.09 610.21,112.69 612.07,114.36
|
||||
613.93,116.11 615.80,117.93 617.66,119.83 619.53,121.81 621.39,123.88 623.25,126.03 625.12,128.27 626.98,130.59 628.84,133.00 630.71,135.49 632.57,138.05 634.44,140.69 636.30,143.39 638.16,146.15 640.03,148.96 641.89,151.82
|
||||
643.75,154.71 645.62,157.62 647.48,160.56 649.34,163.51 651.21,166.46 653.07,169.42 654.94,172.37 656.80,175.31 658.66,178.24 660.53,181.16 662.39,184.07 664.25,186.96 666.12,189.84 667.98,192.71 669.85,195.58 671.71,198.45
|
||||
673.57,201.32 675.44,204.20 677.30,207.09 679.16,210.01 681.03,212.96 682.89,215.94 684.75,218.96 686.62,222.03 688.48,225.14 690.35,228.31 692.21,231.53 694.07,234.81 695.94,238.14 697.80,241.52 699.66,244.95 701.53,248.43
|
||||
703.39,251.94 705.26,255.49 707.12,259.05 708.98,262.64 710.85,266.23 712.71,269.82 714.57,273.40 716.44,276.96 718.30,280.51 720.16,284.03 722.03,287.51 723.89,290.96 725.76,294.38 727.62,297.75 729.48,301.09 731.35,304.40
|
||||
733.21,307.67 735.07,310.92 736.94,314.14 738.80,317.35 740.67,320.54 742.53,323.74 744.39,326.93 746.26,330.14 748.12,333.36 749.98,336.60 751.85,339.87 753.71,343.17 755.57,346.51 757.44,349.89 759.30,353.30 761.17,356.76
|
||||
763.03,360.25 764.89,363.78 766.76,367.34 768.62,370.92 770.48,374.52 772.35,378.14 774.21,381.76 776.08,385.37 777.94,388.98 779.80,392.56 781.67,396.11 783.53,399.62 785.39,403.08 787.26,406.50 789.12,409.85 790.98,413.14
|
||||
792.85,416.37 794.71,419.53 796.58,422.62 798.44,425.65 800.30,428.61 802.17,431.51 804.03,434.36 805.89,437.16 807.76,439.92 809.62,442.65 811.49,445.35 813.35,448.02 815.21,450.69 817.08,453.36 818.94,456.03 820.80,458.70
|
||||
822.67,461.40 824.53,464.11 826.39,466.84 828.26,469.61 830.12,472.39 831.99,475.20 833.85,478.04 835.71,480.89 837.58,483.76 839.44,486.65 841.30,489.53 843.17,492.42 845.03,495.30 846.90,498.16 848.76,501.00 850.62,503.80
|
||||
852.49,506.56 854.35,509.28 856.21,511.93 858.08,514.53 859.94,517.06 861.81,519.52 863.67,521.90 865.53,524.20 867.40,526.43 869.26,528.57 871.12,530.64 872.99,532.63 874.85,534.55 876.71,536.40 878.58,538.19 880.44,539.93
|
||||
882.31,541.61 884.17,543.26 886.03,544.87 887.90,546.45 889.76,548.01 891.62,549.56 893.49,551.10 895.35,552.64 897.22,554.19 899.08,555.74 900.94,557.30 902.81,558.87 904.67,560.46 906.53,562.06 908.40,563.67 910.26,565.29
|
||||
912.12,566.92 913.99,568.56 915.85,570.19 917.72,571.83 919.58,573.46 921.44,575.08 923.31,576.68 923.31,662.40 921.44,662.40 919.58,662.40 917.72,662.40 915.85,662.40 913.99,662.40 912.12,662.40 910.26,662.40 908.40,662.40
|
||||
906.53,662.40 904.67,662.40 902.81,662.40 900.94,662.40 899.08,662.40 897.22,662.40 895.35,662.40 893.49,662.40 891.62,662.40 889.76,662.40 887.90,662.40 886.03,662.40 884.17,662.40 882.31,662.40 880.44,662.40 878.58,662.40
|
||||
876.71,662.40 874.85,662.40 872.99,662.40 871.12,662.40 869.26,662.40 867.40,662.40 865.53,662.40 863.67,662.40 861.81,662.40 859.94,662.40 858.08,662.40 856.21,662.40 854.35,662.40 852.49,662.40 850.62,662.40 848.76,662.40
|
||||
846.90,662.40 845.03,662.40 843.17,662.40 841.30,662.40 839.44,662.40 837.58,662.40 835.71,662.40 833.85,662.40 831.99,662.40 830.12,662.40 828.26,662.40 826.39,662.40 824.53,662.40 822.67,662.40 820.80,662.40 818.94,662.40
|
||||
817.08,662.40 815.21,662.40 813.35,662.40 811.49,662.40 809.62,662.40 807.76,662.40 805.89,662.40 804.03,662.40 802.17,662.40 800.30,662.40 798.44,662.40 796.58,662.40 794.71,662.40 792.85,662.40 790.98,662.40 789.12,662.40
|
||||
787.26,662.40 785.39,662.40 783.53,662.40 781.67,662.40 779.80,662.40 777.94,662.40 776.08,662.40 774.21,662.40 772.35,662.40 770.48,662.40 768.62,662.40 766.76,662.40 764.89,662.40 763.03,662.40 761.17,662.40 759.30,662.40
|
||||
757.44,662.40 755.57,662.40 753.71,662.40 751.85,662.40 749.98,662.40 748.12,662.40 746.26,662.40 744.39,662.40 742.53,662.40 740.67,662.40 738.80,662.40 736.94,662.40 735.07,662.40 733.21,662.40 731.35,662.40 729.48,662.40
|
||||
727.62,662.40 725.76,662.40 723.89,662.40 722.03,662.40 720.16,662.40 718.30,662.40 716.44,662.40 714.57,662.40 712.71,662.40 710.85,662.40 708.98,662.40 707.12,662.40 705.26,662.40 703.39,662.40 701.53,662.40 699.66,662.40
|
||||
697.80,662.40 695.94,662.40 694.07,662.40 692.21,662.40 690.35,662.40 688.48,662.40 686.62,662.40 684.75,662.40 682.89,662.40 681.03,662.40 679.16,662.40 677.30,662.40 675.44,662.40 673.57,662.40 671.71,662.40 669.85,662.40
|
||||
667.98,662.40 666.12,662.40 664.25,662.40 662.39,662.40 660.53,662.40 658.66,662.40 656.80,662.40 654.94,662.40 653.07,662.40 651.21,662.40 649.34,662.40 647.48,662.40 645.62,662.40 643.75,662.40 641.89,662.40 640.03,662.40
|
||||
638.16,662.40 636.30,662.40 634.44,662.40 632.57,662.40 630.71,662.40 628.84,662.40 626.98,662.40 625.12,662.40 623.25,662.40 621.39,662.40 619.53,662.40 617.66,662.40 615.80,662.40 613.93,662.40 612.07,662.40 610.21,662.40
|
||||
608.34,662.40 606.48,662.40 604.62,662.40 602.75,662.40 600.89,662.40 599.03,662.40 597.16,662.40 595.30,662.40 593.43,662.40 591.57,662.40 589.71,662.40 587.84,662.40 585.98,662.40 584.12,662.40 582.25,662.40 580.39,662.40
|
||||
578.52,662.40 576.66,662.40 574.80,662.40 572.93,662.40 571.07,662.40 569.21,662.40 567.34,662.40 565.48,662.40 563.62,662.40 561.75,662.40 559.89,662.40 558.02,662.40 556.16,662.40 554.30,662.40 552.43,662.40 550.57,662.40
|
||||
548.71,662.40 546.84,662.40 544.98,662.40 543.11,662.40 541.25,662.40 539.39,662.40 537.52,662.40 535.66,662.40 533.80,662.40 531.93,662.40 530.07,662.40 528.20,662.40 526.34,662.40 524.48,662.40 522.61,662.40 520.75,662.40
|
||||
518.89,662.40 517.02,662.40 515.16,662.40 513.30,662.40 511.43,662.40 509.57,662.40 507.70,662.40 505.84,662.40 503.98,662.40 502.11,662.40 500.25,662.40 498.39,662.40 496.52,662.40 494.66,662.40 492.79,662.40 490.93,662.40
|
||||
489.07,662.40 487.20,662.40 485.34,662.40 483.48,662.40 481.61,662.40 479.75,662.40 477.89,662.40 476.02,662.40 474.16,662.40 472.29,662.40 470.43,662.40 468.57,662.40 466.70,662.40 464.84,662.40 462.98,662.40 461.11,662.40
|
||||
459.25,662.40 457.38,662.40 455.52,662.40 453.66,662.40 451.79,662.40 449.93,662.40 448.07,662.40 446.20,662.40 444.34,662.40 442.48,662.40 440.61,662.40 438.75,662.40 436.88,662.40 435.02,662.40 433.16,662.40 431.29,662.40
|
||||
429.43,662.40 427.57,662.40 425.70,662.40 423.84,662.40 421.97,662.40 420.11,662.40 418.25,662.40 416.38,662.40 414.52,662.40 412.66,662.40 410.79,662.40 408.93,662.40 407.07,662.40 405.20,662.40 403.34,662.40 401.47,662.40
|
||||
399.61,662.40 397.75,662.40 395.88,662.40 394.02,662.40 392.16,662.40 390.29,662.40 388.43,662.40 386.56,662.40 384.70,662.40 382.84,662.40 380.97,662.40 379.11,662.40 377.25,662.40 375.38,662.40 373.52,662.40 371.66,662.40
|
||||
369.79,662.40 367.93,662.40 366.06,662.40 364.20,662.40 362.34,662.40 360.47,662.40 358.61,662.40 356.75,662.40 354.88,662.40 353.02,662.40 351.15,662.40 349.29,662.40 347.43,662.40 345.56,662.40 343.70,662.40 341.84,662.40
|
||||
339.97,662.40 338.11,662.40 336.25,662.40 334.38,662.40 332.52,662.40 330.65,662.40 328.79,662.40 326.93,662.40 325.06,662.40 323.20,662.40 321.34,662.40 319.47,662.40 317.61,662.40 315.74,662.40 313.88,662.40 312.02,662.40
|
||||
310.15,662.40 308.29,662.40 306.43,662.40 304.56,662.40 302.70,662.40 300.84,662.40 298.97,662.40 297.11,662.40 295.24,662.40 293.38,662.40 291.52,662.40 289.65,662.40 287.79,662.40 285.93,662.40 284.06,662.40 282.20,662.40
|
||||
280.33,662.40 278.47,662.40 276.61,662.40 274.74,662.40 272.88,662.40 271.02,662.40 269.15,662.40 267.29,662.40 265.43,662.40 263.56,662.40 261.70,662.40 259.83,662.40 257.97,662.40 256.11,662.40 254.24,662.40 252.38,662.40
|
||||
250.52,662.40 248.65,662.40 246.79,662.40 244.92,662.40 243.06,662.40 241.20,662.40 239.33,662.40 237.47,662.40 235.61,662.40 233.74,662.40 231.88,662.40 230.01,662.40 228.15,662.40 226.29,662.40 224.42,662.40 222.56,662.40
|
||||
220.70,662.40 218.83,662.40 216.97,662.40 215.11,662.40 213.24,662.40 211.38,662.40 209.51,662.40 207.65,662.40 205.79,662.40 203.92,662.40 202.06,662.40 200.20,662.40 198.33,662.40 196.47,662.40 194.60,662.40 192.74,662.40
|
||||
190.88,662.40 189.01,662.40 187.15,662.40 185.29,662.40 183.42,662.40 181.56,662.40 179.70,662.40 177.83,662.40 175.97,662.40 174.10,662.40 172.24,662.40 170.38,662.40 168.51,662.40 166.65,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M552.71,662.40 L552.71,89.36 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '545.91,54.01 545.91,54.01 545.91,662.40 545.91,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/compute_shared_point: mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,310 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,561.00 L89.92,561.00 '/> <g transform="translate(72.53,564.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,459.60 L89.92,459.60 '/> <g transform="translate(72.53,463.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,358.20 L89.92,358.20 '/> <g transform="translate(72.53,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,256.81 L89.92,256.81 '/> <g transform="translate(72.53,260.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,155.41 L89.92,155.41 '/> <g transform="translate(72.53,159.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M197.02,662.40 L197.02,653.40 '/> <g transform="translate(197.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M323.30,662.40 L323.30,653.40 '/> <g transform="translate(323.30,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.14</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M449.58,662.40 L449.58,653.40 '/> <g transform="translate(449.58,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.13</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M575.86,662.40 L575.86,653.40 '/> <g transform="translate(575.86,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.12</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M702.14,662.40 L702.14,653.40 '/> <g transform="translate(702.14,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.11</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M828.41,662.40 L828.41,653.40 '/> <g transform="translate(828.41,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M954.69,662.40 L954.69,653.40 '/> <g transform="translate(954.69,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45.09</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M80.92,625.43 L82.78,624.39 L84.65,623.36 L86.51,622.34 L88.37,621.33 L90.24,620.33
|
||||
L92.10,619.35 L93.97,618.39 L95.83,617.46 L97.69,616.54 L99.56,615.65 L101.42,614.78 L103.28,613.95 L105.15,613.13
|
||||
L107.01,612.34 L108.88,611.58 L110.74,610.84 L112.60,610.12 L114.47,609.42 L116.33,608.74 L118.19,608.06 L120.06,607.40
|
||||
L121.92,606.75 L123.78,606.10 L125.65,605.45 L127.51,604.79 L129.38,604.14 L131.24,603.47 L133.10,602.79 L134.97,602.11
|
||||
L136.83,601.40 L138.69,600.69 L140.56,599.96 L142.42,599.21 L144.29,598.44 L146.15,597.65 L148.01,596.85 L149.88,596.02
|
||||
L151.74,595.16 L153.60,594.28 L155.47,593.37 L157.33,592.42 L159.19,591.43 L161.06,590.39 L162.92,589.30 L164.79,588.15
|
||||
L166.65,586.92 L168.51,585.62 L170.38,584.23 L172.24,582.74 L174.10,581.14 L175.97,579.42 L177.83,577.57 L179.70,575.58
|
||||
L181.56,573.44 L183.42,571.15 L185.29,568.68 L187.15,566.04 L189.01,563.22 L190.88,560.21 L192.74,557.01 L194.60,553.61
|
||||
L196.47,550.00 L198.33,546.20 L200.20,542.18 L202.06,537.96 L203.92,533.53 L205.79,528.90 L207.65,524.06 L209.51,519.02
|
||||
L211.38,513.78 L213.24,508.35 L215.11,502.73 L216.97,496.93 L218.83,490.95 L220.70,484.82 L222.56,478.53 L224.42,472.10
|
||||
L226.29,465.56 L228.15,458.90 L230.01,452.16 L231.88,445.36 L233.74,438.50 L235.61,431.63 L237.47,424.76 L239.33,417.91
|
||||
L241.20,411.12 L243.06,404.41 L244.92,397.80 L246.79,391.31 L248.65,384.98 L250.52,378.82 L252.38,372.84 L254.24,367.08
|
||||
L256.11,361.53 L257.97,356.21 L259.83,351.13 L261.70,346.28 L263.56,341.66 L265.43,337.27 L267.29,333.10 L269.15,329.13
|
||||
L271.02,325.34 L272.88,321.71 L274.74,318.22 L276.61,314.83 L278.47,311.52 L280.33,308.26 L282.20,305.01 L284.06,301.75
|
||||
L285.93,298.43 L287.79,295.03 L289.65,291.51 L291.52,287.86 L293.38,284.05 L295.24,280.05 L297.11,275.85 L298.97,271.44
|
||||
L300.84,266.80 L302.70,261.94 L304.56,256.86 L306.43,251.56 L308.29,246.05 L310.15,240.35 L312.02,234.47 L313.88,228.46
|
||||
L315.74,222.32 L317.61,216.10 L319.47,209.83 L321.34,203.55 L323.20,197.30 L325.06,191.12 L326.93,185.06 L328.79,179.16
|
||||
L330.65,173.46 L332.52,168.00 L334.38,162.84 L336.25,158.00 L338.11,153.54 L339.97,149.48 L341.84,145.86 L343.70,142.71
|
||||
L345.56,140.06 L347.43,137.92 L349.29,136.31 L351.15,135.24 L353.02,134.73 L354.88,134.77 L356.75,135.36 L358.61,136.49
|
||||
L360.47,138.14 L362.34,140.30 L364.20,142.95 L366.06,146.04 L367.93,149.56 L369.79,153.45 L371.66,157.69 L373.52,162.21
|
||||
L375.38,166.98 L377.25,171.95 L379.11,177.06 L380.97,182.26 L382.84,187.49 L384.70,192.72 L386.56,197.89 L388.43,202.94
|
||||
L390.29,207.84 L392.16,212.55 L394.02,217.02 L395.88,221.23 L397.75,225.16 L399.61,228.77 L401.47,232.07 L403.34,235.04
|
||||
L405.20,237.68 L407.07,240.00 L408.93,242.01 L410.79,243.74 L412.66,245.21 L414.52,246.44 L416.38,247.48 L418.25,248.36
|
||||
L420.11,249.12 L421.97,249.81 L423.84,250.47 L425.70,251.14 L427.57,251.87 L429.43,252.69 L431.29,253.64 L433.16,254.75
|
||||
L435.02,256.05 L436.88,257.56 L438.75,259.30 L440.61,261.27 L442.48,263.48 L444.34,265.93 L446.20,268.60 L448.07,271.48
|
||||
L449.93,274.56 L451.79,277.80 L453.66,281.19 L455.52,284.67 L457.38,288.24 L459.25,291.84 L461.11,295.45 L462.98,299.03
|
||||
L464.84,302.55 L466.70,305.97 L468.57,309.27 L470.43,312.42 L472.29,315.40 L474.16,318.20 L476.02,320.79 L477.89,323.18
|
||||
L479.75,325.36 L481.61,327.33 L483.48,329.09 L485.34,330.66 L487.20,332.04 L489.07,333.26 L490.93,334.32 L492.79,335.26
|
||||
L494.66,336.10 L496.52,336.85 L498.39,337.54 L500.25,338.20 L502.11,338.85 L503.98,339.51 L505.84,340.20 L507.70,340.93
|
||||
L509.57,341.71 L511.43,342.57 L513.30,343.50 L515.16,344.51 L517.02,345.60 L518.89,346.76 L520.75,348.00 L522.61,349.30
|
||||
L524.48,350.65 L526.34,352.04 L528.20,353.46 L530.07,354.89 L531.93,356.32 L533.80,357.73 L535.66,359.11 L537.52,360.46
|
||||
L539.39,361.74 L541.25,362.97 L543.11,364.13 L544.98,365.21 L546.84,366.22 L548.71,367.15 L550.57,368.01 L552.43,368.79
|
||||
L554.30,369.51 L556.16,370.17 L558.02,370.77 L559.89,371.32 L561.75,371.82 L563.62,372.29 L565.48,372.73 L567.34,373.13
|
||||
L569.21,373.50 L571.07,373.85 L572.93,374.16 L574.80,374.44 L576.66,374.67 L578.52,374.85 L580.39,374.98 L582.25,375.03
|
||||
L584.12,375.00 L585.98,374.88 L587.84,374.66 L589.71,374.33 L591.57,373.87 L593.43,373.28 L595.30,372.55 L597.16,371.68
|
||||
L599.03,370.67 L600.89,369.52 L602.75,368.24 L604.62,366.82 L606.48,365.28 L608.34,363.62 L610.21,361.88 L612.07,360.04
|
||||
L613.93,358.15 L615.80,356.20 L617.66,354.23 L619.53,352.25 L621.39,350.27 L623.25,348.31 L625.12,346.39 L626.98,344.53
|
||||
L628.84,342.73 L630.71,341.01 L632.57,339.37 L634.44,337.82 L636.30,336.37 L638.16,335.02 L640.03,333.77 L641.89,332.62
|
||||
L643.75,331.56 L645.62,330.60 L647.48,329.73 L649.34,328.94 L651.21,328.24 L653.07,327.61 L654.94,327.06 L656.80,326.58
|
||||
L658.66,326.17 L660.53,325.82 L662.39,325.53 L664.25,325.30 L666.12,325.14 L667.98,325.03 L669.85,324.99 L671.71,325.00
|
||||
L673.57,325.07 L675.44,325.20 L677.30,325.39 L679.16,325.63 L681.03,325.92 L682.89,326.27 L684.75,326.65 L686.62,327.08
|
||||
L688.48,327.55 L690.35,328.04 L692.21,328.56 L694.07,329.09 L695.94,329.63 L697.80,330.17 L699.66,330.70 L701.53,331.21
|
||||
L703.39,331.69 L705.26,332.14 L707.12,332.54 L708.98,332.89 L710.85,333.18 L712.71,333.40 L714.57,333.56 L716.44,333.63
|
||||
L718.30,333.62 L720.16,333.53 L722.03,333.36 L723.89,333.10 L725.76,332.77 L727.62,332.35 L729.48,331.85 L731.35,331.29
|
||||
L733.21,330.66 L735.07,329.97 L736.94,329.24 L738.80,328.47 L740.67,327.66 L742.53,326.83 L744.39,325.98 L746.26,325.13
|
||||
L748.12,324.28 L749.98,323.44 L751.85,322.61 L753.71,321.81 L755.57,321.03 L757.44,320.28 L759.30,319.57 L761.17,318.90
|
||||
L763.03,318.27 L764.89,317.68 L766.76,317.15 L768.62,316.67 L770.48,316.24 L772.35,315.88 L774.21,315.59 L776.08,315.37
|
||||
L777.94,315.23 L779.80,315.18 L781.67,315.22 L783.53,315.36 L785.39,315.60 L787.26,315.95 L789.12,316.42 L790.98,317.01
|
||||
L792.85,317.73 L794.71,318.59 L796.58,319.57 L798.44,320.69 L800.30,321.95 L802.17,323.35 L804.03,324.88 L805.89,326.54
|
||||
L807.76,328.33 L809.62,330.25 L811.49,332.29 L813.35,334.45 L815.21,336.71 L817.08,339.09 L818.94,341.56 L820.80,344.13
|
||||
L822.67,346.79 L824.53,349.53 L826.39,352.36 L828.26,355.25 L830.12,358.22 L831.99,361.25 L833.85,364.34 L835.71,367.49
|
||||
L837.58,370.69 L839.44,373.94 L841.30,377.23 L843.17,380.56 L845.03,383.93 L846.90,387.34 L848.76,390.78 L850.62,394.24
|
||||
L852.49,397.74 L854.35,401.25 L856.21,404.78 L858.08,408.34 L859.94,411.91 L861.81,415.49 L863.67,419.09 L865.53,422.70
|
||||
L867.40,426.32 L869.26,429.95 L871.12,433.58 L872.99,437.23 L874.85,440.89 L876.71,444.56 L878.58,448.23 L880.44,451.92
|
||||
L882.31,455.61 L884.17,459.31 L886.03,463.03 L887.90,466.75 L889.76,470.49 L891.62,474.24 L893.49,477.99 L895.35,481.75
|
||||
L897.22,485.52 L899.08,489.30 L900.94,493.07 L902.81,496.85 L904.67,500.62 L906.53,504.38 L908.40,508.13 L910.26,511.86
|
||||
L912.12,515.58 L913.99,519.27 L915.85,522.93 L917.72,526.56 L919.58,530.14 L921.44,533.69 L923.31,537.19 L925.17,540.64
|
||||
L927.03,544.03 L928.90,547.37 L930.76,550.65 L932.63,553.86 L934.49,557.02 L936.35,560.11 L938.22,563.14 L940.08,566.09
|
||||
L941.94,568.99 L943.81,571.81 L945.67,574.57 L947.53,577.25 L949.40,579.87 L951.26,582.43 L953.13,584.91 L954.99,587.33
|
||||
L956.85,589.68 L958.72,591.96 L960.58,594.18 L962.44,596.32 L964.31,598.41 L966.17,600.43 L968.04,602.38 L969.90,604.27
|
||||
L971.76,606.10 L973.63,607.87 L975.49,609.59 L977.35,611.24 L979.22,612.84 L981.08,614.39 L982.94,615.89 L984.81,617.35
|
||||
L986.67,618.76 L988.54,620.13 L990.40,621.47 L992.26,622.77 L994.13,624.03 L995.99,625.27 L997.85,626.49 L999.72,627.67
|
||||
L1001.58,628.84 L1003.45,629.98 L1005.31,631.11 L1007.17,632.22 L1009.04,633.31 L1010.90,634.38 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '166.65,586.92 168.51,585.62 170.38,584.23 172.24,582.74 174.10,581.14 175.97,579.42 177.83,577.57 179.70,575.58 181.56,573.44 183.42,571.15 185.29,568.68 187.15,566.04 189.01,563.22 190.88,560.21 192.74,557.01 194.60,553.61
|
||||
196.47,550.00 198.33,546.20 200.20,542.18 202.06,537.96 203.92,533.53 205.79,528.90 207.65,524.06 209.51,519.02 211.38,513.78 213.24,508.35 215.11,502.73 216.97,496.93 218.83,490.95 220.70,484.82 222.56,478.53 224.42,472.10
|
||||
226.29,465.56 228.15,458.90 230.01,452.16 231.88,445.36 233.74,438.50 235.61,431.63 237.47,424.76 239.33,417.91 241.20,411.12 243.06,404.41 244.92,397.80 246.79,391.31 248.65,384.98 250.52,378.82 252.38,372.84 254.24,367.08
|
||||
256.11,361.53 257.97,356.21 259.83,351.13 261.70,346.28 263.56,341.66 265.43,337.27 267.29,333.10 269.15,329.13 271.02,325.34 272.88,321.71 274.74,318.22 276.61,314.83 278.47,311.52 280.33,308.26 282.20,305.01 284.06,301.75
|
||||
285.93,298.43 287.79,295.03 289.65,291.51 291.52,287.86 293.38,284.05 295.24,280.05 297.11,275.85 298.97,271.44 300.84,266.80 302.70,261.94 304.56,256.86 306.43,251.56 308.29,246.05 310.15,240.35 312.02,234.47 313.88,228.46
|
||||
315.74,222.32 317.61,216.10 319.47,209.83 321.34,203.55 323.20,197.30 325.06,191.12 326.93,185.06 328.79,179.16 330.65,173.46 332.52,168.00 334.38,162.84 336.25,158.00 338.11,153.54 339.97,149.48 341.84,145.86 343.70,142.71
|
||||
345.56,140.06 347.43,137.92 349.29,136.31 351.15,135.24 353.02,134.73 354.88,134.77 356.75,135.36 358.61,136.49 360.47,138.14 362.34,140.30 364.20,142.95 366.06,146.04 367.93,149.56 369.79,153.45 371.66,157.69 373.52,162.21
|
||||
375.38,166.98 377.25,171.95 379.11,177.06 380.97,182.26 382.84,187.49 384.70,192.72 386.56,197.89 388.43,202.94 390.29,207.84 392.16,212.55 394.02,217.02 395.88,221.23 397.75,225.16 399.61,228.77 401.47,232.07 403.34,235.04
|
||||
405.20,237.68 407.07,240.00 408.93,242.01 410.79,243.74 412.66,245.21 414.52,246.44 416.38,247.48 418.25,248.36 420.11,249.12 421.97,249.81 423.84,250.47 425.70,251.14 427.57,251.87 429.43,252.69 431.29,253.64 433.16,254.75
|
||||
435.02,256.05 436.88,257.56 438.75,259.30 440.61,261.27 442.48,263.48 444.34,265.93 446.20,268.60 448.07,271.48 449.93,274.56 451.79,277.80 453.66,281.19 455.52,284.67 457.38,288.24 459.25,291.84 461.11,295.45 462.98,299.03
|
||||
464.84,302.55 466.70,305.97 468.57,309.27 470.43,312.42 472.29,315.40 474.16,318.20 476.02,320.79 477.89,323.18 479.75,325.36 481.61,327.33 483.48,329.09 485.34,330.66 487.20,332.04 489.07,333.26 490.93,334.32 492.79,335.26
|
||||
494.66,336.10 496.52,336.85 498.39,337.54 500.25,338.20 502.11,338.85 503.98,339.51 505.84,340.20 507.70,340.93 509.57,341.71 511.43,342.57 513.30,343.50 515.16,344.51 517.02,345.60 518.89,346.76 520.75,348.00 522.61,349.30
|
||||
524.48,350.65 526.34,352.04 528.20,353.46 530.07,354.89 531.93,356.32 533.80,357.73 535.66,359.11 537.52,360.46 539.39,361.74 541.25,362.97 543.11,364.13 544.98,365.21 546.84,366.22 548.71,367.15 550.57,368.01 552.43,368.79
|
||||
554.30,369.51 556.16,370.17 558.02,370.77 559.89,371.32 561.75,371.82 563.62,372.29 565.48,372.73 567.34,373.13 569.21,373.50 571.07,373.85 572.93,374.16 574.80,374.44 576.66,374.67 578.52,374.85 580.39,374.98 582.25,375.03
|
||||
584.12,375.00 585.98,374.88 587.84,374.66 589.71,374.33 591.57,373.87 593.43,373.28 595.30,372.55 597.16,371.68 599.03,370.67 600.89,369.52 602.75,368.24 604.62,366.82 606.48,365.28 608.34,363.62 610.21,361.88 612.07,360.04
|
||||
613.93,358.15 615.80,356.20 617.66,354.23 619.53,352.25 621.39,350.27 623.25,348.31 625.12,346.39 626.98,344.53 628.84,342.73 630.71,341.01 632.57,339.37 634.44,337.82 636.30,336.37 638.16,335.02 640.03,333.77 641.89,332.62
|
||||
643.75,331.56 645.62,330.60 647.48,329.73 649.34,328.94 651.21,328.24 653.07,327.61 654.94,327.06 656.80,326.58 658.66,326.17 660.53,325.82 662.39,325.53 664.25,325.30 666.12,325.14 667.98,325.03 669.85,324.99 671.71,325.00
|
||||
673.57,325.07 675.44,325.20 677.30,325.39 679.16,325.63 681.03,325.92 682.89,326.27 684.75,326.65 686.62,327.08 688.48,327.55 690.35,328.04 692.21,328.56 694.07,329.09 695.94,329.63 697.80,330.17 699.66,330.70 701.53,331.21
|
||||
703.39,331.69 705.26,332.14 707.12,332.54 708.98,332.89 710.85,333.18 712.71,333.40 714.57,333.56 716.44,333.63 718.30,333.62 720.16,333.53 722.03,333.36 723.89,333.10 725.76,332.77 727.62,332.35 729.48,331.85 731.35,331.29
|
||||
733.21,330.66 735.07,329.97 736.94,329.24 738.80,328.47 740.67,327.66 742.53,326.83 744.39,325.98 746.26,325.13 748.12,324.28 749.98,323.44 751.85,322.61 753.71,321.81 755.57,321.03 757.44,320.28 759.30,319.57 761.17,318.90
|
||||
763.03,318.27 764.89,317.68 766.76,317.15 768.62,316.67 770.48,316.24 772.35,315.88 774.21,315.59 776.08,315.37 777.94,315.23 779.80,315.18 781.67,315.22 783.53,315.36 785.39,315.60 787.26,315.95 789.12,316.42 790.98,317.01
|
||||
792.85,317.73 794.71,318.59 796.58,319.57 798.44,320.69 800.30,321.95 802.17,323.35 804.03,324.88 805.89,326.54 807.76,328.33 809.62,330.25 811.49,332.29 813.35,334.45 815.21,336.71 817.08,339.09 818.94,341.56 820.80,344.13
|
||||
822.67,346.79 824.53,349.53 826.39,352.36 828.26,355.25 830.12,358.22 831.99,361.25 833.85,364.34 835.71,367.49 837.58,370.69 839.44,373.94 841.30,377.23 843.17,380.56 845.03,383.93 846.90,387.34 848.76,390.78 850.62,394.24
|
||||
852.49,397.74 854.35,401.25 856.21,404.78 858.08,408.34 859.94,411.91 861.81,415.49 863.67,419.09 865.53,422.70 867.40,426.32 869.26,429.95 871.12,433.58 872.99,437.23 874.85,440.89 876.71,444.56 878.58,448.23 880.44,451.92
|
||||
882.31,455.61 884.17,459.31 886.03,463.03 887.90,466.75 889.76,470.49 891.62,474.24 893.49,477.99 895.35,481.75 897.22,485.52 899.08,489.30 900.94,493.07 902.81,496.85 904.67,500.62 906.53,504.38 908.40,508.13 910.26,511.86
|
||||
912.12,515.58 913.99,519.27 915.85,522.93 917.72,526.56 919.58,530.14 921.44,533.69 923.31,537.19 923.31,662.40 921.44,662.40 919.58,662.40 917.72,662.40 915.85,662.40 913.99,662.40 912.12,662.40 910.26,662.40 908.40,662.40
|
||||
906.53,662.40 904.67,662.40 902.81,662.40 900.94,662.40 899.08,662.40 897.22,662.40 895.35,662.40 893.49,662.40 891.62,662.40 889.76,662.40 887.90,662.40 886.03,662.40 884.17,662.40 882.31,662.40 880.44,662.40 878.58,662.40
|
||||
876.71,662.40 874.85,662.40 872.99,662.40 871.12,662.40 869.26,662.40 867.40,662.40 865.53,662.40 863.67,662.40 861.81,662.40 859.94,662.40 858.08,662.40 856.21,662.40 854.35,662.40 852.49,662.40 850.62,662.40 848.76,662.40
|
||||
846.90,662.40 845.03,662.40 843.17,662.40 841.30,662.40 839.44,662.40 837.58,662.40 835.71,662.40 833.85,662.40 831.99,662.40 830.12,662.40 828.26,662.40 826.39,662.40 824.53,662.40 822.67,662.40 820.80,662.40 818.94,662.40
|
||||
817.08,662.40 815.21,662.40 813.35,662.40 811.49,662.40 809.62,662.40 807.76,662.40 805.89,662.40 804.03,662.40 802.17,662.40 800.30,662.40 798.44,662.40 796.58,662.40 794.71,662.40 792.85,662.40 790.98,662.40 789.12,662.40
|
||||
787.26,662.40 785.39,662.40 783.53,662.40 781.67,662.40 779.80,662.40 777.94,662.40 776.08,662.40 774.21,662.40 772.35,662.40 770.48,662.40 768.62,662.40 766.76,662.40 764.89,662.40 763.03,662.40 761.17,662.40 759.30,662.40
|
||||
757.44,662.40 755.57,662.40 753.71,662.40 751.85,662.40 749.98,662.40 748.12,662.40 746.26,662.40 744.39,662.40 742.53,662.40 740.67,662.40 738.80,662.40 736.94,662.40 735.07,662.40 733.21,662.40 731.35,662.40 729.48,662.40
|
||||
727.62,662.40 725.76,662.40 723.89,662.40 722.03,662.40 720.16,662.40 718.30,662.40 716.44,662.40 714.57,662.40 712.71,662.40 710.85,662.40 708.98,662.40 707.12,662.40 705.26,662.40 703.39,662.40 701.53,662.40 699.66,662.40
|
||||
697.80,662.40 695.94,662.40 694.07,662.40 692.21,662.40 690.35,662.40 688.48,662.40 686.62,662.40 684.75,662.40 682.89,662.40 681.03,662.40 679.16,662.40 677.30,662.40 675.44,662.40 673.57,662.40 671.71,662.40 669.85,662.40
|
||||
667.98,662.40 666.12,662.40 664.25,662.40 662.39,662.40 660.53,662.40 658.66,662.40 656.80,662.40 654.94,662.40 653.07,662.40 651.21,662.40 649.34,662.40 647.48,662.40 645.62,662.40 643.75,662.40 641.89,662.40 640.03,662.40
|
||||
638.16,662.40 636.30,662.40 634.44,662.40 632.57,662.40 630.71,662.40 628.84,662.40 626.98,662.40 625.12,662.40 623.25,662.40 621.39,662.40 619.53,662.40 617.66,662.40 615.80,662.40 613.93,662.40 612.07,662.40 610.21,662.40
|
||||
608.34,662.40 606.48,662.40 604.62,662.40 602.75,662.40 600.89,662.40 599.03,662.40 597.16,662.40 595.30,662.40 593.43,662.40 591.57,662.40 589.71,662.40 587.84,662.40 585.98,662.40 584.12,662.40 582.25,662.40 580.39,662.40
|
||||
578.52,662.40 576.66,662.40 574.80,662.40 572.93,662.40 571.07,662.40 569.21,662.40 567.34,662.40 565.48,662.40 563.62,662.40 561.75,662.40 559.89,662.40 558.02,662.40 556.16,662.40 554.30,662.40 552.43,662.40 550.57,662.40
|
||||
548.71,662.40 546.84,662.40 544.98,662.40 543.11,662.40 541.25,662.40 539.39,662.40 537.52,662.40 535.66,662.40 533.80,662.40 531.93,662.40 530.07,662.40 528.20,662.40 526.34,662.40 524.48,662.40 522.61,662.40 520.75,662.40
|
||||
518.89,662.40 517.02,662.40 515.16,662.40 513.30,662.40 511.43,662.40 509.57,662.40 507.70,662.40 505.84,662.40 503.98,662.40 502.11,662.40 500.25,662.40 498.39,662.40 496.52,662.40 494.66,662.40 492.79,662.40 490.93,662.40
|
||||
489.07,662.40 487.20,662.40 485.34,662.40 483.48,662.40 481.61,662.40 479.75,662.40 477.89,662.40 476.02,662.40 474.16,662.40 472.29,662.40 470.43,662.40 468.57,662.40 466.70,662.40 464.84,662.40 462.98,662.40 461.11,662.40
|
||||
459.25,662.40 457.38,662.40 455.52,662.40 453.66,662.40 451.79,662.40 449.93,662.40 448.07,662.40 446.20,662.40 444.34,662.40 442.48,662.40 440.61,662.40 438.75,662.40 436.88,662.40 435.02,662.40 433.16,662.40 431.29,662.40
|
||||
429.43,662.40 427.57,662.40 425.70,662.40 423.84,662.40 421.97,662.40 420.11,662.40 418.25,662.40 416.38,662.40 414.52,662.40 412.66,662.40 410.79,662.40 408.93,662.40 407.07,662.40 405.20,662.40 403.34,662.40 401.47,662.40
|
||||
399.61,662.40 397.75,662.40 395.88,662.40 394.02,662.40 392.16,662.40 390.29,662.40 388.43,662.40 386.56,662.40 384.70,662.40 382.84,662.40 380.97,662.40 379.11,662.40 377.25,662.40 375.38,662.40 373.52,662.40 371.66,662.40
|
||||
369.79,662.40 367.93,662.40 366.06,662.40 364.20,662.40 362.34,662.40 360.47,662.40 358.61,662.40 356.75,662.40 354.88,662.40 353.02,662.40 351.15,662.40 349.29,662.40 347.43,662.40 345.56,662.40 343.70,662.40 341.84,662.40
|
||||
339.97,662.40 338.11,662.40 336.25,662.40 334.38,662.40 332.52,662.40 330.65,662.40 328.79,662.40 326.93,662.40 325.06,662.40 323.20,662.40 321.34,662.40 319.47,662.40 317.61,662.40 315.74,662.40 313.88,662.40 312.02,662.40
|
||||
310.15,662.40 308.29,662.40 306.43,662.40 304.56,662.40 302.70,662.40 300.84,662.40 298.97,662.40 297.11,662.40 295.24,662.40 293.38,662.40 291.52,662.40 289.65,662.40 287.79,662.40 285.93,662.40 284.06,662.40 282.20,662.40
|
||||
280.33,662.40 278.47,662.40 276.61,662.40 274.74,662.40 272.88,662.40 271.02,662.40 269.15,662.40 267.29,662.40 265.43,662.40 263.56,662.40 261.70,662.40 259.83,662.40 257.97,662.40 256.11,662.40 254.24,662.40 252.38,662.40
|
||||
250.52,662.40 248.65,662.40 246.79,662.40 244.92,662.40 243.06,662.40 241.20,662.40 239.33,662.40 237.47,662.40 235.61,662.40 233.74,662.40 231.88,662.40 230.01,662.40 228.15,662.40 226.29,662.40 224.42,662.40 222.56,662.40
|
||||
220.70,662.40 218.83,662.40 216.97,662.40 215.11,662.40 213.24,662.40 211.38,662.40 209.51,662.40 207.65,662.40 205.79,662.40 203.92,662.40 202.06,662.40 200.20,662.40 198.33,662.40 196.47,662.40 194.60,662.40 192.74,662.40
|
||||
190.88,662.40 189.01,662.40 187.15,662.40 185.29,662.40 183.42,662.40 181.56,662.40 179.70,662.40 177.83,662.40 175.97,662.40 174.10,662.40 172.24,662.40 170.38,662.40 168.51,662.40 166.65,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M470.45,662.40 L470.45,312.44 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '545.91,54.01 545.91,54.01 545.91,662.40 545.91,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/compute_shared_point: median</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,586.35 L89.92,586.35 '/> <g transform="translate(72.53,590.25)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,510.30 L89.92,510.30 '/> <g transform="translate(72.53,514.20)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,434.25 L89.92,434.25 '/> <g transform="translate(72.53,438.15)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,358.20 L89.92,358.20 '/> <g transform="translate(72.53,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,282.16 L89.92,282.16 '/> <g transform="translate(72.53,286.06)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.25</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,206.11 L89.92,206.11 '/> <g transform="translate(72.53,210.01)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,130.06 L89.92,130.06 '/> <g transform="translate(72.53,133.96)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.35</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L80.92,653.40 '/> <g transform="translate(80.92,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M205.56,662.40 L205.56,653.40 '/> <g transform="translate(205.56,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M330.20,662.40 L330.20,653.40 '/> <g transform="translate(330.20,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M454.83,662.40 L454.83,653.40 '/> <g transform="translate(454.83,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M579.47,662.40 L579.47,653.40 '/> <g transform="translate(579.47,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M704.11,662.40 L704.11,653.40 '/> <g transform="translate(704.11,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M828.75,662.40 L828.75,653.40 '/> <g transform="translate(828.75,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M953.38,662.40 L953.38,653.40 '/> <g transform="translate(953.38,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1078.02,662.40 L1078.02,653.40 '/> <g transform="translate(1078.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>t distribution</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1103.19,67.51 1145.75,67.51 1145.75,58.51 1103.19,58.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '950.52,662.40 950.53,662.40 950.54,662.40 950.56,662.40 950.57,662.40 950.58,662.39 950.59,662.39 950.60,662.39 950.62,662.38 950.63,662.38 950.64,662.37 950.65,662.36 950.66,662.35 950.68,662.34 950.69,662.33 950.70,662.33
|
||||
950.71,662.32 950.72,662.31 950.74,662.30 950.75,662.29 950.76,662.28 950.77,662.28 950.79,662.27 950.80,662.27 950.81,662.26 950.82,662.26 950.83,662.27 950.85,662.27 950.86,662.27 950.87,662.28 950.88,662.27 950.89,662.27
|
||||
950.91,662.25 950.92,662.23 950.93,662.21 950.94,662.17 950.95,662.13 950.97,662.08 950.98,662.02 950.99,661.97 951.00,661.91 951.02,661.86 951.03,661.82 951.04,661.77 951.05,661.73 951.06,661.70 951.08,661.66 951.09,661.62
|
||||
951.10,661.57 951.11,661.51 951.12,661.45 951.14,661.38 951.15,661.29 951.16,661.19 951.17,661.08 951.18,660.95 951.20,660.82 951.21,660.67 951.22,660.52 951.23,660.35 951.24,660.18 951.26,660.00 951.27,659.81 951.28,659.62
|
||||
951.29,659.43 951.31,659.23 951.32,659.03 951.33,658.83 951.34,658.62 951.35,658.40 951.37,658.17 951.38,657.93 951.39,657.67 951.40,657.38 951.41,657.08 951.43,656.76 951.44,656.44 951.45,656.10 951.46,655.78 951.47,655.46
|
||||
951.49,655.17 951.50,654.90 951.51,654.64 951.52,654.40 951.54,654.16 951.55,653.91 951.56,653.62 951.57,653.30 951.58,652.92 951.60,652.47 951.61,651.95 951.62,651.35 951.63,650.66 951.64,649.89 951.66,649.03 951.67,648.10
|
||||
951.68,647.09 951.69,646.00 951.70,644.85 951.72,643.64 951.73,642.38 951.74,641.07 951.75,639.74 951.76,638.37 951.78,636.98 951.79,635.57 951.80,634.13 951.81,632.68 951.83,631.19 951.84,629.69 951.85,628.17 951.86,626.63
|
||||
951.87,625.07 951.89,623.49 951.90,621.90 951.91,620.28 951.92,618.64 951.93,616.99 951.95,615.32 951.96,613.62 951.97,611.90 951.98,610.13 951.99,608.32 952.01,606.45 952.02,604.49 952.03,602.45 952.04,600.29 952.06,598.03
|
||||
952.07,595.63 952.08,593.11 952.09,590.45 952.10,587.67 952.12,584.76 952.13,581.73 952.14,578.60 952.15,575.35 952.16,572.00 952.18,568.54 952.19,564.97 952.20,561.28 952.21,557.47 952.22,553.53 952.24,549.48 952.25,545.32
|
||||
952.26,541.06 952.27,536.72 952.28,532.31 952.30,527.85 952.31,523.37 952.32,518.87 952.33,514.35 952.35,509.79 952.36,505.17 952.37,500.45 952.38,495.61 952.39,490.62 952.41,485.47 952.42,480.14 952.43,474.61 952.44,468.91
|
||||
952.45,463.02 952.47,456.97 952.48,450.78 952.49,444.48 952.50,438.10 952.51,431.65 952.53,425.16 952.54,418.64 952.55,412.10 952.56,405.57 952.57,399.05 952.59,392.53 952.60,386.02 952.61,379.48 952.62,372.89 952.64,366.22
|
||||
952.65,359.46 952.66,352.57 952.67,345.58 952.68,338.47 952.70,331.26 952.71,323.98 952.72,316.66 952.73,309.34 952.74,302.08 952.76,294.90 952.77,287.86 952.78,280.96 952.79,274.20 952.80,267.56 952.82,261.01 952.83,254.55
|
||||
952.84,248.13 952.85,241.74 952.87,235.36 952.88,228.96 952.89,222.54 952.90,216.08 952.91,209.59 952.93,203.08 952.94,196.55 952.95,190.04 952.96,183.56 952.97,177.11 952.99,170.73 953.00,164.43 953.01,158.26 953.02,152.24
|
||||
953.03,146.40 953.05,140.75 953.06,135.29 953.07,130.00 953.08,124.88 953.09,119.90 953.11,115.07 953.12,110.38 953.13,105.84 953.14,101.42 953.16,97.12 953.17,92.95 953.18,88.90 953.19,84.99 953.20,81.24 953.22,77.68
|
||||
953.23,74.32 953.24,71.19 953.25,68.30 953.26,65.70 953.28,63.40 953.29,61.46 953.30,59.89 953.31,58.70 953.32,57.88 953.34,57.40 953.35,57.23 953.36,57.36 953.37,57.77 953.39,58.44 953.40,59.35 953.41,60.48
|
||||
953.42,61.80 953.43,63.27 953.45,64.87 953.46,66.58 953.47,68.38 953.48,70.26 953.49,72.19 953.51,74.16 953.52,76.14 953.53,78.15 953.54,80.19 953.55,82.29 953.57,84.50 953.58,86.86 953.59,89.41 953.60,92.22
|
||||
953.61,95.34 953.63,98.84 953.64,102.78 953.65,107.20 953.66,112.09 953.68,117.42 953.69,123.14 953.70,129.15 953.71,135.38 953.72,141.73 953.74,148.15 953.75,154.57 953.76,160.95 953.77,167.27 953.78,173.52 953.80,179.69
|
||||
953.81,185.81 953.82,191.89 953.83,197.97 953.84,204.06 953.86,210.17 953.87,216.32 953.88,222.53 953.89,228.83 953.91,235.27 953.92,241.88 953.93,248.68 953.94,255.71 953.95,262.95 953.97,270.41 953.98,278.07 953.99,285.91
|
||||
954.00,293.90 954.01,301.98 954.03,310.11 954.04,318.22 954.05,326.24 954.06,334.11 954.07,341.78 954.09,349.23 954.10,356.43 954.11,363.36 954.12,370.05 954.13,376.49 954.15,382.71 954.16,388.74 954.17,394.64 954.18,400.44
|
||||
954.20,406.19 954.21,411.92 954.22,417.68 954.23,423.49 954.24,429.36 954.26,435.32 954.27,441.37 954.28,447.50 954.29,453.69 954.30,459.89 954.32,466.04 954.33,472.10 954.34,478.01 954.35,483.74 954.36,489.26 954.38,494.56
|
||||
954.39,499.62 954.40,504.48 954.41,509.14 954.42,513.64 954.44,518.01 954.45,522.30 954.46,526.52 954.47,530.70 954.49,534.84 954.50,538.93 954.51,542.97 954.52,546.94 954.53,550.84 954.55,554.66 954.56,558.38 954.57,561.99
|
||||
954.58,565.50 954.59,568.90 954.61,572.18 954.62,575.37 954.63,578.46 954.64,581.47 954.65,584.41 954.67,587.28 954.68,590.09 954.69,592.84 954.70,595.54 954.72,598.19 954.73,600.79 954.74,603.33 954.75,605.80 954.76,608.20
|
||||
954.78,610.51 954.79,612.72 954.80,614.84 954.81,616.86 954.82,618.78 954.84,620.61 954.85,622.36 954.86,624.04 954.87,625.65 954.88,627.21 954.90,628.72 954.91,630.18 954.92,631.61 954.93,632.99 954.94,634.32 954.96,635.61
|
||||
954.97,636.85 954.98,638.03 954.99,639.16 955.01,640.24 955.02,641.26 955.03,642.24 955.04,643.15 955.05,644.02 955.07,644.82 955.08,645.57 955.09,646.27 955.10,646.93 955.11,647.53 955.13,648.11 955.14,648.64 955.15,649.15
|
||||
955.16,649.64 955.17,650.11 955.19,650.57 955.20,651.03 955.21,651.48 955.22,651.94 955.24,652.40 955.25,652.89 955.26,653.39 955.27,653.91 955.28,654.44 955.30,655.00 955.31,655.56 955.32,656.11 955.33,656.64 955.34,657.14
|
||||
955.36,657.60 955.37,658.02 955.38,658.38 955.39,658.69 955.40,658.97 955.42,659.20 955.43,659.40 955.44,659.58 955.45,659.75 955.46,659.91 955.48,660.05 955.49,660.20 955.50,660.34 955.51,660.47 955.53,660.60 955.54,660.72
|
||||
955.55,660.83 955.56,660.94 955.57,661.04 955.59,661.13 955.60,661.21 955.61,661.29 955.62,661.36 955.63,661.43 955.65,661.50 955.66,661.56 955.67,661.63 955.68,661.68 955.69,661.74 955.71,661.79 955.72,661.84 955.73,661.88
|
||||
955.74,661.92 955.76,661.95 955.77,661.98 955.78,662.00 955.79,662.02 955.80,662.03 955.82,662.05 955.83,662.06 955.84,662.07 955.85,662.07 955.86,662.08 955.88,662.09 955.89,662.10 955.90,662.11 955.91,662.12 955.92,662.13
|
||||
955.94,662.15 955.95,662.17 955.96,662.20 955.97,662.22 955.98,662.25 956.00,662.27 956.01,662.29 956.02,662.31 956.03,662.32 956.05,662.34 956.06,662.34 956.07,662.35 956.08,662.35 956.09,662.35 956.11,662.35 956.12,662.34
|
||||
956.13,662.34 956.14,662.34 956.15,662.34 956.17,662.34 956.18,662.35 956.19,662.35 956.20,662.36 956.21,662.36 956.23,662.36 956.24,662.37 956.25,662.37 956.26,662.37 956.28,662.36 956.29,662.36 956.30,662.36 956.31,662.35
|
||||
956.32,662.35 956.34,662.34 956.35,662.34 956.36,662.34 956.37,662.34 956.38,662.35 956.40,662.35 956.41,662.36 956.42,662.37 956.43,662.37 956.44,662.38 956.46,662.38 956.47,662.39 956.48,662.39 956.49,662.39 956.50,662.40
|
||||
956.52,662.40 956.53,662.40 956.54,662.40 956.55,662.40 956.55,662.40 956.54,662.40 956.53,662.40 956.52,662.40 956.50,662.40 956.49,662.40 956.48,662.40 956.47,662.40 956.46,662.40 956.44,662.40 956.43,662.40 956.42,662.40
|
||||
956.41,662.40 956.40,662.40 956.38,662.40 956.37,662.40 956.36,662.40 956.35,662.40 956.34,662.40 956.32,662.40 956.31,662.40 956.30,662.40 956.29,662.40 956.28,662.40 956.26,662.40 956.25,662.40 956.24,662.40 956.23,662.40
|
||||
956.21,662.40 956.20,662.40 956.19,662.40 956.18,662.40 956.17,662.40 956.15,662.40 956.14,662.40 956.13,662.40 956.12,662.40 956.11,662.40 956.09,662.40 956.08,662.40 956.07,662.40 956.06,662.40 956.05,662.40 956.03,662.40
|
||||
956.02,662.40 956.01,662.40 956.00,662.40 955.98,662.40 955.97,662.40 955.96,662.40 955.95,662.40 955.94,662.40 955.92,662.40 955.91,662.40 955.90,662.40 955.89,662.40 955.88,662.40 955.86,662.40 955.85,662.40 955.84,662.40
|
||||
955.83,662.40 955.82,662.40 955.80,662.40 955.79,662.40 955.78,662.40 955.77,662.40 955.76,662.40 955.74,662.40 955.73,662.40 955.72,662.40 955.71,662.40 955.69,662.40 955.68,662.40 955.67,662.40 955.66,662.40 955.65,662.40
|
||||
955.63,662.40 955.62,662.40 955.61,662.40 955.60,662.40 955.59,662.40 955.57,662.40 955.56,662.40 955.55,662.40 955.54,662.40 955.53,662.40 955.51,662.40 955.50,662.40 955.49,662.40 955.48,662.40 955.46,662.40 955.45,662.40
|
||||
955.44,662.40 955.43,662.40 955.42,662.40 955.40,662.40 955.39,662.40 955.38,662.40 955.37,662.40 955.36,662.40 955.34,662.40 955.33,662.40 955.32,662.40 955.31,662.40 955.30,662.40 955.28,662.40 955.27,662.40 955.26,662.40
|
||||
955.25,662.40 955.24,662.40 955.22,662.40 955.21,662.40 955.20,662.40 955.19,662.40 955.17,662.40 955.16,662.40 955.15,662.40 955.14,662.40 955.13,662.40 955.11,662.40 955.10,662.40 955.09,662.40 955.08,662.40 955.07,662.40
|
||||
955.05,662.40 955.04,662.40 955.03,662.40 955.02,662.40 955.01,662.40 954.99,662.40 954.98,662.40 954.97,662.40 954.96,662.40 954.94,662.40 954.93,662.40 954.92,662.40 954.91,662.40 954.90,662.40 954.88,662.40 954.87,662.40
|
||||
954.86,662.40 954.85,662.40 954.84,662.40 954.82,662.40 954.81,662.40 954.80,662.40 954.79,662.40 954.78,662.40 954.76,662.40 954.75,662.40 954.74,662.40 954.73,662.40 954.72,662.40 954.70,662.40 954.69,662.40 954.68,662.40
|
||||
954.67,662.40 954.65,662.40 954.64,662.40 954.63,662.40 954.62,662.40 954.61,662.40 954.59,662.40 954.58,662.40 954.57,662.40 954.56,662.40 954.55,662.40 954.53,662.40 954.52,662.40 954.51,662.40 954.50,662.40 954.49,662.40
|
||||
954.47,662.40 954.46,662.40 954.45,662.40 954.44,662.40 954.42,662.40 954.41,662.40 954.40,662.40 954.39,662.40 954.38,662.40 954.36,662.40 954.35,662.40 954.34,662.40 954.33,662.40 954.32,662.40 954.30,662.40 954.29,662.40
|
||||
954.28,662.40 954.27,662.40 954.26,662.40 954.24,662.40 954.23,662.40 954.22,662.40 954.21,662.40 954.20,662.40 954.18,662.40 954.17,662.40 954.16,662.40 954.15,662.40 954.13,662.40 954.12,662.40 954.11,662.40 954.10,662.40
|
||||
954.09,662.40 954.07,662.40 954.06,662.40 954.05,662.40 954.04,662.40 954.03,662.40 954.01,662.40 954.00,662.40 953.99,662.40 953.98,662.40 953.97,662.40 953.95,662.40 953.94,662.40 953.93,662.40 953.92,662.40 953.91,662.40
|
||||
953.89,662.40 953.88,662.40 953.87,662.40 953.86,662.40 953.84,662.40 953.83,662.40 953.82,662.40 953.81,662.40 953.80,662.40 953.78,662.40 953.77,662.40 953.76,662.40 953.75,662.40 953.74,662.40 953.72,662.40 953.71,662.40
|
||||
953.70,662.40 953.69,662.40 953.68,662.40 953.66,662.40 953.65,662.40 953.64,662.40 953.63,662.40 953.61,662.40 953.60,662.40 953.59,662.40 953.58,662.40 953.57,662.40 953.55,662.40 953.54,662.40 953.53,662.40 953.52,662.40
|
||||
953.51,662.40 953.49,662.40 953.48,662.40 953.47,662.40 953.46,662.40 953.45,662.40 953.43,662.40 953.42,662.40 953.41,662.40 953.40,662.40 953.39,662.40 953.37,662.40 953.36,662.40 953.35,662.40 953.34,662.40 953.32,662.40
|
||||
953.31,662.40 953.30,662.40 953.29,662.40 953.28,662.40 953.26,662.40 953.25,662.40 953.24,662.40 953.23,662.40 953.22,662.40 953.20,662.40 953.19,662.40 953.18,662.40 953.17,662.40 953.16,662.40 953.14,662.40 953.13,662.40
|
||||
953.12,662.40 953.11,662.40 953.09,662.40 953.08,662.40 953.07,662.40 953.06,662.40 953.05,662.40 953.03,662.40 953.02,662.40 953.01,662.40 953.00,662.40 952.99,662.40 952.97,662.40 952.96,662.40 952.95,662.40 952.94,662.40
|
||||
952.93,662.40 952.91,662.40 952.90,662.40 952.89,662.40 952.88,662.40 952.87,662.40 952.85,662.40 952.84,662.40 952.83,662.40 952.82,662.40 952.80,662.40 952.79,662.40 952.78,662.40 952.77,662.40 952.76,662.40 952.74,662.40
|
||||
952.73,662.40 952.72,662.40 952.71,662.40 952.70,662.40 952.68,662.40 952.67,662.40 952.66,662.40 952.65,662.40 952.64,662.40 952.62,662.40 952.61,662.40 952.60,662.40 952.59,662.40 952.57,662.40 952.56,662.40 952.55,662.40
|
||||
952.54,662.40 952.53,662.40 952.51,662.40 952.50,662.40 952.49,662.40 952.48,662.40 952.47,662.40 952.45,662.40 952.44,662.40 952.43,662.40 952.42,662.40 952.41,662.40 952.39,662.40 952.38,662.40 952.37,662.40 952.36,662.40
|
||||
952.35,662.40 952.33,662.40 952.32,662.40 952.31,662.40 952.30,662.40 952.28,662.40 952.27,662.40 952.26,662.40 952.25,662.40 952.24,662.40 952.22,662.40 952.21,662.40 952.20,662.40 952.19,662.40 952.18,662.40 952.16,662.40
|
||||
952.15,662.40 952.14,662.40 952.13,662.40 952.12,662.40 952.10,662.40 952.09,662.40 952.08,662.40 952.07,662.40 952.06,662.40 952.04,662.40 952.03,662.40 952.02,662.40 952.01,662.40 951.99,662.40 951.98,662.40 951.97,662.40
|
||||
951.96,662.40 951.95,662.40 951.93,662.40 951.92,662.40 951.91,662.40 951.90,662.40 951.89,662.40 951.87,662.40 951.86,662.40 951.85,662.40 951.84,662.40 951.83,662.40 951.81,662.40 951.80,662.40 951.79,662.40 951.78,662.40
|
||||
951.76,662.40 951.75,662.40 951.74,662.40 951.73,662.40 951.72,662.40 951.70,662.40 951.69,662.40 951.68,662.40 951.67,662.40 951.66,662.40 951.64,662.40 951.63,662.40 951.62,662.40 951.61,662.40 951.60,662.40 951.58,662.40
|
||||
951.57,662.40 951.56,662.40 951.55,662.40 951.54,662.40 951.52,662.40 951.51,662.40 951.50,662.40 951.49,662.40 951.47,662.40 951.46,662.40 951.45,662.40 951.44,662.40 951.43,662.40 951.41,662.40 951.40,662.40 951.39,662.40
|
||||
951.38,662.40 951.37,662.40 951.35,662.40 951.34,662.40 951.33,662.40 951.32,662.40 951.31,662.40 951.29,662.40 951.28,662.40 951.27,662.40 951.26,662.40 951.24,662.40 951.23,662.40 951.22,662.40 951.21,662.40 951.20,662.40
|
||||
951.18,662.40 951.17,662.40 951.16,662.40 951.15,662.40 951.14,662.40 951.12,662.40 951.11,662.40 951.10,662.40 951.09,662.40 951.08,662.40 951.06,662.40 951.05,662.40 951.04,662.40 951.03,662.40 951.02,662.40 951.00,662.40
|
||||
950.99,662.40 950.98,662.40 950.97,662.40 950.95,662.40 950.94,662.40 950.93,662.40 950.92,662.40 950.91,662.40 950.89,662.40 950.88,662.40 950.87,662.40 950.86,662.40 950.85,662.40 950.83,662.40 950.82,662.40 950.81,662.40
|
||||
950.80,662.40 950.79,662.40 950.77,662.40 950.76,662.40 950.75,662.40 950.74,662.40 950.72,662.40 950.71,662.40 950.70,662.40 950.69,662.40 950.68,662.40 950.66,662.40 950.65,662.40 950.64,662.40 950.63,662.40 950.62,662.40
|
||||
950.60,662.40 950.59,662.40 950.58,662.40 950.57,662.40 950.56,662.40 950.54,662.40 950.53,662.40 950.52,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>t statistic</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t statistic</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1103.19,81.01 L1145.75,81.01 M171.11,662.40 L171.11,54.01 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >t score</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/compute_shared_point: Welch t test</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 26 KiB |
203
benchmarks/babyjubjub/compute_shared_point/report/index.html
Normal file
@@ -0,0 +1,203 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>babyjubjub/compute_shared_point - Criterion.rs</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font: 14px Helvetica Neue;
|
||||
text-rendering: optimizelegibility;
|
||||
}
|
||||
|
||||
.body {
|
||||
width: 960px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 200
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding-right: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #1F78B4;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
th.ci-bound {
|
||||
opacity: 0.6
|
||||
}
|
||||
|
||||
td.ci-bound {
|
||||
opacity: 0.5
|
||||
}
|
||||
|
||||
.stats {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.additional_stats {
|
||||
flex: 0 0 60%
|
||||
}
|
||||
|
||||
.additional_plots {
|
||||
flex: 1
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 36px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer {
|
||||
height: 40px;
|
||||
background: #888;
|
||||
color: white;
|
||||
font-size: larger;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
text-align: center
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="body">
|
||||
<h2>babyjubjub/compute_shared_point</h2>
|
||||
<div class="absolute">
|
||||
<section class="plots">
|
||||
<table width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="pdf.svg">
|
||||
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="regression.svg">
|
||||
<img src="regression_small.svg" alt="Regression" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
<section class="stats">
|
||||
<div class="additional_stats">
|
||||
<h4>Additional Statistics:</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
|
||||
<th>Estimate</th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Slope</td>
|
||||
<td class="ci-bound">52.386 µs</td>
|
||||
<td>52.515 µs</td>
|
||||
<td class="ci-bound">52.658 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>R²</td>
|
||||
<td class="ci-bound">0.9822708</td>
|
||||
<td>0.9831049</td>
|
||||
<td class="ci-bound">0.9820822</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mean</td>
|
||||
<td class="ci-bound">52.499 µs</td>
|
||||
<td>52.679 µs</td>
|
||||
<td class="ci-bound">52.878 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Standard Deviation">Std. Dev.</td>
|
||||
<td class="ci-bound">723.45 ns</td>
|
||||
<td>972.68 ns</td>
|
||||
<td class="ci-bound">1.1783 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Median</td>
|
||||
<td class="ci-bound">52.062 µs</td>
|
||||
<td>52.263 µs</td>
|
||||
<td class="ci-bound">52.547 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Median Absolute Deviation">MAD</td>
|
||||
<td class="ci-bound">86.760 ns</td>
|
||||
<td>372.01 ns</td>
|
||||
<td class="ci-bound">765.45 ns</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="additional_plots">
|
||||
<h4>Additional Plots:</h4>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="typical.svg">Typical</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mean.svg">Mean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="SD.svg">Std. Dev.</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="median.svg">Median</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="MAD.svg">MAD</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="slope.svg">Slope</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="explanation">
|
||||
<h4>Understanding this report:</h4>
|
||||
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
|
||||
shows the estimated probability of an iteration taking a certain amount of time, while the line
|
||||
shows the mean. Click on the plot for a larger view showing the outliers.</p>
|
||||
<p>The plot on the right shows the linear regression calculated from the measurements. Each point
|
||||
represents a sample, though here it shows the total time for the sample rather than time per
|
||||
iteration. The line is the line of best fit for these measurements.</p>
|
||||
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
|
||||
documentation</a> for more details on the additional statistics.</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>This report was generated by
|
||||
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
|
||||
library in Rust.</p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
100
benchmarks/babyjubjub/compute_shared_point/report/mean.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:mean
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="447" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,447 86,447 "/>
|
||||
<text x="77" y="398" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,398 86,398 "/>
|
||||
<text x="77" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,350 86,350 "/>
|
||||
<text x="77" y="301" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,301 86,301 "/>
|
||||
<text x="77" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,252 86,252 "/>
|
||||
<text x="77" y="203" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,203 86,203 "/>
|
||||
<text x="77" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,154 86,154 "/>
|
||||
<text x="77" y="105" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,105 86,105 "/>
|
||||
<text x="77" y="56" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,56 86,56 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="166" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="166,473 166,478 "/>
|
||||
<text x="257" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="257,473 257,478 "/>
|
||||
<text x="348" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="348,473 348,478 "/>
|
||||
<text x="439" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.65
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="439,473 439,478 "/>
|
||||
<text x="531" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.7
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="531,473 531,478 "/>
|
||||
<text x="622" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.75
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="622,473 622,478 "/>
|
||||
<text x="713" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="713,473 713,478 "/>
|
||||
<text x="804" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.85
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="804,473 804,478 "/>
|
||||
<text x="895" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="895,473 895,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,471 92,470 93,469 95,469 97,468 98,467 100,467 102,466 103,465 105,464 107,464 109,463 110,462 112,461 114,460 115,459 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,444 144,442 146,441 147,440 149,439 151,438 153,436 154,435 156,434 158,432 159,431 161,430 163,428 164,427 166,425 168,424 169,422 171,420 173,419 175,417 176,416 178,414 180,412 181,410 183,409 185,407 186,405 188,404 190,402 191,400 193,398 195,396 197,395 198,393 200,391 202,389 203,387 205,385 207,384 208,382 210,380 212,378 214,376 215,374 217,372 219,370 220,368 222,366 224,364 225,362 227,360 229,357 230,355 232,353 234,351 236,349 237,346 239,344 241,342 242,339 244,337 246,334 247,332 249,329 251,327 252,324 254,322 256,319 258,317 259,314 261,312 263,309 264,307 266,304 268,301 269,299 271,296 273,294 274,292 276,289 278,287 280,284 281,282 283,280 285,278 286,275 288,273 290,271 291,269 293,266 295,264 296,262 298,260 300,257 302,255 303,253 305,250 307,248 308,245 310,243 312,240 313,238 315,235 317,232 318,229 320,227 322,224 324,221 325,218 327,215 329,213 330,210 332,207 334,204 335,202 337,199 339,196 341,194 342,191 344,189 346,187 347,184 349,182 351,180 352,178 354,176 356,174 357,172 359,170 361,168 363,166 364,164 366,162 368,161 369,159 371,157 373,155 374,154 376,152 378,150 379,148 381,147 383,145 385,143 386,142 388,140 390,138 391,136 393,135 395,133 396,132 398,130 400,129 401,127 403,126 405,125 407,123 408,122 410,121 412,120 413,119 415,118 417,117 418,117 420,116 422,115 423,114 425,114 427,113 429,112 430,112 432,111 434,111 435,110 437,109 439,109 440,108 442,107 444,107 445,106 447,105 449,105 451,104 452,103 454,102 456,102 457,101 459,100 461,100 462,99 464,99 466,98 468,97 469,97 471,96 473,96 474,96 476,95 478,95 479,95 481,94 483,94 484,94 486,94 488,94 490,94 491,94 493,94 495,94 496,94 498,95 500,95 501,96 503,96 505,97 506,98 508,98 510,99 512,100 513,101 515,102 517,103 518,104 520,105 522,107 523,108 525,109 527,110 528,112 530,113 532,114 534,116 535,117 537,118 539,120 540,121 542,122 544,124 545,125 547,127 549,128 550,130 552,131 554,133 556,134 557,136 559,138 561,139 562,141 564,143 566,145 567,147 569,149 571,151 573,153 574,155 576,157 578,159 579,161 581,163 583,165 584,167 586,169 588,171 589,173 591,175 593,177 595,179 596,181 598,183 600,185 601,187 603,189 605,191 606,193 608,195 610,197 611,199 613,201 615,203 617,205 618,207 620,209 622,211 623,213 625,215 627,217 628,219 630,221 632,223 633,225 635,227 637,229 639,231 640,233 642,235 644,237 645,239 647,241 649,243 650,246 652,248 654,250 655,252 657,254 659,256 661,258 662,260 664,262 666,264 667,266 669,268 671,270 672,271 674,273 676,275 677,277 679,279 681,281 683,283 684,285 686,287 688,289 689,291 691,293 693,295 694,297 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,355 747,357 749,359 750,361 752,363 754,365 755,367 757,369 759,370 760,372 762,374 764,376 766,378 767,379 769,381 771,383 772,384 774,386 776,387 777,389 779,390 781,392 782,393 784,395 786,396 788,397 789,399 791,400 793,401 794,402 796,404 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,418 816,419 818,420 820,421 821,423 823,424 825,425 827,426 828,427 830,429 832,430 833,431 835,432 837,433 838,434 840,435 842,436 843,437 845,438 847,439 849,440 850,441 852,442 854,443 855,444 857,444 859,445 860,446 862,447 864,448 865,448 867,449 869,450 871,451 872,451 874,452 876,453 877,453 879,454 881,455 882,456 884,456 886,457 887,458 889,458 891,459 893,460 894,460 896,461 898,462 899,462 901,463 903,463 904,464 906,465 908,465 909,466 911,466 913,467 915,468 916,468 918,469 920,469 921,470 923,470 925,471 926,471 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,425 168,424 169,422 171,420 173,419 175,417 176,416 178,414 180,412 181,410 183,409 185,407 186,405 188,404 190,402 191,400 193,398 195,396 197,395 198,393 200,391 202,389 203,387 205,385 207,384 208,382 210,380 212,378 214,376 215,374 217,372 219,370 220,368 222,366 224,364 225,362 227,360 229,357 230,355 232,353 234,351 236,349 237,346 239,344 241,342 242,339 244,337 246,334 247,332 249,329 251,327 252,324 254,322 256,319 258,317 259,314 261,312 263,309 264,307 266,304 268,301 269,299 271,296 273,294 274,292 276,289 278,287 280,284 281,282 283,280 285,278 286,275 288,273 290,271 291,269 293,266 295,264 296,262 298,260 300,257 302,255 303,253 305,250 307,248 308,245 310,243 312,240 313,238 315,235 317,232 318,229 320,227 322,224 324,221 325,218 327,215 329,213 330,210 332,207 334,204 335,202 337,199 339,196 341,194 342,191 344,189 346,187 347,184 349,182 351,180 352,178 354,176 356,174 357,172 359,170 361,168 363,166 364,164 366,162 368,161 369,159 371,157 373,155 374,154 376,152 378,150 379,148 381,147 383,145 385,143 386,142 388,140 390,138 391,136 393,135 395,133 396,132 398,130 400,129 401,127 403,126 405,125 407,123 408,122 410,121 412,120 413,119 415,118 417,117 418,117 420,116 422,115 423,114 425,114 427,113 429,112 430,112 432,111 434,111 435,110 437,109 439,109 440,108 442,107 444,107 445,106 447,105 449,105 451,104 452,103 454,102 456,102 457,101 459,100 461,100 462,99 464,99 466,98 468,97 469,97 471,96 473,96 474,96 476,95 478,95 479,95 481,94 483,94 484,94 486,94 488,94 490,94 491,94 493,94 495,94 496,94 498,95 500,95 501,96 503,96 505,97 506,98 508,98 510,99 512,100 513,101 515,102 517,103 518,104 520,105 522,107 523,108 525,109 527,110 528,112 530,113 532,114 534,116 535,117 537,118 539,120 540,121 542,122 544,124 545,125 547,127 549,128 550,130 552,131 554,133 556,134 557,136 559,138 561,139 562,141 564,143 566,145 567,147 569,149 571,151 573,153 574,155 576,157 578,159 579,161 581,163 583,165 584,167 586,169 588,171 589,173 591,175 593,177 595,179 596,181 598,183 600,185 601,187 603,189 605,191 606,193 608,195 610,197 611,199 613,201 615,203 617,205 618,207 620,209 622,211 623,213 625,215 627,217 628,219 630,221 632,223 633,225 635,227 637,229 639,231 640,233 642,235 644,237 645,239 647,241 649,243 650,246 652,248 654,250 655,252 657,254 659,256 661,258 662,260 664,262 666,264 667,266 669,268 671,270 672,271 674,273 676,275 677,277 679,279 681,281 683,283 684,285 686,287 688,289 689,291 691,293 693,295 694,297 696,298 698,300 700,302 701,304 703,306 705,308 706,310 708,312 710,314 711,316 713,318 715,320 716,322 718,324 720,326 722,328 723,330 725,332 727,334 728,336 730,338 732,340 733,342 735,344 737,346 738,348 740,350 742,352 744,354 745,355 747,357 749,359 750,361 752,363 754,365 755,367 757,369 759,370 760,372 762,374 764,376 766,378 767,379 769,381 771,383 772,384 774,386 776,387 777,389 779,390 781,392 782,393 784,395 786,396 788,397 789,399 791,400 793,401 794,402 796,404 798,405 799,406 801,407 803,409 804,410 806,411 808,412 810,414 811,415 813,416 815,418 816,419 818,420 820,421 821,423 823,424 825,425 827,426 828,427 830,429 832,430 833,431 835,432 837,433 838,434 840,435 842,436 843,437 845,438 847,439 849,440 850,441 852,442 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="492,473 492,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
92
benchmarks/babyjubjub/compute_shared_point/report/median.svg
Normal file
@@ -0,0 +1,92 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:median
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="436" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,436 86,436 "/>
|
||||
<text x="77" y="397" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,397 86,397 "/>
|
||||
<text x="77" y="358" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,358 86,358 "/>
|
||||
<text x="77" y="319" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,319 86,319 "/>
|
||||
<text x="77" y="280" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,280 86,280 "/>
|
||||
<text x="77" y="241" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,241 86,241 "/>
|
||||
<text x="77" y="202" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,202 86,202 "/>
|
||||
<text x="77" y="163" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,163 86,163 "/>
|
||||
<text x="77" y="124" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,124 86,124 "/>
|
||||
<text x="77" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,85 86,85 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="217" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="217,473 217,478 "/>
|
||||
<text x="360" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="360,473 360,478 "/>
|
||||
<text x="502" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="502,473 502,478 "/>
|
||||
<text x="645" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="645,473 645,478 "/>
|
||||
<text x="788" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="788,473 788,478 "/>
|
||||
<text x="931" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="931,473 931,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,468 98,467 100,466 102,465 103,463 105,462 107,460 109,458 110,456 112,454 114,452 115,450 117,447 119,445 120,443 122,440 124,438 125,435 127,433 129,430 131,428 132,425 134,422 136,419 137,416 139,414 141,411 142,407 144,404 146,401 147,398 149,394 151,391 153,388 154,384 156,381 158,378 159,375 161,372 163,369 164,366 166,363 168,361 169,359 171,356 173,354 175,352 176,351 178,349 180,347 181,346 183,345 185,344 186,343 188,342 190,342 191,342 193,342 195,343 197,344 198,345 200,346 202,348 203,350 205,353 207,356 208,359 210,362 212,365 214,368 215,371 217,373 219,376 220,378 222,380 224,381 225,382 227,383 229,383 230,382 232,382 234,381 236,379 237,378 239,377 241,375 242,373 244,372 246,370 247,368 249,366 251,364 252,362 254,359 256,356 258,352 259,347 261,342 263,336 264,328 266,320 268,310 269,300 271,288 273,276 274,262 276,248 278,234 280,220 281,205 283,191 285,177 286,164 288,152 290,141 291,132 293,123 295,116 296,111 298,107 300,105 302,104 303,104 305,106 307,109 308,113 310,118 312,124 313,130 315,137 317,144 318,152 320,160 322,168 324,176 325,184 327,192 329,200 330,208 332,215 334,222 335,229 337,235 339,241 341,247 342,253 344,258 346,263 347,268 349,273 351,277 352,281 354,285 356,289 357,292 359,296 361,299 363,302 364,304 366,307 368,309 369,310 371,312 373,313 374,314 376,314 378,315 379,315 381,315 383,314 385,314 386,313 388,313 390,312 391,312 393,312 395,311 396,311 398,311 400,311 401,311 403,312 405,312 407,312 408,311 410,311 412,310 413,309 415,308 417,306 418,304 420,301 422,298 423,294 425,289 427,284 429,278 430,272 432,265 434,258 435,250 437,242 439,233 440,224 442,214 444,205 445,195 447,184 449,174 451,164 452,154 454,144 456,135 457,126 459,119 461,111 462,105 464,100 466,96 468,94 469,92 471,92 473,93 474,95 476,98 478,103 479,108 481,114 483,121 484,128 486,135 488,143 490,151 491,159 493,167 495,174 496,181 498,188 500,195 501,201 503,207 505,212 506,217 508,222 510,226 512,230 513,233 515,237 517,239 518,242 520,244 522,246 523,248 525,249 527,250 528,251 530,251 532,251 534,251 535,251 537,250 539,249 540,248 542,247 544,245 545,244 547,242 549,241 550,239 552,238 554,237 556,236 557,236 559,236 561,236 562,237 564,238 566,240 567,242 569,245 571,249 573,253 574,257 576,262 578,268 579,274 581,280 583,286 584,292 586,299 588,305 589,312 591,318 593,324 595,330 596,335 598,340 600,345 601,350 603,354 605,358 606,361 608,364 610,367 611,369 613,372 615,374 617,376 618,378 620,380 622,381 623,383 625,384 627,385 628,387 630,388 632,389 633,390 635,391 637,392 639,393 640,394 642,395 644,396 645,397 647,398 649,399 650,400 652,402 654,403 655,404 657,406 659,407 661,409 662,411 664,412 666,414 667,416 669,418 671,420 672,423 674,425 676,427 677,429 679,432 681,434 683,436 684,439 686,441 688,443 689,445 691,447 693,449 694,450 696,452 698,453 700,454 701,455 703,455 705,456 706,456 708,456 710,456 711,456 713,456 715,455 716,454 718,454 720,453 722,451 723,450 725,449 727,448 728,446 730,445 732,444 733,442 735,441 737,440 738,439 740,438 742,438 744,437 745,437 747,437 749,437 750,438 752,438 754,439 755,440 757,441 759,443 760,444 762,446 764,448 766,449 767,451 769,453 771,454 772,456 774,458 776,459 777,460 779,461 781,462 782,463 784,463 786,464 788,464 789,464 791,464 793,463 794,463 796,462 798,461 799,460 801,458 803,457 804,455 806,454 808,452 810,450 811,448 813,446 815,444 816,442 818,440 820,438 821,437 823,435 825,434 827,433 828,432 830,431 832,431 833,430 835,430 837,431 838,431 840,431 842,432 843,433 845,434 847,435 849,436 850,437 852,438 854,439 855,440 857,441 859,442 860,443 862,443 864,444 865,445 867,446 869,446 871,447 872,447 874,448 876,448 877,449 879,449 881,449 882,450 884,450 886,450 887,451 889,451 891,451 893,451 894,452 896,452 898,452 899,453 901,453 903,453 904,453 906,454 908,454 909,454 911,454 913,454 915,454 916,454 918,454 920,454 921,454 923,454 925,454 926,454 928,454 930,453 932,453 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,366 166,363 168,361 169,359 171,356 173,354 175,352 176,351 178,349 180,347 181,346 183,345 185,344 186,343 188,342 190,342 191,342 193,342 195,343 197,344 198,345 200,346 202,348 203,350 205,353 207,356 208,359 210,362 212,365 214,368 215,371 217,373 219,376 220,378 222,380 224,381 225,382 227,383 229,383 230,382 232,382 234,381 236,379 237,378 239,377 241,375 242,373 244,372 246,370 247,368 249,366 251,364 252,362 254,359 256,356 258,352 259,347 261,342 263,336 264,328 266,320 268,310 269,300 271,288 273,276 274,262 276,248 278,234 280,220 281,205 283,191 285,177 286,164 288,152 290,141 291,132 293,123 295,116 296,111 298,107 300,105 302,104 303,104 305,106 307,109 308,113 310,118 312,124 313,130 315,137 317,144 318,152 320,160 322,168 324,176 325,184 327,192 329,200 330,208 332,215 334,222 335,229 337,235 339,241 341,247 342,253 344,258 346,263 347,268 349,273 351,277 352,281 354,285 356,289 357,292 359,296 361,299 363,302 364,304 366,307 368,309 369,310 371,312 373,313 374,314 376,314 378,315 379,315 381,315 383,314 385,314 386,313 388,313 390,312 391,312 393,312 395,311 396,311 398,311 400,311 401,311 403,312 405,312 407,312 408,311 410,311 412,310 413,309 415,308 417,306 418,304 420,301 422,298 423,294 425,289 427,284 429,278 430,272 432,265 434,258 435,250 437,242 439,233 440,224 442,214 444,205 445,195 447,184 449,174 451,164 452,154 454,144 456,135 457,126 459,119 461,111 462,105 464,100 466,96 468,94 469,92 471,92 473,93 474,95 476,98 478,103 479,108 481,114 483,121 484,128 486,135 488,143 490,151 491,159 493,167 495,174 496,181 498,188 500,195 501,201 503,207 505,212 506,217 508,222 510,226 512,230 513,233 515,237 517,239 518,242 520,244 522,246 523,248 525,249 527,250 528,251 530,251 532,251 534,251 535,251 537,250 539,249 540,248 542,247 544,245 545,244 547,242 549,241 550,239 552,238 554,237 556,236 557,236 559,236 561,236 562,237 564,238 566,240 567,242 569,245 571,249 573,253 574,257 576,262 578,268 579,274 581,280 583,286 584,292 586,299 588,305 589,312 591,318 593,324 595,330 596,335 598,340 600,345 601,350 603,354 605,358 606,361 608,364 610,367 611,369 613,372 615,374 617,376 618,378 620,380 622,381 623,383 625,384 627,385 628,387 630,388 632,389 633,390 635,391 637,392 639,393 640,394 642,395 644,396 645,397 647,398 649,399 650,400 652,402 654,403 655,404 657,406 659,407 661,409 662,411 664,412 666,414 667,416 669,418 671,420 672,423 674,425 676,427 677,429 679,432 681,434 683,436 684,439 686,441 688,443 689,445 691,447 693,449 694,450 696,452 698,453 700,454 701,455 703,455 705,456 706,456 708,456 710,456 711,456 713,456 715,455 716,454 718,454 720,453 722,451 723,450 725,449 727,448 728,446 730,445 732,444 733,442 735,441 737,440 738,439 740,438 742,438 744,437 745,437 747,437 749,437 750,438 752,438 754,439 755,440 757,441 759,443 760,444 762,446 764,448 766,449 767,451 769,453 771,454 772,456 774,458 776,459 777,460 779,461 781,462 782,463 784,463 786,464 788,464 789,464 791,464 793,463 794,463 796,462 798,461 799,460 801,458 803,457 804,455 806,454 808,452 810,450 811,448 813,446 815,444 816,442 818,440 820,438 821,437 823,435 825,434 827,433 828,432 830,431 832,431 833,430 835,430 837,431 838,431 840,431 842,432 843,433 845,434 847,435 849,436 850,437 852,438 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="449,473 449,171 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
151
benchmarks/babyjubjub/compute_shared_point/report/pdf.svg
Normal file
@@ -0,0 +1,151 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
|
||||
<text x="77" y="428" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,428 86,428 "/>
|
||||
<text x="77" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,384 86,384 "/>
|
||||
<text x="77" y="340" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,340 86,340 "/>
|
||||
<text x="77" y="296" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,296 86,296 "/>
|
||||
<text x="77" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,252 86,252 "/>
|
||||
<text x="77" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,208 86,208 "/>
|
||||
<text x="77" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,164 86,164 "/>
|
||||
<text x="77" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,120 86,120 "/>
|
||||
<text x="77" y="76" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,76 86,76 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
|
||||
<text x="116" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
51
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="116,473 116,478 "/>
|
||||
<text x="241" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="241,473 241,478 "/>
|
||||
<text x="366" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="366,473 366,478 "/>
|
||||
<text x="491" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
54
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="491,473 491,478 "/>
|
||||
<text x="615" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="615,473 615,478 "/>
|
||||
<text x="740" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
56
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="740,473 740,478 "/>
|
||||
<text x="865" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
57
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="865,473 865,478 "/>
|
||||
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
|
||||
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
|
||||
<text x="883" y="404" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,404 878,404 "/>
|
||||
<text x="883" y="335" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,335 878,335 "/>
|
||||
<text x="883" y="266" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,266 878,266 "/>
|
||||
<text x="883" y="197" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,197 878,197 "/>
|
||||
<text x="883" y="128" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,128 878,128 "/>
|
||||
<text x="883" y="59" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,59 878,59 "/>
|
||||
<polygon opacity="0.5" fill="#1F78B4" points="87,471 88,471 90,470 91,470 93,470 94,469 96,469 98,468 99,468 101,467 102,467 104,466 105,466 107,465 109,464 110,463 112,462 113,462 115,461 116,460 118,458 120,457 121,456 123,455 124,453 126,452 127,450 129,448 131,446 132,444 134,442 135,440 137,438 138,436 140,433 142,430 143,428 145,425 146,422 148,418 150,415 151,412 153,408 154,404 156,400 157,396 159,392 161,387 162,383 164,378 165,373 167,368 168,363 170,358 172,352 173,346 175,341 176,335 178,329 179,322 181,316 183,310 184,303 186,296 187,290 189,283 190,276 192,269 194,262 195,255 197,248 198,240 200,233 201,226 203,219 205,211 206,204 208,197 209,190 211,183 213,176 214,169 216,162 217,156 219,149 220,143 222,136 224,130 225,124 227,119 228,113 230,108 231,103 233,98 235,93 236,88 238,84 239,80 241,77 242,73 244,70 246,67 247,65 249,62 250,60 252,58 253,57 255,56 257,55 258,54 260,54 261,53 263,54 264,54 266,55 268,56 269,57 271,58 272,60 274,62 276,64 277,66 279,68 280,71 282,74 283,77 285,80 287,83 288,87 290,90 291,94 293,98 294,102 296,105 298,110 299,114 301,118 302,122 304,126 305,131 307,135 309,139 310,144 312,148 313,153 315,157 316,161 318,166 320,170 321,174 323,179 324,183 326,187 327,191 329,195 331,199 332,203 334,207 335,211 337,215 339,219 340,223 342,227 343,230 345,234 346,237 348,241 350,244 351,248 353,251 354,254 356,258 357,261 359,264 361,267 362,270 364,273 365,276 367,279 368,282 370,284 372,287 373,290 375,292 376,295 378,298 379,300 381,303 383,305 384,308 386,310 387,312 389,315 391,317 392,319 394,322 395,324 397,326 398,328 400,330 402,332 403,334 405,336 406,338 408,340 409,342 411,344 413,346 414,348 416,350 417,351 419,353 420,355 422,357 424,358 425,360 427,361 428,363 430,365 431,366 433,368 435,369 436,371 438,372 439,374 441,375 442,377 444,378 446,380 447,381 449,382 450,384 452,385 454,386 455,388 457,389 458,390 460,391 461,393 463,394 465,395 466,396 468,398 469,399 471,400 472,401 474,402 476,404 477,405 479,406 480,407 482,408 483,409 485,410 487,411 488,413 490,414 491,415 493,416 494,417 496,418 498,419 499,420 501,421 502,422 504,423 505,424 507,425 509,426 510,427 512,428 513,429 515,430 517,431 518,432 520,433 521,434 523,435 524,436 526,437 528,438 529,439 531,440 532,441 534,442 535,443 537,443 539,444 540,445 542,446 543,447 545,448 546,448 548,449 550,450 551,451 553,451 554,452 556,453 557,453 559,454 561,455 562,455 564,456 565,456 567,457 568,457 570,458 572,458 573,459 575,459 576,460 578,460 580,460 581,461 583,461 584,461 586,462 587,462 589,462 591,462 592,463 594,463 595,463 597,463 598,463 600,463 602,463 603,463 605,463 606,463 608,463 609,463 611,463 613,463 614,462 616,462 617,462 619,462 620,461 622,461 624,461 625,460 627,460 628,460 630,459 632,459 633,458 635,458 636,458 638,457 639,457 641,456 643,455 644,455 646,454 647,454 649,453 650,453 652,452 654,451 655,451 657,450 658,450 660,449 661,448 663,448 665,447 666,446 668,446 669,445 671,445 672,444 674,443 676,443 677,442 679,442 680,441 682,441 683,440 685,440 687,439 688,439 690,438 691,438 693,438 695,437 696,437 698,437 699,436 701,436 702,436 704,436 706,436 707,435 709,435 710,435 712,435 713,435 715,435 717,435 718,436 720,436 721,436 723,436 724,436 726,437 728,437 729,437 731,438 732,438 734,438 735,439 737,439 739,440 740,440 742,441 743,441 745,442 746,443 748,443 750,444 751,444 753,445 754,446 756,446 758,447 759,448 761,448 762,449 764,450 765,450 767,451 769,452 770,453 772,453 773,454 775,455 776,455 778,456 780,457 781,457 783,458 784,458 786,459 787,460 789,460 791,461 792,461 794,462 795,462 797,463 798,463 800,464 802,464 803,465 805,465 806,466 808,466 809,467 811,467 813,467 814,468 816,468 817,468 819,469 821,469 822,469 824,469 825,470 827,470 828,470 830,470 832,471 833,471 835,471 836,471 838,471 839,471 841,472 843,472 844,472 846,472 847,472 849,472 850,472 852,472 854,472 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="326,472 326,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="87,472 87,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="530,472 530,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="702,472 702,53 "/>
|
||||
<circle cx="718" cy="418" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="715" cy="414" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="410" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="670" cy="405" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="401" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="717" cy="397" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="670" cy="405" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="418" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
<circle cx="715" cy="414" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="410" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="401" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
<circle cx="717" cy="397" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
PDF
|
||||
</text>
|
||||
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mean
|
||||
</text>
|
||||
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
"Clean" sample
|
||||
</text>
|
||||
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mild outliers
|
||||
</text>
|
||||
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Severe outliers
|
||||
</text>
|
||||
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
|
||||
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,52 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
|
||||
<text x="65" y="210" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,210 74,210 "/>
|
||||
<text x="65" y="176" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,176 74,176 "/>
|
||||
<text x="65" y="142" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,142 74,142 "/>
|
||||
<text x="65" y="108" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,108 74,108 "/>
|
||||
<text x="65" y="73" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,73 74,73 "/>
|
||||
<text x="65" y="39" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,39 74,39 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="145" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="145,245 145,250 "/>
|
||||
<text x="259" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
54
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="259,245 259,250 "/>
|
||||
<text x="373" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
56
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="373,245 373,250 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,243 75,243 76,243 77,243 77,243 78,242 79,242 80,242 80,242 81,241 82,241 82,241 83,241 84,240 85,240 85,239 86,239 87,239 87,238 88,238 89,237 90,236 90,236 91,235 92,234 92,234 93,233 94,232 95,231 95,230 96,229 97,228 98,227 98,226 99,224 100,223 100,222 101,220 102,219 103,217 103,216 104,214 105,212 105,210 106,208 107,206 108,204 108,202 109,200 110,197 110,195 111,192 112,190 113,187 113,184 114,182 115,179 116,176 116,173 117,170 118,166 118,163 119,160 120,157 121,153 121,150 122,147 123,143 123,140 124,136 125,132 126,129 126,125 127,122 128,118 128,115 129,111 130,107 131,104 131,100 132,97 133,94 133,90 134,87 135,84 136,81 136,77 137,74 138,71 139,69 139,66 140,63 141,61 141,58 142,56 143,54 144,52 144,50 145,48 146,46 146,45 147,43 148,42 149,41 149,40 150,39 151,38 151,37 152,37 153,37 154,36 154,36 155,36 156,37 157,37 157,37 158,38 159,39 159,39 160,40 161,41 162,42 162,44 163,45 164,46 164,48 165,49 166,51 167,53 167,54 168,56 169,58 169,60 170,62 171,64 172,66 172,68 173,70 174,72 175,75 175,77 176,79 177,81 177,83 178,85 179,88 180,90 180,92 181,94 182,96 182,98 183,100 184,103 185,105 185,107 186,109 187,111 187,113 188,115 189,116 190,118 190,120 191,122 192,124 192,126 193,127 194,129 195,131 195,133 196,134 197,136 198,137 198,139 199,141 200,142 200,144 201,145 202,147 203,148 203,149 204,151 205,152 205,153 206,155 207,156 208,157 208,159 209,160 210,161 210,162 211,163 212,165 213,166 213,167 214,168 215,169 216,170 216,171 217,172 218,173 218,174 219,175 220,176 221,177 221,178 222,179 223,180 223,181 224,182 225,183 226,184 226,185 227,186 228,187 228,187 229,188 230,189 231,190 231,191 232,191 233,192 233,193 234,194 235,194 236,195 236,196 237,197 238,197 239,198 239,199 240,199 241,200 241,201 242,201 243,202 244,203 244,203 245,204 246,204 246,205 247,206 248,206 249,207 249,207 250,208 251,209 251,209 252,210 253,210 254,211 254,212 255,212 256,213 257,213 257,214 258,214 259,215 259,215 260,216 261,216 262,217 262,218 263,218 264,219 264,219 265,220 266,220 267,221 267,221 268,222 269,222 269,223 270,223 271,224 272,224 272,225 273,225 274,226 275,226 275,227 276,227 277,227 277,228 278,228 279,229 280,229 280,230 281,230 282,230 282,231 283,231 284,232 285,232 285,232 286,233 287,233 287,234 288,234 289,234 290,235 290,235 291,235 292,235 292,236 293,236 294,236 295,237 295,237 296,237 297,237 298,237 298,238 299,238 300,238 300,238 301,238 302,239 303,239 303,239 304,239 305,239 305,239 306,239 307,239 308,239 308,239 309,239 310,239 310,239 311,239 312,239 313,239 313,239 314,239 315,239 316,239 316,239 317,239 318,239 318,239 319,238 320,238 321,238 321,238 322,238 323,237 323,237 324,237 325,237 326,237 326,236 327,236 328,236 328,236 329,235 330,235 331,235 331,234 332,234 333,234 333,234 334,233 335,233 336,233 336,232 337,232 338,232 339,231 339,231 340,231 341,230 341,230 342,230 343,230 344,229 344,229 345,229 346,228 346,228 347,228 348,228 349,227 349,227 350,227 351,227 351,227 352,226 353,226 354,226 354,226 355,226 356,226 357,226 357,226 358,226 359,226 359,226 360,226 361,226 362,226 362,226 363,226 364,226 364,226 365,226 366,226 367,226 367,226 368,227 369,227 369,227 370,227 371,227 372,228 372,228 373,228 374,228 375,229 375,229 376,229 377,229 377,230 378,230 379,230 380,231 380,231 381,231 382,232 382,232 383,232 384,233 385,233 385,233 386,234 387,234 387,234 388,235 389,235 390,235 390,236 391,236 392,236 392,237 393,237 394,237 395,238 395,238 396,238 397,238 398,239 398,239 399,239 400,240 400,240 401,240 402,240 403,240 403,241 404,241 405,241 405,241 406,241 407,242 408,242 408,242 409,242 410,242 410,242 411,242 412,243 413,243 413,243 414,243 415,243 416,243 416,243 417,243 418,243 418,243 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="184,244 184,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
217
benchmarks/babyjubjub/compute_shared_point/report/regression.svg
Normal file
@@ -0,0 +1,217 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="168" y1="472" x2="168" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="258" y1="472" x2="258" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="348" y1="472" x2="348" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="437" y1="472" x2="437" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="527" y1="472" x2="527" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="617" y1="472" x2="617" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="707" y1="472" x2="707" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="797" y1="472" x2="797" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="887" y1="472" x2="887" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="434" x2="932" y2="434"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="391" x2="932" y2="391"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="348" x2="932" y2="348"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="306" x2="932" y2="306"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="263" x2="932" y2="263"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="220" x2="932" y2="220"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="177" x2="932" y2="177"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="135" x2="932" y2="135"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="92" x2="932" y2="92"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="434" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,434 86,434 "/>
|
||||
<text x="77" y="391" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,391 86,391 "/>
|
||||
<text x="77" y="348" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,348 86,348 "/>
|
||||
<text x="77" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,306 86,306 "/>
|
||||
<text x="77" y="263" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,263 86,263 "/>
|
||||
<text x="77" y="220" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,220 86,220 "/>
|
||||
<text x="77" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,177 86,177 "/>
|
||||
<text x="77" y="135" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,135 86,135 "/>
|
||||
<text x="77" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,92 86,92 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="168" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="168,473 168,478 "/>
|
||||
<text x="258" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="258,473 258,478 "/>
|
||||
<text x="348" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="348,473 348,478 "/>
|
||||
<text x="437" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="437,473 437,478 "/>
|
||||
<text x="527" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="527,473 527,478 "/>
|
||||
<text x="617" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="617,473 617,478 "/>
|
||||
<text x="707" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="707,473 707,478 "/>
|
||||
<text x="797" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="797,473 797,478 "/>
|
||||
<text x="887" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="887,473 887,478 "/>
|
||||
<circle cx="87" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="95" cy="468" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="112" cy="460" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="121" cy="456" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="451" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="138" cy="447" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="146" cy="443" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="155" cy="437" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="163" cy="434" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="430" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="424" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="189" cy="418" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="197" cy="413" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="206" cy="409" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="215" cy="405" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="400" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="232" cy="395" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="240" cy="393" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="392" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="257" cy="388" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="266" cy="384" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="378" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="283" cy="375" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="291" cy="371" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="300" cy="367" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="308" cy="363" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="358" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="354" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="334" cy="350" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="346" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="351" cy="341" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="360" cy="336" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="333" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="377" cy="329" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="385" cy="319" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="320" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="402" cy="316" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="411" cy="312" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="308" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="428" cy="303" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="436" cy="299" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="445" cy="294" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="454" cy="290" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="462" cy="287" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="471" cy="282" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="479" cy="278" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="488" cy="274" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="496" cy="270" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="505" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="513" cy="261" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="522" cy="257" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="530" cy="250" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="539" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="547" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="556" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="564" cy="233" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="573" cy="229" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="582" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="590" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="599" cy="213" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="607" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="616" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="624" cy="203" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="633" cy="200" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="641" cy="192" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="650" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="658" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="667" cy="181" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="675" cy="172" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="684" cy="171" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="693" cy="167" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="701" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="710" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="155" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="727" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="735" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="744" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="752" cy="137" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="761" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="769" cy="132" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="778" cy="126" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="786" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="795" cy="115" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="803" cy="114" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="812" cy="101" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="821" cy="109" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="829" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="838" cy="100" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="846" cy="96" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="855" cy="92" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="863" cy="87" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="872" cy="84" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="880" cy="79" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="889" cy="75" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="897" cy="69" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="906" cy="66" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="914" cy="63" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="923" cy="56" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="932" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,473 932,53 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="87,473 932,53 932,53 "/>
|
||||
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Sample
|
||||
</text>
|
||||
<text x="132" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Linear regression
|
||||
</text>
|
||||
<text x="132" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="102,88 122,88 "/>
|
||||
<rect x="102" y="98" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,202 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="109" y1="244" x2="109" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="147" y1="244" x2="147" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="185" y1="244" x2="185" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="224" y1="244" x2="224" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="262" y1="244" x2="262" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="300" y1="244" x2="300" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="338" y1="244" x2="338" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="376" y1="244" x2="376" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="414" y1="244" x2="414" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="223" x2="434" y2="223"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="200" x2="434" y2="200"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="177" x2="434" y2="177"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="153" x2="434" y2="153"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="130" x2="434" y2="130"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="107" x2="434" y2="107"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="83" x2="434" y2="83"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="60" x2="434" y2="60"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="36" x2="434" y2="36"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="223" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,223 74,223 "/>
|
||||
<text x="65" y="200" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,200 74,200 "/>
|
||||
<text x="65" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,177 74,177 "/>
|
||||
<text x="65" y="153" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,153 74,153 "/>
|
||||
<text x="65" y="130" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,130 74,130 "/>
|
||||
<text x="65" y="107" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,107 74,107 "/>
|
||||
<text x="65" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,83 74,83 "/>
|
||||
<text x="65" y="60" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,60 74,60 "/>
|
||||
<text x="65" y="36" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,36 74,36 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="109" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="109,245 109,250 "/>
|
||||
<text x="147" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="147,245 147,250 "/>
|
||||
<text x="185" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="185,245 185,250 "/>
|
||||
<text x="224" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="224,245 224,250 "/>
|
||||
<text x="262" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="262,245 262,250 "/>
|
||||
<text x="300" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="300,245 300,250 "/>
|
||||
<text x="338" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="338,245 338,250 "/>
|
||||
<text x="376" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="376,245 376,250 "/>
|
||||
<text x="414" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="414,245 414,250 "/>
|
||||
<circle cx="75" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="78" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="82" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="85" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="89" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="93" cy="233" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="96" cy="231" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="100" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="225" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="107" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="111" cy="221" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="114" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="118" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="122" cy="212" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="125" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="207" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="133" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="136" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="140" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="143" cy="200" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="147" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="151" cy="196" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="154" cy="193" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="158" cy="191" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="162" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="165" cy="187" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="169" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="182" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="176" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="178" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="183" cy="175" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="187" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="191" cy="170" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="194" cy="168" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="198" cy="166" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="201" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="205" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="209" cy="159" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="212" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="216" cy="154" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="220" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="227" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="230" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="234" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="238" cy="141" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="241" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="245" cy="136" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="134" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="252" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="256" cy="129" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="259" cy="127" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="263" cy="123" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="267" cy="119" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="270" cy="116" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="278" cy="114" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="281" cy="111" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="285" cy="108" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="288" cy="108" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="292" cy="103" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="296" cy="101" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="299" cy="100" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="303" cy="97" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="307" cy="96" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="310" cy="91" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="314" cy="87" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="90" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="321" cy="85" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="80" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="328" cy="80" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="332" cy="78" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="336" cy="76" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="339" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="71" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="346" cy="69" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="350" cy="64" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="354" cy="67" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="357" cy="61" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="361" cy="57" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="365" cy="58" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="55" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="372" cy="50" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="375" cy="49" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="379" cy="48" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="383" cy="42" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="386" cy="46" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="390" cy="43" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="41" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="397" cy="39" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="401" cy="36" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="404" cy="34" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="408" cy="32" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="412" cy="30" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="415" cy="27" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="24" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="423" cy="23" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="426" cy="20" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="430" cy="17" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="434" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="75,245 434,15 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,245 434,15 434,15 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,321 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L81.53,242.40 '/> <g transform="translate(64.14,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,214.35 L81.53,214.35 '/> <g transform="translate(64.14,218.25)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,186.30 L81.53,186.30 '/> <g transform="translate(64.14,190.20)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,158.25 L81.53,158.25 '/> <g transform="translate(64.14,162.15)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,130.20 L81.53,130.20 '/> <g transform="translate(64.14,134.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,102.16 L81.53,102.16 '/> <g transform="translate(64.14,106.06)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,74.11 L81.53,74.11 '/> <g transform="translate(64.14,78.01)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,46.06 L81.53,46.06 '/> <g transform="translate(64.14,49.96)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L72.53,233.40 '/> <g transform="translate(72.53,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M107.76,242.40 L107.76,233.40 '/> <g transform="translate(107.76,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 55</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M142.99,242.40 L142.99,233.40 '/> <g transform="translate(142.99,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M178.22,242.40 L178.22,233.40 '/> <g transform="translate(178.22,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 65</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M213.45,242.40 L213.45,233.40 '/> <g transform="translate(213.45,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M248.68,242.40 L248.68,233.40 '/> <g transform="translate(248.68,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 75</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M283.90,242.40 L283.90,233.40 '/> <g transform="translate(283.90,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M319.13,242.40 L319.13,233.40 '/> <g transform="translate(319.13,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 85</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M354.36,242.40 L354.36,233.40 '/> <g transform="translate(354.36,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M389.59,242.40 L389.59,233.40 '/> <g transform="translate(389.59,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,242.40 L424.82,233.40 '/> <g transform="translate(424.82,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '401.52,242.31 401.56,242.30 401.60,242.28 401.64,242.26 401.68,242.24 401.72,242.21 401.76,242.18 401.80,242.15 401.85,242.12 401.89,242.07 401.93,242.03 401.97,241.97 402.01,241.91 402.05,241.85 402.09,241.77 402.13,241.69
|
||||
402.17,241.59 402.22,241.49 402.26,241.37 402.30,241.24 402.34,241.09 402.38,240.93 402.42,240.75 402.46,240.56 402.50,240.34 402.55,240.10 402.59,239.84 402.63,239.56 402.67,239.24 402.71,238.90 402.75,238.53 402.79,238.13
|
||||
402.83,237.69 402.87,237.21 402.92,236.70 402.96,236.15 403.00,235.55 403.04,234.90 403.08,234.22 403.12,233.48 403.16,232.68 403.20,231.84 403.25,230.94 403.29,229.98 403.33,228.97 403.37,227.89 403.41,226.75 403.45,225.54
|
||||
403.49,224.27 403.53,222.94 403.57,221.53 403.62,220.06 403.66,218.52 403.70,216.91 403.74,215.23 403.78,213.48 403.82,211.67 403.86,209.79 403.90,207.84 403.95,205.83 403.99,203.75 404.03,201.61 404.07,199.42 404.11,197.17
|
||||
404.15,194.87 404.19,192.52 404.23,190.13 404.27,187.69 404.32,185.22 404.36,182.72 404.40,180.20 404.44,177.65 404.48,175.09 404.52,172.52 404.56,169.94 404.60,167.37 404.65,164.82 404.69,162.27 404.73,159.76 404.77,157.27
|
||||
404.81,154.82 404.85,152.42 404.89,150.07 404.93,147.78 404.97,145.55 405.02,143.40 405.06,141.33 405.10,139.35 405.14,137.45 405.18,135.66 405.22,133.98 405.26,132.40 405.30,130.94 405.35,129.60 405.39,128.38 405.43,127.29
|
||||
405.47,126.34 405.51,125.52 405.55,124.84 405.59,124.29 405.63,123.89 405.67,123.63 405.72,123.51 405.76,123.53 405.80,123.69 405.84,123.99 405.88,124.43 405.92,125.00 405.96,125.70 406.00,126.53 406.05,127.48 406.09,128.56
|
||||
406.13,129.75 406.17,131.04 406.21,132.45 406.25,133.95 406.29,135.54 406.33,137.22 406.37,138.97 406.42,140.80 406.46,142.70 406.50,144.66 406.54,146.66 406.58,148.72 406.62,150.81 406.66,152.94 406.70,155.09 406.75,157.26
|
||||
406.79,159.45 406.83,161.64 406.87,163.83 406.91,166.03 406.95,168.21 406.99,170.38 407.03,172.53 407.08,174.66 407.12,176.76 407.16,178.83 407.20,180.87 407.24,182.88 407.28,184.84 407.32,186.77 407.36,188.65 407.40,190.48
|
||||
407.45,192.27 407.49,194.01 407.53,195.70 407.57,197.34 407.61,198.93 407.65,200.47 407.69,201.96 407.73,203.39 407.78,204.78 407.82,206.11 407.86,207.40 407.90,208.64 407.94,209.82 407.98,210.96 408.02,212.05 408.06,213.10
|
||||
408.10,214.10 408.15,215.06 408.19,215.98 408.23,216.86 408.27,217.69 408.31,218.49 408.35,219.25 408.39,219.98 408.43,220.67 408.48,221.34 408.52,221.97 408.56,222.57 408.60,223.15 408.64,223.70 408.68,224.23 408.72,224.73
|
||||
408.76,225.21 408.80,225.68 408.85,226.12 408.89,226.55 408.93,226.97 408.97,227.37 409.01,227.76 409.05,228.13 409.09,228.50 409.13,228.86 409.18,229.20 409.22,229.55 409.26,229.88 409.30,230.21 409.34,230.53 409.38,230.85
|
||||
409.42,231.17 409.46,231.48 409.50,231.79 409.55,232.10 409.59,232.40 409.63,232.70 409.67,233.00 409.71,233.30 409.75,233.59 409.79,233.88 409.83,234.17 409.88,234.46 409.92,234.75 409.96,235.03 410.00,235.31 410.04,235.58
|
||||
410.08,235.86 410.12,236.13 410.16,236.39 410.20,236.65 410.25,236.91 410.29,237.16 410.33,237.40 410.37,237.64 410.41,237.87 410.45,238.10 410.49,238.32 410.53,238.54 410.58,238.75 410.62,238.95 410.66,239.15 410.70,239.34
|
||||
410.74,239.52 410.78,239.69 410.82,239.86 410.86,240.02 410.90,240.18 410.95,240.32 410.99,240.46 411.03,240.60 411.07,240.72 411.11,240.84 411.15,240.96 411.19,241.06 411.23,241.16 411.28,241.26 411.32,241.35 411.36,241.43
|
||||
411.40,241.51 411.44,241.59 411.48,241.65 411.52,241.72 411.56,241.78 411.60,241.83 411.65,241.88 411.69,241.93 411.73,241.97 411.77,242.01 411.81,242.05 411.85,242.09 411.89,242.12 411.93,242.15 411.98,242.17 412.02,242.19
|
||||
412.06,242.22 412.10,242.24 412.14,242.25 412.18,242.27 412.22,242.28 412.26,242.30 412.30,242.31 412.35,242.32 412.39,242.33 412.43,242.34 412.47,242.34 412.51,242.35 412.55,242.36 412.59,242.36 412.63,242.37 412.68,242.37
|
||||
412.72,242.38 412.76,242.38 412.80,242.38 412.84,242.38 412.88,242.39 412.92,242.39 412.96,242.39 413.00,242.39 413.05,242.39 413.09,242.39 413.13,242.39 413.17,242.40 413.21,242.40 413.25,242.40 413.29,242.40 413.33,242.40
|
||||
413.38,242.40 413.42,242.40 413.46,242.40 413.50,242.40 413.54,242.40 413.58,242.40 413.62,242.40 413.66,242.40 413.70,242.40 413.75,242.40 413.79,242.40 413.83,242.40 413.87,242.40 413.91,242.40 413.95,242.40 413.99,242.40
|
||||
414.03,242.40 414.08,242.40 414.12,242.40 414.16,242.40 414.20,242.40 414.24,242.40 414.28,242.40 414.32,242.40 414.36,242.40 414.41,242.40 414.45,242.40 414.49,242.40 414.53,242.40 414.57,242.40 414.61,242.40 414.65,242.40
|
||||
414.69,242.40 414.73,242.40 414.78,242.40 414.82,242.40 414.86,242.40 414.90,242.40 414.94,242.40 414.98,242.40 415.02,242.40 415.06,242.40 415.11,242.40 415.15,242.40 415.19,242.40 415.23,242.40 415.27,242.40 415.31,242.40
|
||||
415.35,242.40 415.39,242.40 415.43,242.40 415.48,242.40 415.52,242.40 415.56,242.40 415.60,242.40 415.64,242.40 415.68,242.40 415.72,242.40 415.76,242.40 415.81,242.40 415.85,242.40 415.89,242.40 415.93,242.39 415.97,242.39
|
||||
416.01,242.39 416.05,242.39 416.09,242.39 416.13,242.39 416.18,242.39 416.22,242.38 416.26,242.38 416.30,242.38 416.34,242.38 416.38,242.37 416.42,242.37 416.46,242.36 416.51,242.36 416.55,242.35 416.59,242.34 416.63,242.34
|
||||
416.67,242.33 416.71,242.32 416.75,242.31 416.79,242.30 416.83,242.28 416.88,242.27 416.92,242.25 416.96,242.24 417.00,242.22 417.04,242.20 417.08,242.17 417.12,242.15 417.16,242.12 417.21,242.09 417.25,242.06 417.29,242.03
|
||||
417.33,241.99 417.37,241.95 417.41,241.91 417.45,241.87 417.49,241.82 417.53,241.77 417.58,241.72 417.62,241.66 417.66,241.60 417.70,241.54 417.74,241.47 417.78,241.40 417.82,241.33 417.86,241.26 417.91,241.18 417.95,241.10
|
||||
417.99,241.02 418.03,240.93 418.07,240.85 418.11,240.76 418.15,240.67 418.19,240.58 418.23,240.48 418.28,240.39 418.32,240.30 418.36,240.21 418.40,240.11 418.44,240.02 418.48,239.93 418.52,239.84 418.56,239.76 418.61,239.67
|
||||
418.65,239.59 418.69,239.51 418.73,239.44 418.77,239.37 418.81,239.30 418.85,239.24 418.89,239.19 418.93,239.14 418.98,239.10 419.02,239.06 419.06,239.03 419.10,239.00 419.14,238.99 419.18,238.98 419.22,238.97 419.26,238.97
|
||||
419.31,238.98 419.35,239.00 419.39,239.02 419.43,239.05 419.47,239.09 419.51,239.13 419.55,239.18 419.59,239.23 419.63,239.29 419.68,239.36 419.72,239.43 419.76,239.50 419.80,239.58 419.84,239.66 419.88,239.74 419.92,239.82
|
||||
419.96,239.91 420.01,240.00 420.05,240.09 420.09,240.19 420.13,240.28 420.17,240.37 420.21,240.47 420.25,240.56 420.29,240.65 420.33,240.74 420.38,240.83 420.42,240.92 420.46,241.00 420.50,241.08 420.54,241.16 420.58,241.24
|
||||
420.62,241.32 420.66,241.39 420.71,241.46 420.75,241.52 420.79,241.59 420.83,241.65 420.87,241.70 420.91,241.76 420.95,241.81 420.99,241.86 421.03,241.90 421.08,241.95 421.12,241.98 421.16,242.02 421.20,242.06 421.24,242.09
|
||||
421.28,242.12 421.32,242.14 421.36,242.17 421.41,242.19 421.45,242.21 421.49,242.23 421.53,242.25 421.57,242.27 421.61,242.28 421.65,242.29 421.69,242.31 421.74,242.32 421.78,242.33 421.82,242.34 421.86,242.34 421.90,242.35
|
||||
421.94,242.36 421.98,242.36 422.02,242.37 422.06,242.37 422.06,242.40 422.02,242.40 421.98,242.40 421.94,242.40 421.90,242.40 421.86,242.40 421.82,242.40 421.78,242.40 421.74,242.40 421.69,242.40 421.65,242.40 421.61,242.40
|
||||
421.57,242.40 421.53,242.40 421.49,242.40 421.45,242.40 421.41,242.40 421.36,242.40 421.32,242.40 421.28,242.40 421.24,242.40 421.20,242.40 421.16,242.40 421.12,242.40 421.08,242.40 421.03,242.40 420.99,242.40 420.95,242.40
|
||||
420.91,242.40 420.87,242.40 420.83,242.40 420.79,242.40 420.75,242.40 420.71,242.40 420.66,242.40 420.62,242.40 420.58,242.40 420.54,242.40 420.50,242.40 420.46,242.40 420.42,242.40 420.38,242.40 420.33,242.40 420.29,242.40
|
||||
420.25,242.40 420.21,242.40 420.17,242.40 420.13,242.40 420.09,242.40 420.05,242.40 420.01,242.40 419.96,242.40 419.92,242.40 419.88,242.40 419.84,242.40 419.80,242.40 419.76,242.40 419.72,242.40 419.68,242.40 419.63,242.40
|
||||
419.59,242.40 419.55,242.40 419.51,242.40 419.47,242.40 419.43,242.40 419.39,242.40 419.35,242.40 419.31,242.40 419.26,242.40 419.22,242.40 419.18,242.40 419.14,242.40 419.10,242.40 419.06,242.40 419.02,242.40 418.98,242.40
|
||||
418.93,242.40 418.89,242.40 418.85,242.40 418.81,242.40 418.77,242.40 418.73,242.40 418.69,242.40 418.65,242.40 418.61,242.40 418.56,242.40 418.52,242.40 418.48,242.40 418.44,242.40 418.40,242.40 418.36,242.40 418.32,242.40
|
||||
418.28,242.40 418.23,242.40 418.19,242.40 418.15,242.40 418.11,242.40 418.07,242.40 418.03,242.40 417.99,242.40 417.95,242.40 417.91,242.40 417.86,242.40 417.82,242.40 417.78,242.40 417.74,242.40 417.70,242.40 417.66,242.40
|
||||
417.62,242.40 417.58,242.40 417.53,242.40 417.49,242.40 417.45,242.40 417.41,242.40 417.37,242.40 417.33,242.40 417.29,242.40 417.25,242.40 417.21,242.40 417.16,242.40 417.12,242.40 417.08,242.40 417.04,242.40 417.00,242.40
|
||||
416.96,242.40 416.92,242.40 416.88,242.40 416.83,242.40 416.79,242.40 416.75,242.40 416.71,242.40 416.67,242.40 416.63,242.40 416.59,242.40 416.55,242.40 416.51,242.40 416.46,242.40 416.42,242.40 416.38,242.40 416.34,242.40
|
||||
416.30,242.40 416.26,242.40 416.22,242.40 416.18,242.40 416.13,242.40 416.09,242.40 416.05,242.40 416.01,242.40 415.97,242.40 415.93,242.40 415.89,242.40 415.85,242.40 415.81,242.40 415.76,242.40 415.72,242.40 415.68,242.40
|
||||
415.64,242.40 415.60,242.40 415.56,242.40 415.52,242.40 415.48,242.40 415.43,242.40 415.39,242.40 415.35,242.40 415.31,242.40 415.27,242.40 415.23,242.40 415.19,242.40 415.15,242.40 415.11,242.40 415.06,242.40 415.02,242.40
|
||||
414.98,242.40 414.94,242.40 414.90,242.40 414.86,242.40 414.82,242.40 414.78,242.40 414.73,242.40 414.69,242.40 414.65,242.40 414.61,242.40 414.57,242.40 414.53,242.40 414.49,242.40 414.45,242.40 414.41,242.40 414.36,242.40
|
||||
414.32,242.40 414.28,242.40 414.24,242.40 414.20,242.40 414.16,242.40 414.12,242.40 414.08,242.40 414.03,242.40 413.99,242.40 413.95,242.40 413.91,242.40 413.87,242.40 413.83,242.40 413.79,242.40 413.75,242.40 413.70,242.40
|
||||
413.66,242.40 413.62,242.40 413.58,242.40 413.54,242.40 413.50,242.40 413.46,242.40 413.42,242.40 413.38,242.40 413.33,242.40 413.29,242.40 413.25,242.40 413.21,242.40 413.17,242.40 413.13,242.40 413.09,242.40 413.05,242.40
|
||||
413.00,242.40 412.96,242.40 412.92,242.40 412.88,242.40 412.84,242.40 412.80,242.40 412.76,242.40 412.72,242.40 412.68,242.40 412.63,242.40 412.59,242.40 412.55,242.40 412.51,242.40 412.47,242.40 412.43,242.40 412.39,242.40
|
||||
412.35,242.40 412.30,242.40 412.26,242.40 412.22,242.40 412.18,242.40 412.14,242.40 412.10,242.40 412.06,242.40 412.02,242.40 411.98,242.40 411.93,242.40 411.89,242.40 411.85,242.40 411.81,242.40 411.77,242.40 411.73,242.40
|
||||
411.69,242.40 411.65,242.40 411.60,242.40 411.56,242.40 411.52,242.40 411.48,242.40 411.44,242.40 411.40,242.40 411.36,242.40 411.32,242.40 411.28,242.40 411.23,242.40 411.19,242.40 411.15,242.40 411.11,242.40 411.07,242.40
|
||||
411.03,242.40 410.99,242.40 410.95,242.40 410.90,242.40 410.86,242.40 410.82,242.40 410.78,242.40 410.74,242.40 410.70,242.40 410.66,242.40 410.62,242.40 410.58,242.40 410.53,242.40 410.49,242.40 410.45,242.40 410.41,242.40
|
||||
410.37,242.40 410.33,242.40 410.29,242.40 410.25,242.40 410.20,242.40 410.16,242.40 410.12,242.40 410.08,242.40 410.04,242.40 410.00,242.40 409.96,242.40 409.92,242.40 409.88,242.40 409.83,242.40 409.79,242.40 409.75,242.40
|
||||
409.71,242.40 409.67,242.40 409.63,242.40 409.59,242.40 409.55,242.40 409.50,242.40 409.46,242.40 409.42,242.40 409.38,242.40 409.34,242.40 409.30,242.40 409.26,242.40 409.22,242.40 409.18,242.40 409.13,242.40 409.09,242.40
|
||||
409.05,242.40 409.01,242.40 408.97,242.40 408.93,242.40 408.89,242.40 408.85,242.40 408.80,242.40 408.76,242.40 408.72,242.40 408.68,242.40 408.64,242.40 408.60,242.40 408.56,242.40 408.52,242.40 408.48,242.40 408.43,242.40
|
||||
408.39,242.40 408.35,242.40 408.31,242.40 408.27,242.40 408.23,242.40 408.19,242.40 408.15,242.40 408.10,242.40 408.06,242.40 408.02,242.40 407.98,242.40 407.94,242.40 407.90,242.40 407.86,242.40 407.82,242.40 407.78,242.40
|
||||
407.73,242.40 407.69,242.40 407.65,242.40 407.61,242.40 407.57,242.40 407.53,242.40 407.49,242.40 407.45,242.40 407.40,242.40 407.36,242.40 407.32,242.40 407.28,242.40 407.24,242.40 407.20,242.40 407.16,242.40 407.12,242.40
|
||||
407.08,242.40 407.03,242.40 406.99,242.40 406.95,242.40 406.91,242.40 406.87,242.40 406.83,242.40 406.79,242.40 406.75,242.40 406.70,242.40 406.66,242.40 406.62,242.40 406.58,242.40 406.54,242.40 406.50,242.40 406.46,242.40
|
||||
406.42,242.40 406.37,242.40 406.33,242.40 406.29,242.40 406.25,242.40 406.21,242.40 406.17,242.40 406.13,242.40 406.09,242.40 406.05,242.40 406.00,242.40 405.96,242.40 405.92,242.40 405.88,242.40 405.84,242.40 405.80,242.40
|
||||
405.76,242.40 405.72,242.40 405.67,242.40 405.63,242.40 405.59,242.40 405.55,242.40 405.51,242.40 405.47,242.40 405.43,242.40 405.39,242.40 405.35,242.40 405.30,242.40 405.26,242.40 405.22,242.40 405.18,242.40 405.14,242.40
|
||||
405.10,242.40 405.06,242.40 405.02,242.40 404.97,242.40 404.93,242.40 404.89,242.40 404.85,242.40 404.81,242.40 404.77,242.40 404.73,242.40 404.69,242.40 404.65,242.40 404.60,242.40 404.56,242.40 404.52,242.40 404.48,242.40
|
||||
404.44,242.40 404.40,242.40 404.36,242.40 404.32,242.40 404.27,242.40 404.23,242.40 404.19,242.40 404.15,242.40 404.11,242.40 404.07,242.40 404.03,242.40 403.99,242.40 403.95,242.40 403.90,242.40 403.86,242.40 403.82,242.40
|
||||
403.78,242.40 403.74,242.40 403.70,242.40 403.66,242.40 403.62,242.40 403.57,242.40 403.53,242.40 403.49,242.40 403.45,242.40 403.41,242.40 403.37,242.40 403.33,242.40 403.29,242.40 403.25,242.40 403.20,242.40 403.16,242.40
|
||||
403.12,242.40 403.08,242.40 403.04,242.40 403.00,242.40 402.96,242.40 402.92,242.40 402.87,242.40 402.83,242.40 402.79,242.40 402.75,242.40 402.71,242.40 402.67,242.40 402.63,242.40 402.59,242.40 402.55,242.40 402.50,242.40
|
||||
402.46,242.40 402.42,242.40 402.38,242.40 402.34,242.40 402.30,242.40 402.26,242.40 402.22,242.40 402.17,242.40 402.13,242.40 402.09,242.40 402.05,242.40 402.01,242.40 401.97,242.40 401.93,242.40 401.89,242.40 401.85,242.40
|
||||
401.80,242.40 401.76,242.40 401.72,242.40 401.68,242.40 401.64,242.40 401.60,242.40 401.56,242.40 401.52,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M406.31,242.40 L406.31,136.18 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '93.89,242.36 93.91,242.35 93.93,242.34 93.95,242.33 93.97,242.32 94.00,242.31 94.02,242.30 94.04,242.29 94.06,242.27 94.08,242.25 94.10,242.23 94.12,242.21 94.15,242.18 94.17,242.15 94.19,242.12 94.21,242.08
|
||||
94.23,242.04 94.25,242.00 94.28,241.94 94.30,241.89 94.32,241.82 94.34,241.75 94.36,241.67 94.38,241.58 94.41,241.48 94.43,241.37 94.45,241.25 94.47,241.12 94.49,240.97 94.51,240.80 94.54,240.62 94.56,240.42
|
||||
94.58,240.20 94.60,239.95 94.62,239.68 94.64,239.38 94.66,239.06 94.69,238.70 94.71,238.31 94.73,237.89 94.75,237.42 94.77,236.91 94.79,236.35 94.82,235.75 94.84,235.09 94.86,234.38 94.88,233.60 94.90,232.77
|
||||
94.92,231.86 94.95,230.88 94.97,229.83 94.99,228.69 95.01,227.48 95.03,226.17 95.05,224.77 95.08,223.27 95.10,221.67 95.12,219.96 95.14,218.15 95.16,216.22 95.18,214.18 95.20,212.01 95.23,209.73 95.25,207.31
|
||||
95.27,204.78 95.29,202.11 95.31,199.31 95.33,196.38 95.36,193.33 95.38,190.14 95.40,186.82 95.42,183.38 95.44,179.81 95.46,176.12 95.49,172.31 95.51,168.39 95.53,164.37 95.55,160.24 95.57,156.02 95.59,151.71
|
||||
95.62,147.33 95.64,142.88 95.66,138.37 95.68,133.81 95.70,129.22 95.72,124.60 95.74,119.97 95.77,115.34 95.79,110.73 95.81,106.14 95.83,101.59 95.85,97.10 95.87,92.67 95.90,88.33 95.92,84.08 95.94,79.94
|
||||
95.96,75.92 95.98,72.04 96.00,68.31 96.03,64.73 96.05,61.33 96.07,58.11 96.09,55.08 96.11,52.25 96.13,49.63 96.16,47.22 96.18,45.04 96.20,43.09 96.22,41.37 96.24,39.89 96.26,38.65 96.28,37.66
|
||||
96.31,36.90 96.33,36.39 96.35,36.11 96.37,36.08 96.39,36.28 96.41,36.71 96.44,37.37 96.46,38.24 96.48,39.34 96.50,40.64 96.52,42.13 96.54,43.82 96.57,45.69 96.59,47.73 96.61,49.93 96.63,52.28
|
||||
96.65,54.77 96.67,57.40 96.70,60.14 96.72,62.99 96.74,65.93 96.76,68.96 96.78,72.06 96.80,75.23 96.82,78.45 96.85,81.71 96.87,85.00 96.89,88.31 96.91,91.63 96.93,94.96 96.95,98.27 96.98,101.57
|
||||
97.00,104.85 97.02,108.10 97.04,111.31 97.06,114.47 97.08,117.58 97.11,120.64 97.13,123.64 97.15,126.57 97.17,129.44 97.19,132.23 97.21,134.95 97.24,137.60 97.26,140.17 97.28,142.66 97.30,145.08 97.32,147.42
|
||||
97.34,149.68 97.36,151.86 97.39,153.98 97.41,156.02 97.43,157.99 97.45,159.89 97.47,161.73 97.49,163.50 97.52,165.22 97.54,166.88 97.56,168.48 97.58,170.04 97.60,171.56 97.62,173.03 97.65,174.46 97.67,175.85
|
||||
97.69,177.22 97.71,178.55 97.73,179.86 97.75,181.14 97.78,182.40 97.80,183.65 97.82,184.87 97.84,186.09 97.86,187.28 97.88,188.47 97.90,189.65 97.93,190.82 97.95,191.98 97.97,193.13 97.99,194.27 98.01,195.41
|
||||
98.03,196.54 98.06,197.66 98.08,198.77 98.10,199.87 98.12,200.97 98.14,202.05 98.16,203.13 98.19,204.19 98.21,205.24 98.23,206.27 98.25,207.29 98.27,208.29 98.29,209.28 98.32,210.25 98.34,211.20 98.36,212.12
|
||||
98.38,213.03 98.40,213.91 98.42,214.78 98.44,215.62 98.47,216.43 98.49,217.22 98.51,217.99 98.53,218.73 98.55,219.45 98.57,220.14 98.60,220.81 98.62,221.45 98.64,222.07 98.66,222.66 98.68,223.23 98.70,223.78
|
||||
98.73,224.31 98.75,224.81 98.77,225.30 98.79,225.76 98.81,226.21 98.83,226.64 98.86,227.05 98.88,227.44 98.90,227.82 98.92,228.19 98.94,228.54 98.96,228.88 98.98,229.21 99.01,229.52 99.03,229.83 99.05,230.13
|
||||
99.07,230.42 99.09,230.71 99.11,230.99 99.14,231.26 99.16,231.53 99.18,231.79 99.20,232.05 99.22,232.30 99.24,232.56 99.27,232.81 99.29,233.05 99.31,233.30 99.33,233.54 99.35,233.79 99.37,234.03 99.40,234.27
|
||||
99.42,234.50 99.44,234.74 99.46,234.97 99.48,235.21 99.50,235.44 99.52,235.67 99.55,235.90 99.57,236.13 99.59,236.35 99.61,236.57 99.63,236.79 99.65,237.01 99.68,237.22 99.70,237.44 99.72,237.64 99.74,237.85
|
||||
99.76,238.05 99.78,238.25 99.81,238.44 99.83,238.63 99.85,238.81 99.87,238.99 99.89,239.17 99.91,239.34 99.94,239.50 99.96,239.66 99.98,239.81 100.00,239.96 100.02,240.11 100.04,240.25 100.06,240.38 100.09,240.51
|
||||
100.11,240.63 100.13,240.74 100.15,240.86 100.17,240.96 100.19,241.06 100.22,241.16 100.24,241.25 100.26,241.33 100.28,241.42 100.30,241.49 100.32,241.56 100.35,241.63 100.37,241.69 100.39,241.75 100.41,241.81 100.43,241.86
|
||||
100.45,241.91 100.48,241.95 100.50,241.99 100.52,242.03 100.54,242.06 100.56,242.10 100.58,242.13 100.60,242.15 100.63,242.18 100.65,242.20 100.67,242.22 100.69,242.24 100.71,242.26 100.73,242.27 100.76,242.29 100.78,242.30
|
||||
100.80,242.31 100.82,242.32 100.84,242.33 100.86,242.34 100.89,242.34 100.91,242.35 100.93,242.36 100.95,242.36 100.97,242.37 100.99,242.37 101.02,242.37 101.04,242.38 101.06,242.38 101.08,242.38 101.10,242.38 101.12,242.38
|
||||
101.14,242.39 101.17,242.39 101.19,242.39 101.21,242.39 101.23,242.39 101.25,242.39 101.27,242.39 101.30,242.38 101.32,242.38 101.34,242.38 101.36,242.38 101.38,242.38 101.40,242.37 101.43,242.37 101.45,242.37 101.47,242.36
|
||||
101.49,242.36 101.51,242.35 101.53,242.34 101.56,242.34 101.58,242.33 101.60,242.32 101.62,242.31 101.64,242.29 101.66,242.28 101.68,242.26 101.71,242.25 101.73,242.23 101.75,242.21 101.77,242.19 101.79,242.16 101.81,242.13
|
||||
101.84,242.10 101.86,242.07 101.88,242.03 101.90,242.00 101.92,241.95 101.94,241.91 101.97,241.86 101.99,241.80 102.01,241.75 102.03,241.69 102.05,241.62 102.07,241.55 102.10,241.47 102.12,241.39 102.14,241.31 102.16,241.22
|
||||
102.18,241.12 102.20,241.02 102.22,240.92 102.25,240.81 102.27,240.69 102.29,240.57 102.31,240.45 102.33,240.32 102.35,240.18 102.38,240.04 102.40,239.90 102.42,239.75 102.44,239.60 102.46,239.45 102.48,239.29 102.51,239.14
|
||||
102.53,238.98 102.55,238.81 102.57,238.65 102.59,238.49 102.61,238.33 102.64,238.17 102.66,238.01 102.68,237.85 102.70,237.70 102.72,237.55 102.74,237.40 102.76,237.26 102.79,237.13 102.81,237.00 102.83,236.88 102.85,236.76
|
||||
102.87,236.66 102.89,236.56 102.92,236.47 102.94,236.40 102.96,236.33 102.98,236.27 103.00,236.22 103.02,236.19 103.05,236.16 103.07,236.15 103.09,236.15 103.11,236.16 103.13,236.18 103.15,236.21 103.18,236.26 103.20,236.31
|
||||
103.22,236.38 103.24,236.45 103.26,236.54 103.28,236.63 103.30,236.73 103.33,236.85 103.35,236.97 103.37,237.09 103.39,237.23 103.41,237.36 103.43,237.51 103.46,237.66 103.48,237.81 103.50,237.97 103.52,238.12 103.54,238.28
|
||||
103.56,238.45 103.59,238.61 103.61,238.77 103.63,238.93 103.65,239.09 103.67,239.25 103.69,239.41 103.71,239.56 103.74,239.71 103.76,239.86 103.78,240.01 103.80,240.15 103.82,240.28 103.84,240.41 103.87,240.54 103.89,240.66
|
||||
103.91,240.78 103.93,240.89 103.95,241.00 103.97,241.10 104.00,241.19 104.02,241.28 104.04,241.37 104.06,241.45 104.08,241.53 104.10,241.60 104.13,241.67 104.15,241.73 104.17,241.79 104.19,241.84 104.21,241.89 104.23,241.94
|
||||
104.25,241.98 104.28,242.02 104.30,242.06 104.32,242.09 104.34,242.13 104.36,242.15 104.38,242.18 104.41,242.20 104.43,242.22 104.45,242.24 104.47,242.26 104.49,242.28 104.51,242.29 104.54,242.30 104.56,242.31 104.58,242.32
|
||||
104.60,242.33 104.62,242.34 104.64,242.35 104.67,242.36 104.67,242.40 104.64,242.40 104.62,242.40 104.60,242.40 104.58,242.40 104.56,242.40 104.54,242.40 104.51,242.40 104.49,242.40 104.47,242.40 104.45,242.40 104.43,242.40
|
||||
104.41,242.40 104.38,242.40 104.36,242.40 104.34,242.40 104.32,242.40 104.30,242.40 104.28,242.40 104.25,242.40 104.23,242.40 104.21,242.40 104.19,242.40 104.17,242.40 104.15,242.40 104.13,242.40 104.10,242.40 104.08,242.40
|
||||
104.06,242.40 104.04,242.40 104.02,242.40 104.00,242.40 103.97,242.40 103.95,242.40 103.93,242.40 103.91,242.40 103.89,242.40 103.87,242.40 103.84,242.40 103.82,242.40 103.80,242.40 103.78,242.40 103.76,242.40 103.74,242.40
|
||||
103.71,242.40 103.69,242.40 103.67,242.40 103.65,242.40 103.63,242.40 103.61,242.40 103.59,242.40 103.56,242.40 103.54,242.40 103.52,242.40 103.50,242.40 103.48,242.40 103.46,242.40 103.43,242.40 103.41,242.40 103.39,242.40
|
||||
103.37,242.40 103.35,242.40 103.33,242.40 103.30,242.40 103.28,242.40 103.26,242.40 103.24,242.40 103.22,242.40 103.20,242.40 103.18,242.40 103.15,242.40 103.13,242.40 103.11,242.40 103.09,242.40 103.07,242.40 103.05,242.40
|
||||
103.02,242.40 103.00,242.40 102.98,242.40 102.96,242.40 102.94,242.40 102.92,242.40 102.89,242.40 102.87,242.40 102.85,242.40 102.83,242.40 102.81,242.40 102.79,242.40 102.76,242.40 102.74,242.40 102.72,242.40 102.70,242.40
|
||||
102.68,242.40 102.66,242.40 102.64,242.40 102.61,242.40 102.59,242.40 102.57,242.40 102.55,242.40 102.53,242.40 102.51,242.40 102.48,242.40 102.46,242.40 102.44,242.40 102.42,242.40 102.40,242.40 102.38,242.40 102.35,242.40
|
||||
102.33,242.40 102.31,242.40 102.29,242.40 102.27,242.40 102.25,242.40 102.22,242.40 102.20,242.40 102.18,242.40 102.16,242.40 102.14,242.40 102.12,242.40 102.10,242.40 102.07,242.40 102.05,242.40 102.03,242.40 102.01,242.40
|
||||
101.99,242.40 101.97,242.40 101.94,242.40 101.92,242.40 101.90,242.40 101.88,242.40 101.86,242.40 101.84,242.40 101.81,242.40 101.79,242.40 101.77,242.40 101.75,242.40 101.73,242.40 101.71,242.40 101.68,242.40 101.66,242.40
|
||||
101.64,242.40 101.62,242.40 101.60,242.40 101.58,242.40 101.56,242.40 101.53,242.40 101.51,242.40 101.49,242.40 101.47,242.40 101.45,242.40 101.43,242.40 101.40,242.40 101.38,242.40 101.36,242.40 101.34,242.40 101.32,242.40
|
||||
101.30,242.40 101.27,242.40 101.25,242.40 101.23,242.40 101.21,242.40 101.19,242.40 101.17,242.40 101.14,242.40 101.12,242.40 101.10,242.40 101.08,242.40 101.06,242.40 101.04,242.40 101.02,242.40 100.99,242.40 100.97,242.40
|
||||
100.95,242.40 100.93,242.40 100.91,242.40 100.89,242.40 100.86,242.40 100.84,242.40 100.82,242.40 100.80,242.40 100.78,242.40 100.76,242.40 100.73,242.40 100.71,242.40 100.69,242.40 100.67,242.40 100.65,242.40 100.63,242.40
|
||||
100.60,242.40 100.58,242.40 100.56,242.40 100.54,242.40 100.52,242.40 100.50,242.40 100.48,242.40 100.45,242.40 100.43,242.40 100.41,242.40 100.39,242.40 100.37,242.40 100.35,242.40 100.32,242.40 100.30,242.40 100.28,242.40
|
||||
100.26,242.40 100.24,242.40 100.22,242.40 100.19,242.40 100.17,242.40 100.15,242.40 100.13,242.40 100.11,242.40 100.09,242.40 100.06,242.40 100.04,242.40 100.02,242.40 100.00,242.40 99.98,242.40 99.96,242.40 99.94,242.40
|
||||
99.91,242.40 99.89,242.40 99.87,242.40 99.85,242.40 99.83,242.40 99.81,242.40 99.78,242.40 99.76,242.40 99.74,242.40 99.72,242.40 99.70,242.40 99.68,242.40 99.65,242.40 99.63,242.40 99.61,242.40 99.59,242.40
|
||||
99.57,242.40 99.55,242.40 99.52,242.40 99.50,242.40 99.48,242.40 99.46,242.40 99.44,242.40 99.42,242.40 99.40,242.40 99.37,242.40 99.35,242.40 99.33,242.40 99.31,242.40 99.29,242.40 99.27,242.40 99.24,242.40
|
||||
99.22,242.40 99.20,242.40 99.18,242.40 99.16,242.40 99.14,242.40 99.11,242.40 99.09,242.40 99.07,242.40 99.05,242.40 99.03,242.40 99.01,242.40 98.98,242.40 98.96,242.40 98.94,242.40 98.92,242.40 98.90,242.40
|
||||
98.88,242.40 98.86,242.40 98.83,242.40 98.81,242.40 98.79,242.40 98.77,242.40 98.75,242.40 98.73,242.40 98.70,242.40 98.68,242.40 98.66,242.40 98.64,242.40 98.62,242.40 98.60,242.40 98.57,242.40 98.55,242.40
|
||||
98.53,242.40 98.51,242.40 98.49,242.40 98.47,242.40 98.44,242.40 98.42,242.40 98.40,242.40 98.38,242.40 98.36,242.40 98.34,242.40 98.32,242.40 98.29,242.40 98.27,242.40 98.25,242.40 98.23,242.40 98.21,242.40
|
||||
98.19,242.40 98.16,242.40 98.14,242.40 98.12,242.40 98.10,242.40 98.08,242.40 98.06,242.40 98.03,242.40 98.01,242.40 97.99,242.40 97.97,242.40 97.95,242.40 97.93,242.40 97.90,242.40 97.88,242.40 97.86,242.40
|
||||
97.84,242.40 97.82,242.40 97.80,242.40 97.78,242.40 97.75,242.40 97.73,242.40 97.71,242.40 97.69,242.40 97.67,242.40 97.65,242.40 97.62,242.40 97.60,242.40 97.58,242.40 97.56,242.40 97.54,242.40 97.52,242.40
|
||||
97.49,242.40 97.47,242.40 97.45,242.40 97.43,242.40 97.41,242.40 97.39,242.40 97.36,242.40 97.34,242.40 97.32,242.40 97.30,242.40 97.28,242.40 97.26,242.40 97.24,242.40 97.21,242.40 97.19,242.40 97.17,242.40
|
||||
97.15,242.40 97.13,242.40 97.11,242.40 97.08,242.40 97.06,242.40 97.04,242.40 97.02,242.40 97.00,242.40 96.98,242.40 96.95,242.40 96.93,242.40 96.91,242.40 96.89,242.40 96.87,242.40 96.85,242.40 96.82,242.40
|
||||
96.80,242.40 96.78,242.40 96.76,242.40 96.74,242.40 96.72,242.40 96.70,242.40 96.67,242.40 96.65,242.40 96.63,242.40 96.61,242.40 96.59,242.40 96.57,242.40 96.54,242.40 96.52,242.40 96.50,242.40 96.48,242.40
|
||||
96.46,242.40 96.44,242.40 96.41,242.40 96.39,242.40 96.37,242.40 96.35,242.40 96.33,242.40 96.31,242.40 96.28,242.40 96.26,242.40 96.24,242.40 96.22,242.40 96.20,242.40 96.18,242.40 96.16,242.40 96.13,242.40
|
||||
96.11,242.40 96.09,242.40 96.07,242.40 96.05,242.40 96.03,242.40 96.00,242.40 95.98,242.40 95.96,242.40 95.94,242.40 95.92,242.40 95.90,242.40 95.87,242.40 95.85,242.40 95.83,242.40 95.81,242.40 95.79,242.40
|
||||
95.77,242.40 95.74,242.40 95.72,242.40 95.70,242.40 95.68,242.40 95.66,242.40 95.64,242.40 95.62,242.40 95.59,242.40 95.57,242.40 95.55,242.40 95.53,242.40 95.51,242.40 95.49,242.40 95.46,242.40 95.44,242.40
|
||||
95.42,242.40 95.40,242.40 95.38,242.40 95.36,242.40 95.33,242.40 95.31,242.40 95.29,242.40 95.27,242.40 95.25,242.40 95.23,242.40 95.20,242.40 95.18,242.40 95.16,242.40 95.14,242.40 95.12,242.40 95.10,242.40
|
||||
95.08,242.40 95.05,242.40 95.03,242.40 95.01,242.40 94.99,242.40 94.97,242.40 94.95,242.40 94.92,242.40 94.90,242.40 94.88,242.40 94.86,242.40 94.84,242.40 94.82,242.40 94.79,242.40 94.77,242.40 94.75,242.40
|
||||
94.73,242.40 94.71,242.40 94.69,242.40 94.66,242.40 94.64,242.40 94.62,242.40 94.60,242.40 94.58,242.40 94.56,242.40 94.54,242.40 94.51,242.40 94.49,242.40 94.47,242.40 94.45,242.40 94.43,242.40 94.41,242.40
|
||||
94.38,242.40 94.36,242.40 94.34,242.40 94.32,242.40 94.30,242.40 94.28,242.40 94.25,242.40 94.23,242.40 94.21,242.40 94.19,242.40 94.17,242.40 94.15,242.40 94.12,242.40 94.10,242.40 94.08,242.40 94.06,242.40
|
||||
94.04,242.40 94.02,242.40 94.00,242.40 93.97,242.40 93.95,242.40 93.93,242.40 93.91,242.40 93.89,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M96.82,242.40 L96.82,77.48 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,130.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,291.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 40 KiB |
@@ -0,0 +1,381 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L424.82,224.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L81.53,224.40 '/> <g transform="translate(64.14,228.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,203.76 L424.82,203.76 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,203.76 L81.53,203.76 '/> <g transform="translate(64.14,207.66)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,183.12 L424.82,183.12 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,183.12 L81.53,183.12 '/> <g transform="translate(64.14,187.02)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,162.48 L424.82,162.48 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,162.48 L81.53,162.48 '/> <g transform="translate(64.14,166.38)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,141.84 L424.82,141.84 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,141.84 L81.53,141.84 '/> <g transform="translate(64.14,145.74)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,121.20 L424.82,121.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,121.20 L81.53,121.20 '/> <g transform="translate(64.14,125.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,100.57 L424.82,100.57 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,100.57 L81.53,100.57 '/> <g transform="translate(64.14,104.47)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,79.93 L424.82,79.93 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,79.93 L81.53,79.93 '/> <g transform="translate(64.14,83.83)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 140</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,59.29 L424.82,59.29 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,59.29 L81.53,59.29 '/> <g transform="translate(64.14,63.19)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 160</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,38.65 L424.82,38.65 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,38.65 L81.53,38.65 '/> <g transform="translate(64.14,42.55)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 180</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,18.01 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L72.53,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L72.53,215.40 '/> <g transform="translate(72.53,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M107.76,224.40 L107.76,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M107.76,224.40 L107.76,215.40 '/> <g transform="translate(107.76,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M142.99,224.40 L142.99,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M142.99,224.40 L142.99,215.40 '/> <g transform="translate(142.99,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M178.22,224.40 L178.22,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M178.22,224.40 L178.22,215.40 '/> <g transform="translate(178.22,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M213.45,224.40 L213.45,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M213.45,224.40 L213.45,215.40 '/> <g transform="translate(213.45,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M248.68,224.40 L248.68,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M248.68,224.40 L248.68,215.40 '/> <g transform="translate(248.68,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M283.90,224.40 L283.90,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M283.90,224.40 L283.90,215.40 '/> <g transform="translate(283.90,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M319.13,224.40 L319.13,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M319.13,224.40 L319.13,215.40 '/> <g transform="translate(319.13,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M354.36,224.40 L354.36,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M354.36,224.40 L354.36,215.40 '/> <g transform="translate(354.36,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M389.59,224.40 L389.59,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M389.59,224.40 L389.59,215.40 '/> <g transform="translate(389.59,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M424.82,224.40 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,224.40 L424.82,215.40 '/> <g transform="translate(424.82,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,33.69 407.21,33.60 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,119.65 407.21,119.51 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M72.53,224.40 L407.21,33.64 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M72.53,224.40 L407.21,119.58 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,121.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,273.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 26 KiB |
76
benchmarks/babyjubjub/compute_shared_point/report/slope.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:slope
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="426" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,426 86,426 "/>
|
||||
<text x="77" y="355" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,355 86,355 "/>
|
||||
<text x="77" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,285 86,285 "/>
|
||||
<text x="77" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,214 86,214 "/>
|
||||
<text x="77" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,144 86,144 "/>
|
||||
<text x="77" y="74" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,74 86,74 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="199" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="199,473 199,478 "/>
|
||||
<text x="326" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.45
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="326,473 326,478 "/>
|
||||
<text x="454" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="454,473 454,478 "/>
|
||||
<text x="581" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="581,473 581,478 "/>
|
||||
<text x="708" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="708,473 708,478 "/>
|
||||
<text x="835" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.65
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="835,473 835,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,470 92,470 93,469 95,468 97,468 98,467 100,466 102,465 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,459 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,444 144,442 146,441 147,440 149,439 151,437 153,436 154,435 156,434 158,432 159,431 161,430 163,428 164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,407 188,406 190,404 191,402 193,400 195,398 197,397 198,395 200,393 202,391 203,389 205,387 207,385 208,383 210,381 212,379 214,377 215,375 217,373 219,371 220,369 222,367 224,365 225,364 227,362 229,360 230,358 232,356 234,354 236,352 237,350 239,348 241,346 242,344 244,342 246,340 247,338 249,336 251,334 252,332 254,330 256,328 258,326 259,324 261,322 263,319 264,317 266,315 268,313 269,310 271,308 273,306 274,303 276,301 278,299 280,296 281,294 283,291 285,289 286,286 288,284 290,281 291,279 293,276 295,273 296,271 298,268 300,266 302,263 303,260 305,258 307,255 308,253 310,250 312,247 313,245 315,242 317,239 318,237 320,234 322,232 324,229 325,226 327,224 329,221 330,218 332,216 334,213 335,210 337,208 339,205 341,202 342,200 344,197 346,194 347,192 349,189 351,187 352,184 354,182 356,180 357,177 359,175 361,173 363,171 364,168 366,166 368,164 369,162 371,160 373,158 374,157 376,155 378,153 379,151 381,149 383,147 385,146 386,144 388,142 390,141 391,139 393,138 395,136 396,135 398,133 400,132 401,130 403,129 405,128 407,127 408,125 410,124 412,123 413,122 415,121 417,120 418,119 420,118 422,117 423,116 425,115 427,114 429,113 430,112 432,111 434,110 435,109 437,109 439,108 440,107 442,106 444,105 445,104 447,103 449,102 451,102 452,101 454,100 456,99 457,99 459,98 461,97 462,97 464,96 466,96 468,95 469,95 471,95 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,96 495,96 496,97 498,97 500,98 501,99 503,100 505,101 506,101 508,102 510,103 512,104 513,105 515,107 517,108 518,109 520,110 522,111 523,112 525,114 527,115 528,116 530,117 532,118 534,119 535,120 537,121 539,123 540,124 542,125 544,126 545,127 547,127 549,128 550,129 552,130 554,131 556,132 557,133 559,134 561,135 562,136 564,137 566,139 567,140 569,141 571,142 573,144 574,145 576,147 578,148 579,150 581,151 583,153 584,155 586,157 588,159 589,160 591,162 593,164 595,166 596,169 598,171 600,173 601,175 603,177 605,179 606,182 608,184 610,186 611,188 613,190 615,193 617,195 618,197 620,199 622,201 623,203 625,205 627,207 628,209 630,211 632,213 633,215 635,217 637,219 639,220 640,222 642,224 644,226 645,228 647,230 649,232 650,234 652,236 654,238 655,240 657,242 659,244 661,246 662,249 664,251 666,253 667,255 669,257 671,259 672,261 674,264 676,266 677,268 679,270 681,273 683,275 684,277 686,280 688,282 689,284 691,287 693,289 694,291 696,294 698,296 700,298 701,301 703,303 705,305 706,307 708,309 710,311 711,313 713,315 715,317 716,319 718,321 720,323 722,324 723,326 725,328 727,330 728,332 730,333 732,335 733,337 735,339 737,340 738,342 740,344 742,346 744,348 745,349 747,351 749,353 750,355 752,356 754,358 755,360 757,362 759,363 760,365 762,367 764,369 766,370 767,372 769,374 771,375 772,377 774,379 776,380 777,382 779,384 781,385 782,387 784,388 786,390 788,392 789,393 791,395 793,396 794,398 796,400 798,401 799,403 801,404 803,406 804,407 806,409 808,410 810,412 811,413 813,414 815,416 816,417 818,418 820,420 821,421 823,422 825,423 827,425 828,426 830,427 832,428 833,429 835,430 837,432 838,433 840,434 842,435 843,436 845,437 847,438 849,439 850,440 852,441 854,442 855,443 857,444 859,445 860,446 862,447 864,448 865,449 867,450 869,450 871,451 872,452 874,453 876,453 877,454 879,455 881,455 882,456 884,457 886,457 887,458 889,459 891,459 893,460 894,460 896,461 898,461 899,462 901,463 903,463 904,464 906,464 908,465 909,465 911,466 913,466 915,467 916,468 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,407 188,406 190,404 191,402 193,400 195,398 197,397 198,395 200,393 202,391 203,389 205,387 207,385 208,383 210,381 212,379 214,377 215,375 217,373 219,371 220,369 222,367 224,365 225,364 227,362 229,360 230,358 232,356 234,354 236,352 237,350 239,348 241,346 242,344 244,342 246,340 247,338 249,336 251,334 252,332 254,330 256,328 258,326 259,324 261,322 263,319 264,317 266,315 268,313 269,310 271,308 273,306 274,303 276,301 278,299 280,296 281,294 283,291 285,289 286,286 288,284 290,281 291,279 293,276 295,273 296,271 298,268 300,266 302,263 303,260 305,258 307,255 308,253 310,250 312,247 313,245 315,242 317,239 318,237 320,234 322,232 324,229 325,226 327,224 329,221 330,218 332,216 334,213 335,210 337,208 339,205 341,202 342,200 344,197 346,194 347,192 349,189 351,187 352,184 354,182 356,180 357,177 359,175 361,173 363,171 364,168 366,166 368,164 369,162 371,160 373,158 374,157 376,155 378,153 379,151 381,149 383,147 385,146 386,144 388,142 390,141 391,139 393,138 395,136 396,135 398,133 400,132 401,130 403,129 405,128 407,127 408,125 410,124 412,123 413,122 415,121 417,120 418,119 420,118 422,117 423,116 425,115 427,114 429,113 430,112 432,111 434,110 435,109 437,109 439,108 440,107 442,106 444,105 445,104 447,103 449,102 451,102 452,101 454,100 456,99 457,99 459,98 461,97 462,97 464,96 466,96 468,95 469,95 471,95 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,96 495,96 496,97 498,97 500,98 501,99 503,100 505,101 506,101 508,102 510,103 512,104 513,105 515,107 517,108 518,109 520,110 522,111 523,112 525,114 527,115 528,116 530,117 532,118 534,119 535,120 537,121 539,123 540,124 542,125 544,126 545,127 547,127 549,128 550,129 552,130 554,131 556,132 557,133 559,134 561,135 562,136 564,137 566,139 567,140 569,141 571,142 573,144 574,145 576,147 578,148 579,150 581,151 583,153 584,155 586,157 588,159 589,160 591,162 593,164 595,166 596,169 598,171 600,173 601,175 603,177 605,179 606,182 608,184 610,186 611,188 613,190 615,193 617,195 618,197 620,199 622,201 623,203 625,205 627,207 628,209 630,211 632,213 633,215 635,217 637,219 639,220 640,222 642,224 644,226 645,228 647,230 649,232 650,234 652,236 654,238 655,240 657,242 659,244 661,246 662,249 664,251 666,253 667,255 669,257 671,259 672,261 674,264 676,266 677,268 679,270 681,273 683,275 684,277 686,280 688,282 689,284 691,287 693,289 694,291 696,294 698,296 700,298 701,301 703,303 705,305 706,307 708,309 710,311 711,313 713,315 715,317 716,319 718,321 720,323 722,324 723,326 725,328 727,330 728,332 730,333 732,335 733,337 735,339 737,340 738,342 740,344 742,346 744,348 745,349 747,351 749,353 750,355 752,356 754,358 755,360 757,362 759,363 760,365 762,367 764,369 766,370 767,372 769,374 771,375 772,377 774,379 776,380 777,382 779,384 781,385 782,387 784,388 786,390 788,392 789,393 791,395 793,396 794,398 796,400 798,401 799,403 801,404 803,406 804,407 806,409 808,410 810,412 811,413 813,414 815,416 816,417 818,418 820,420 821,421 823,422 825,423 827,425 828,426 830,427 832,428 833,429 835,430 837,432 838,433 840,434 842,435 843,436 845,437 847,438 849,439 850,440 852,441 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="491,473 491,95 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,76 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/compute_shared_point:typical
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="426" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,426 86,426 "/>
|
||||
<text x="77" y="355" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,355 86,355 "/>
|
||||
<text x="77" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,285 86,285 "/>
|
||||
<text x="77" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,214 86,214 "/>
|
||||
<text x="77" y="144" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,144 86,144 "/>
|
||||
<text x="77" y="74" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,74 86,74 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="199" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="199,473 199,478 "/>
|
||||
<text x="326" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.45
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="326,473 326,478 "/>
|
||||
<text x="454" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="454,473 454,478 "/>
|
||||
<text x="581" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="581,473 581,478 "/>
|
||||
<text x="708" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="708,473 708,478 "/>
|
||||
<text x="835" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52.65
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="835,473 835,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,470 92,470 93,469 95,468 97,468 98,467 100,466 102,465 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,459 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,452 131,451 132,450 134,449 136,448 137,447 139,446 141,445 142,444 144,442 146,441 147,440 149,439 151,437 153,436 154,435 156,434 158,432 159,431 161,430 163,428 164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,407 188,406 190,404 191,402 193,400 195,398 197,397 198,395 200,393 202,391 203,389 205,387 207,385 208,383 210,381 212,379 214,377 215,375 217,373 219,371 220,369 222,367 224,365 225,364 227,362 229,360 230,358 232,356 234,354 236,352 237,350 239,348 241,346 242,344 244,342 246,340 247,338 249,336 251,334 252,332 254,330 256,328 258,326 259,324 261,322 263,319 264,317 266,315 268,313 269,310 271,308 273,306 274,303 276,301 278,299 280,296 281,294 283,291 285,289 286,286 288,284 290,281 291,279 293,276 295,273 296,271 298,268 300,266 302,263 303,260 305,258 307,255 308,253 310,250 312,247 313,245 315,242 317,239 318,237 320,234 322,232 324,229 325,226 327,224 329,221 330,218 332,216 334,213 335,210 337,208 339,205 341,202 342,200 344,197 346,194 347,192 349,189 351,187 352,184 354,182 356,180 357,177 359,175 361,173 363,171 364,168 366,166 368,164 369,162 371,160 373,158 374,157 376,155 378,153 379,151 381,149 383,147 385,146 386,144 388,142 390,141 391,139 393,138 395,136 396,135 398,133 400,132 401,130 403,129 405,128 407,127 408,125 410,124 412,123 413,122 415,121 417,120 418,119 420,118 422,117 423,116 425,115 427,114 429,113 430,112 432,111 434,110 435,109 437,109 439,108 440,107 442,106 444,105 445,104 447,103 449,102 451,102 452,101 454,100 456,99 457,99 459,98 461,97 462,97 464,96 466,96 468,95 469,95 471,95 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,96 495,96 496,97 498,97 500,98 501,99 503,100 505,101 506,101 508,102 510,103 512,104 513,105 515,107 517,108 518,109 520,110 522,111 523,112 525,114 527,115 528,116 530,117 532,118 534,119 535,120 537,121 539,123 540,124 542,125 544,126 545,127 547,127 549,128 550,129 552,130 554,131 556,132 557,133 559,134 561,135 562,136 564,137 566,139 567,140 569,141 571,142 573,144 574,145 576,147 578,148 579,150 581,151 583,153 584,155 586,157 588,159 589,160 591,162 593,164 595,166 596,169 598,171 600,173 601,175 603,177 605,179 606,182 608,184 610,186 611,188 613,190 615,193 617,195 618,197 620,199 622,201 623,203 625,205 627,207 628,209 630,211 632,213 633,215 635,217 637,219 639,220 640,222 642,224 644,226 645,228 647,230 649,232 650,234 652,236 654,238 655,240 657,242 659,244 661,246 662,249 664,251 666,253 667,255 669,257 671,259 672,261 674,264 676,266 677,268 679,270 681,273 683,275 684,277 686,280 688,282 689,284 691,287 693,289 694,291 696,294 698,296 700,298 701,301 703,303 705,305 706,307 708,309 710,311 711,313 713,315 715,317 716,319 718,321 720,323 722,324 723,326 725,328 727,330 728,332 730,333 732,335 733,337 735,339 737,340 738,342 740,344 742,346 744,348 745,349 747,351 749,353 750,355 752,356 754,358 755,360 757,362 759,363 760,365 762,367 764,369 766,370 767,372 769,374 771,375 772,377 774,379 776,380 777,382 779,384 781,385 782,387 784,388 786,390 788,392 789,393 791,395 793,396 794,398 796,400 798,401 799,403 801,404 803,406 804,407 806,409 808,410 810,412 811,413 813,414 815,416 816,417 818,418 820,420 821,421 823,422 825,423 827,425 828,426 830,427 832,428 833,429 835,430 837,432 838,433 840,434 842,435 843,436 845,437 847,438 849,439 850,440 852,441 854,442 855,443 857,444 859,445 860,446 862,447 864,448 865,449 867,450 869,450 871,451 872,452 874,453 876,453 877,454 879,455 881,455 882,456 884,457 886,457 887,458 889,459 891,459 893,460 894,460 896,461 898,461 899,462 901,463 903,463 904,464 906,464 908,465 909,465 911,466 913,466 915,467 916,468 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,407 188,406 190,404 191,402 193,400 195,398 197,397 198,395 200,393 202,391 203,389 205,387 207,385 208,383 210,381 212,379 214,377 215,375 217,373 219,371 220,369 222,367 224,365 225,364 227,362 229,360 230,358 232,356 234,354 236,352 237,350 239,348 241,346 242,344 244,342 246,340 247,338 249,336 251,334 252,332 254,330 256,328 258,326 259,324 261,322 263,319 264,317 266,315 268,313 269,310 271,308 273,306 274,303 276,301 278,299 280,296 281,294 283,291 285,289 286,286 288,284 290,281 291,279 293,276 295,273 296,271 298,268 300,266 302,263 303,260 305,258 307,255 308,253 310,250 312,247 313,245 315,242 317,239 318,237 320,234 322,232 324,229 325,226 327,224 329,221 330,218 332,216 334,213 335,210 337,208 339,205 341,202 342,200 344,197 346,194 347,192 349,189 351,187 352,184 354,182 356,180 357,177 359,175 361,173 363,171 364,168 366,166 368,164 369,162 371,160 373,158 374,157 376,155 378,153 379,151 381,149 383,147 385,146 386,144 388,142 390,141 391,139 393,138 395,136 396,135 398,133 400,132 401,130 403,129 405,128 407,127 408,125 410,124 412,123 413,122 415,121 417,120 418,119 420,118 422,117 423,116 425,115 427,114 429,113 430,112 432,111 434,110 435,109 437,109 439,108 440,107 442,106 444,105 445,104 447,103 449,102 451,102 452,101 454,100 456,99 457,99 459,98 461,97 462,97 464,96 466,96 468,95 469,95 471,95 473,94 474,94 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,95 491,95 493,96 495,96 496,97 498,97 500,98 501,99 503,100 505,101 506,101 508,102 510,103 512,104 513,105 515,107 517,108 518,109 520,110 522,111 523,112 525,114 527,115 528,116 530,117 532,118 534,119 535,120 537,121 539,123 540,124 542,125 544,126 545,127 547,127 549,128 550,129 552,130 554,131 556,132 557,133 559,134 561,135 562,136 564,137 566,139 567,140 569,141 571,142 573,144 574,145 576,147 578,148 579,150 581,151 583,153 584,155 586,157 588,159 589,160 591,162 593,164 595,166 596,169 598,171 600,173 601,175 603,177 605,179 606,182 608,184 610,186 611,188 613,190 615,193 617,195 618,197 620,199 622,201 623,203 625,205 627,207 628,209 630,211 632,213 633,215 635,217 637,219 639,220 640,222 642,224 644,226 645,228 647,230 649,232 650,234 652,236 654,238 655,240 657,242 659,244 661,246 662,249 664,251 666,253 667,255 669,257 671,259 672,261 674,264 676,266 677,268 679,270 681,273 683,275 684,277 686,280 688,282 689,284 691,287 693,289 694,291 696,294 698,296 700,298 701,301 703,303 705,305 706,307 708,309 710,311 711,313 713,315 715,317 716,319 718,321 720,323 722,324 723,326 725,328 727,330 728,332 730,333 732,335 733,337 735,339 737,340 738,342 740,344 742,346 744,348 745,349 747,351 749,353 750,355 752,356 754,358 755,360 757,362 759,363 760,365 762,367 764,369 766,370 767,372 769,374 771,375 772,377 774,379 776,380 777,382 779,384 781,385 782,387 784,388 786,390 788,392 789,393 791,395 793,396 794,398 796,400 798,401 799,403 801,404 803,406 804,407 806,409 808,410 810,412 811,413 813,414 815,416 816,417 818,418 820,420 821,421 823,422 825,423 827,425 828,426 830,427 832,428 833,429 835,430 837,432 838,433 840,434 842,435 843,436 845,437 847,438 849,439 850,440 852,441 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="491,473 491,95 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"derive_public_key","value_str":null,"throughput":null,"full_id":"babyjubjub/derive_public_key","directory_name":"babyjubjub/derive_public_key","title":"babyjubjub/derive_public_key"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53557.98005681338,"upper_bound":53910.059261367285},"point_estimate":53732.44038706946,"standard_error":89.88125384337248},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53283.294220490985,"upper_bound":53988.134502923975},"point_estimate":53825.06446348429,"standard_error":202.66574987008485},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":842.7328121190146,"upper_bound":1260.2670485944307},"point_estimate":1079.405234292048,"standard_error":109.32329964955741},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53061.475020976846,"upper_bound":53339.59102109891},"point_estimate":53187.80631345617,"standard_error":71.02192751776165},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":789.3856553199389,"upper_bound":1005.4682076387825},"point_estimate":903.2631443680943,"standard_error":55.337328162562464}}
|
||||
1
benchmarks/babyjubjub/derive_public_key/base/sample.json
Normal file
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[19.0,38.0,57.0,76.0,95.0,114.0,133.0,152.0,171.0,190.0,209.0,228.0,247.0,266.0,285.0,304.0,323.0,342.0,361.0,380.0,399.0,418.0,437.0,456.0,475.0,494.0,513.0,532.0,551.0,570.0,589.0,608.0,627.0,646.0,665.0,684.0,703.0,722.0,741.0,760.0,779.0,798.0,817.0,836.0,855.0,874.0,893.0,912.0,931.0,950.0,969.0,988.0,1007.0,1026.0,1045.0,1064.0,1083.0,1102.0,1121.0,1140.0,1159.0,1178.0,1197.0,1216.0,1235.0,1254.0,1273.0,1292.0,1311.0,1330.0,1349.0,1368.0,1387.0,1406.0,1425.0,1444.0,1463.0,1482.0,1501.0,1520.0,1539.0,1558.0,1577.0,1596.0,1615.0,1634.0,1653.0,1672.0,1691.0,1710.0,1729.0,1748.0,1767.0,1786.0,1805.0,1824.0,1843.0,1862.0,1881.0,1900.0],"times":[1061867.0,2123317.0,3154143.0,4140551.0,5015461.0,5999912.0,7201737.0,8192729.0,9231971.0,10295504.0,11316496.0,12362738.0,13537438.0,14878802.0,15381340.0,16410249.0,17527907.0,18470608.0,19361642.0,21112963.0,21582668.0,22541910.0,23394154.0,24849809.0,26021008.0,26371172.0,27686203.0,29031277.0,30339725.0,30877429.0,32131920.0,33047038.0,34336195.0,35237479.0,36084223.0,36964382.0,38717077.0,39246948.0,40924228.0,42469632.0,42061968.0,43030128.0,43988704.0,45135861.0,46113145.0,47169387.0,48408169.0,49073248.0,50717277.0,51693103.0,52983176.0,53810086.0,54767080.0,56138818.0,56996853.0,56932229.0,57185769.0,58073470.0,60057830.0,60287454.0,60870824.0,62717227.0,62866558.0,64213881.0,65234248.0,65866036.0,67641814.0,68371433.0,70195294.0,70898956.0,71488701.0,71734782.0,73676975.0,74801591.0,75512961.0,76091707.0,77292864.0,78416481.0,78921102.0,80021135.0,81716663.0,84856806.0,83989605.0,83806773.0,84998264.0,86750500.0,88083073.0,89847518.0,89425938.0,90050766.0,90906385.0,92647872.0,93533031.0,94746397.0,95419684.0,96117469.0,97255252.0,98734824.0,99076905.0,100057731.0]}
|
||||
1
benchmarks/babyjubjub/derive_public_key/base/tukey.json
Normal file
@@ -0,0 +1 @@
|
||||
[48524.79492499869,50715.09088355198,56555.88010636074,58746.17606491402]
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.4497765684031055,"upper_bound":-0.44891020427764855},"point_estimate":-0.4493424560863002,"standard_error":0.00022053211154038414},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.44951660811983146,"upper_bound":-0.4490485973985523},"point_estimate":-0.44930225881540875,"standard_error":0.00012127657484477723}}
|
||||
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"derive_public_key","value_str":null,"throughput":null,"full_id":"babyjubjub/derive_public_key","directory_name":"babyjubjub/derive_public_key","title":"babyjubjub/derive_public_key"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53557.98005681338,"upper_bound":53910.059261367285},"point_estimate":53732.44038706946,"standard_error":89.88125384337248},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53283.294220490985,"upper_bound":53988.134502923975},"point_estimate":53825.06446348429,"standard_error":202.66574987008485},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":842.7328121190146,"upper_bound":1260.2670485944307},"point_estimate":1079.405234292048,"standard_error":109.32329964955741},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":53061.475020976846,"upper_bound":53339.59102109891},"point_estimate":53187.80631345617,"standard_error":71.02192751776165},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":789.3856553199389,"upper_bound":1005.4682076387825},"point_estimate":903.2631443680943,"standard_error":55.337328162562464}}
|
||||
1
benchmarks/babyjubjub/derive_public_key/new/sample.json
Normal file
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[19.0,38.0,57.0,76.0,95.0,114.0,133.0,152.0,171.0,190.0,209.0,228.0,247.0,266.0,285.0,304.0,323.0,342.0,361.0,380.0,399.0,418.0,437.0,456.0,475.0,494.0,513.0,532.0,551.0,570.0,589.0,608.0,627.0,646.0,665.0,684.0,703.0,722.0,741.0,760.0,779.0,798.0,817.0,836.0,855.0,874.0,893.0,912.0,931.0,950.0,969.0,988.0,1007.0,1026.0,1045.0,1064.0,1083.0,1102.0,1121.0,1140.0,1159.0,1178.0,1197.0,1216.0,1235.0,1254.0,1273.0,1292.0,1311.0,1330.0,1349.0,1368.0,1387.0,1406.0,1425.0,1444.0,1463.0,1482.0,1501.0,1520.0,1539.0,1558.0,1577.0,1596.0,1615.0,1634.0,1653.0,1672.0,1691.0,1710.0,1729.0,1748.0,1767.0,1786.0,1805.0,1824.0,1843.0,1862.0,1881.0,1900.0],"times":[1061867.0,2123317.0,3154143.0,4140551.0,5015461.0,5999912.0,7201737.0,8192729.0,9231971.0,10295504.0,11316496.0,12362738.0,13537438.0,14878802.0,15381340.0,16410249.0,17527907.0,18470608.0,19361642.0,21112963.0,21582668.0,22541910.0,23394154.0,24849809.0,26021008.0,26371172.0,27686203.0,29031277.0,30339725.0,30877429.0,32131920.0,33047038.0,34336195.0,35237479.0,36084223.0,36964382.0,38717077.0,39246948.0,40924228.0,42469632.0,42061968.0,43030128.0,43988704.0,45135861.0,46113145.0,47169387.0,48408169.0,49073248.0,50717277.0,51693103.0,52983176.0,53810086.0,54767080.0,56138818.0,56996853.0,56932229.0,57185769.0,58073470.0,60057830.0,60287454.0,60870824.0,62717227.0,62866558.0,64213881.0,65234248.0,65866036.0,67641814.0,68371433.0,70195294.0,70898956.0,71488701.0,71734782.0,73676975.0,74801591.0,75512961.0,76091707.0,77292864.0,78416481.0,78921102.0,80021135.0,81716663.0,84856806.0,83989605.0,83806773.0,84998264.0,86750500.0,88083073.0,89847518.0,89425938.0,90050766.0,90906385.0,92647872.0,93533031.0,94746397.0,95419684.0,96117469.0,97255252.0,98734824.0,99076905.0,100057731.0]}
|
||||
1
benchmarks/babyjubjub/derive_public_key/new/tukey.json
Normal file
@@ -0,0 +1 @@
|
||||
[48524.79492499869,50715.09088355198,56555.88010636074,58746.17606491402]
|
||||
104
benchmarks/babyjubjub/derive_public_key/report/MAD.svg
Normal file
@@ -0,0 +1,104 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:MAD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="439" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,439 86,439 "/>
|
||||
<text x="77" y="387" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,387 86,387 "/>
|
||||
<text x="77" y="336" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,336 86,336 "/>
|
||||
<text x="77" y="285" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,285 86,285 "/>
|
||||
<text x="77" y="233" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,233 86,233 "/>
|
||||
<text x="77" y="182" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,182 86,182 "/>
|
||||
<text x="77" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,131 86,131 "/>
|
||||
<text x="77" y="79" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,79 86,79 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="93" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="93,473 93,478 "/>
|
||||
<text x="175" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.85
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="175,473 175,478 "/>
|
||||
<text x="258" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="258,473 258,478 "/>
|
||||
<text x="341" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.95
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="341,473 341,478 "/>
|
||||
<text x="424" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="424,473 424,478 "/>
|
||||
<text x="507" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="507,473 507,478 "/>
|
||||
<text x="589" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="589,473 589,478 "/>
|
||||
<text x="672" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="672,473 672,478 "/>
|
||||
<text x="755" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="755,473 755,478 "/>
|
||||
<text x="838" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="838,473 838,478 "/>
|
||||
<text x="920" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="920,473 920,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,470 97,469 98,468 100,467 102,467 103,466 105,465 107,464 109,463 110,463 112,462 114,461 115,460 117,459 119,458 120,458 122,457 124,456 125,456 127,455 129,454 131,454 132,453 134,452 136,452 137,451 139,451 141,450 142,449 144,449 146,448 147,447 149,447 151,446 153,445 154,444 156,443 158,442 159,441 161,439 163,438 164,437 166,435 168,433 169,431 171,430 173,428 175,426 176,423 178,421 180,419 181,417 183,414 185,412 186,410 188,408 190,405 191,403 193,401 195,399 197,397 198,395 200,394 202,392 203,391 205,389 207,388 208,387 210,386 212,386 214,385 215,385 217,384 219,384 220,384 222,384 224,384 225,385 227,385 229,385 230,385 232,386 234,386 236,386 237,386 239,386 241,386 242,386 244,386 246,385 247,385 249,384 251,383 252,382 254,380 256,379 258,377 259,375 261,373 263,370 264,367 266,365 268,362 269,358 271,355 273,351 274,348 276,344 278,340 280,336 281,332 283,327 285,323 286,319 288,314 290,310 291,306 293,301 295,297 296,293 298,288 300,284 302,280 303,275 305,271 307,267 308,263 310,259 312,255 313,251 315,247 317,243 318,240 320,236 322,233 324,230 325,226 327,223 329,220 330,217 332,215 334,212 335,210 337,208 339,206 341,204 342,202 344,201 346,200 347,198 349,198 351,197 352,196 354,196 356,196 357,196 359,196 361,196 363,196 364,196 366,197 368,197 369,198 371,198 373,198 374,199 376,199 378,199 379,199 381,199 383,199 385,199 386,199 388,199 390,198 391,198 393,197 395,196 396,195 398,194 400,193 401,191 403,190 405,188 407,186 408,185 410,183 412,181 413,179 415,178 417,176 418,174 420,173 422,171 423,170 425,168 427,167 429,166 430,165 432,164 434,163 435,162 437,161 439,160 440,159 442,159 444,158 445,157 447,157 449,156 451,155 452,155 454,154 456,154 457,154 459,153 461,153 462,153 464,153 466,153 468,153 469,153 471,153 473,153 474,153 476,153 478,153 479,153 481,153 483,152 484,152 486,152 488,151 490,150 491,149 493,148 495,147 496,145 498,144 500,142 501,140 503,138 505,136 506,134 508,132 510,129 512,127 513,125 515,122 517,120 518,117 520,115 522,113 523,110 525,108 527,106 528,104 530,102 532,100 534,98 535,97 537,96 539,95 540,94 542,94 544,93 545,93 547,93 549,94 550,94 552,95 554,96 556,97 557,98 559,100 561,101 562,103 564,105 566,107 567,109 569,111 571,113 573,116 574,118 576,121 578,123 579,126 581,129 583,133 584,136 586,140 588,143 589,147 591,151 593,155 595,159 596,163 598,167 600,172 601,176 603,180 605,184 606,188 608,192 610,196 611,199 613,203 615,206 617,209 618,212 620,215 622,218 623,220 625,222 627,224 628,226 630,227 632,229 633,230 635,231 637,231 639,232 640,232 642,232 644,232 645,231 647,231 649,231 650,230 652,229 654,229 655,228 657,228 659,227 661,227 662,227 664,227 666,227 667,227 669,228 671,228 672,229 674,230 676,232 677,233 679,235 681,237 683,238 684,240 686,242 688,245 689,247 691,249 693,251 694,253 696,256 698,258 700,260 701,262 703,265 705,267 706,269 708,272 710,274 711,277 713,280 715,282 716,285 718,288 720,291 722,294 723,296 725,299 727,302 728,305 730,307 732,309 733,312 735,314 737,316 738,318 740,319 742,321 744,323 745,324 747,325 749,326 750,327 752,329 754,330 755,331 757,332 759,333 760,334 762,336 764,337 766,339 767,340 769,342 771,344 772,346 774,348 776,349 777,351 779,353 781,355 782,356 784,358 786,360 788,361 789,363 791,364 793,365 794,366 796,367 798,368 799,369 801,370 803,371 804,372 806,373 808,374 810,375 811,376 813,378 815,379 816,381 818,383 820,385 821,386 823,389 825,391 827,393 828,395 830,398 832,400 833,403 835,405 837,408 838,410 840,413 842,415 843,417 845,420 847,422 849,424 850,426 852,427 854,429 855,431 857,432 859,434 860,435 862,436 864,438 865,439 867,440 869,441 871,442 872,443 874,444 876,444 877,445 879,446 881,447 882,448 884,449 886,449 887,450 889,451 891,452 893,453 894,453 896,454 898,455 899,456 901,456 903,457 904,458 906,458 908,459 909,459 911,460 913,461 915,461 916,462 918,462 920,463 921,464 923,464 925,465 926,465 928,466 930,467 932,467 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,437 166,435 168,433 169,431 171,430 173,428 175,426 176,423 178,421 180,419 181,417 183,414 185,412 186,410 188,408 190,405 191,403 193,401 195,399 197,397 198,395 200,394 202,392 203,391 205,389 207,388 208,387 210,386 212,386 214,385 215,385 217,384 219,384 220,384 222,384 224,384 225,385 227,385 229,385 230,385 232,386 234,386 236,386 237,386 239,386 241,386 242,386 244,386 246,385 247,385 249,384 251,383 252,382 254,380 256,379 258,377 259,375 261,373 263,370 264,367 266,365 268,362 269,358 271,355 273,351 274,348 276,344 278,340 280,336 281,332 283,327 285,323 286,319 288,314 290,310 291,306 293,301 295,297 296,293 298,288 300,284 302,280 303,275 305,271 307,267 308,263 310,259 312,255 313,251 315,247 317,243 318,240 320,236 322,233 324,230 325,226 327,223 329,220 330,217 332,215 334,212 335,210 337,208 339,206 341,204 342,202 344,201 346,200 347,198 349,198 351,197 352,196 354,196 356,196 357,196 359,196 361,196 363,196 364,196 366,197 368,197 369,198 371,198 373,198 374,199 376,199 378,199 379,199 381,199 383,199 385,199 386,199 388,199 390,198 391,198 393,197 395,196 396,195 398,194 400,193 401,191 403,190 405,188 407,186 408,185 410,183 412,181 413,179 415,178 417,176 418,174 420,173 422,171 423,170 425,168 427,167 429,166 430,165 432,164 434,163 435,162 437,161 439,160 440,159 442,159 444,158 445,157 447,157 449,156 451,155 452,155 454,154 456,154 457,154 459,153 461,153 462,153 464,153 466,153 468,153 469,153 471,153 473,153 474,153 476,153 478,153 479,153 481,153 483,152 484,152 486,152 488,151 490,150 491,149 493,148 495,147 496,145 498,144 500,142 501,140 503,138 505,136 506,134 508,132 510,129 512,127 513,125 515,122 517,120 518,117 520,115 522,113 523,110 525,108 527,106 528,104 530,102 532,100 534,98 535,97 537,96 539,95 540,94 542,94 544,93 545,93 547,93 549,94 550,94 552,95 554,96 556,97 557,98 559,100 561,101 562,103 564,105 566,107 567,109 569,111 571,113 573,116 574,118 576,121 578,123 579,126 581,129 583,133 584,136 586,140 588,143 589,147 591,151 593,155 595,159 596,163 598,167 600,172 601,176 603,180 605,184 606,188 608,192 610,196 611,199 613,203 615,206 617,209 618,212 620,215 622,218 623,220 625,222 627,224 628,226 630,227 632,229 633,230 635,231 637,231 639,232 640,232 642,232 644,232 645,231 647,231 649,231 650,230 652,229 654,229 655,228 657,228 659,227 661,227 662,227 664,227 666,227 667,227 669,228 671,228 672,229 674,230 676,232 677,233 679,235 681,237 683,238 684,240 686,242 688,245 689,247 691,249 693,251 694,253 696,256 698,258 700,260 701,262 703,265 705,267 706,269 708,272 710,274 711,277 713,280 715,282 716,285 718,288 720,291 722,294 723,296 725,299 727,302 728,305 730,307 732,309 733,312 735,314 737,316 738,318 740,319 742,321 744,323 745,324 747,325 749,326 750,327 752,329 754,330 755,331 757,332 759,333 760,334 762,336 764,337 766,339 767,340 769,342 771,344 772,346 774,348 776,349 777,351 779,353 781,355 782,356 784,358 786,360 788,361 789,363 791,364 793,365 794,366 796,367 798,368 799,369 801,370 803,371 804,372 806,373 808,374 810,375 811,376 813,378 815,379 816,381 818,383 820,385 821,386 823,389 825,391 827,393 828,395 830,398 832,400 833,403 835,405 837,408 838,410 840,413 842,415 843,417 845,420 847,422 849,424 850,426 852,427 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="555,473 555,97 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
76
benchmarks/babyjubjub/derive_public_key/report/SD.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:SD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="439" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,439 86,439 "/>
|
||||
<text x="77" y="382" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,382 86,382 "/>
|
||||
<text x="77" y="325" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,325 86,325 "/>
|
||||
<text x="77" y="268" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,268 86,268 "/>
|
||||
<text x="77" y="212" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,212 86,212 "/>
|
||||
<text x="77" y="155" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,155 86,155 "/>
|
||||
<text x="77" y="98" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
7
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,98 86,98 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="197" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="197,473 197,478 "/>
|
||||
<text x="357" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.85
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="357,473 357,478 "/>
|
||||
<text x="517" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="517,473 517,478 "/>
|
||||
<text x="677" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.95
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="677,473 677,478 "/>
|
||||
<text x="837" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="837,473 837,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,469 98,468 100,467 102,467 103,466 105,465 107,464 109,464 110,463 112,462 114,461 115,460 117,460 119,459 120,458 122,457 124,456 125,455 127,455 129,454 131,453 132,452 134,451 136,450 137,449 139,448 141,447 142,446 144,445 146,444 147,443 149,442 151,441 153,440 154,438 156,437 158,436 159,435 161,433 163,432 164,430 166,429 168,428 169,426 171,425 173,423 175,422 176,420 178,419 180,417 181,416 183,414 185,413 186,411 188,410 190,408 191,407 193,405 195,404 197,402 198,401 200,399 202,398 203,396 205,395 207,393 208,392 210,390 212,389 214,387 215,386 217,384 219,383 220,381 222,380 224,378 225,377 227,375 229,374 230,372 232,371 234,369 236,368 237,366 239,365 241,363 242,361 244,359 246,358 247,356 249,354 251,352 252,350 254,348 256,346 258,344 259,342 261,340 263,338 264,336 266,333 268,331 269,329 271,326 273,324 274,322 276,319 278,317 280,315 281,312 283,310 285,308 286,306 288,303 290,301 291,299 293,297 295,295 296,293 298,291 300,288 302,286 303,284 305,282 307,280 308,278 310,276 312,274 313,272 315,269 317,267 318,265 320,263 322,261 324,258 325,256 327,254 329,252 330,249 332,247 334,245 335,242 337,240 339,238 341,236 342,233 344,231 346,229 347,226 349,224 351,222 352,219 354,217 356,215 357,213 359,210 361,208 363,206 364,204 366,202 368,199 369,197 371,195 373,193 374,191 376,188 378,186 379,184 381,182 383,180 385,178 386,175 388,173 390,171 391,169 393,167 395,165 396,163 398,160 400,158 401,156 403,154 405,152 407,150 408,148 410,146 412,145 413,143 415,141 417,139 418,137 420,136 422,134 423,133 425,131 427,129 429,128 430,126 432,125 434,124 435,122 437,121 439,120 440,118 442,117 444,116 445,115 447,114 449,112 451,111 452,110 454,109 456,108 457,107 459,106 461,105 462,104 464,103 466,102 468,102 469,101 471,100 473,99 474,99 476,98 478,98 479,97 481,97 483,96 484,96 486,96 488,96 490,95 491,95 493,95 495,95 496,95 498,95 500,94 501,94 503,94 505,94 506,94 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,95 537,95 539,95 540,96 542,96 544,97 545,97 547,98 549,98 550,99 552,100 554,101 556,102 557,103 559,104 561,105 562,106 564,107 566,108 567,109 569,111 571,112 573,113 574,115 576,116 578,118 579,119 581,121 583,122 584,124 586,125 588,127 589,128 591,130 593,131 595,133 596,135 598,136 600,138 601,139 603,141 605,143 606,144 608,146 610,148 611,149 613,151 615,153 617,155 618,156 620,158 622,160 623,162 625,164 627,166 628,168 630,170 632,172 633,175 635,177 637,179 639,181 640,183 642,186 644,188 645,190 647,192 649,195 650,197 652,199 654,202 655,204 657,207 659,209 661,211 662,214 664,216 666,219 667,221 669,223 671,226 672,228 674,231 676,233 677,236 679,238 681,241 683,243 684,246 686,248 688,251 689,253 691,256 693,258 694,261 696,263 698,266 700,268 701,271 703,273 705,276 706,278 708,281 710,283 711,285 713,288 715,290 716,292 718,295 720,297 722,299 723,302 725,304 727,306 728,308 730,310 732,312 733,314 735,316 737,318 738,320 740,322 742,324 744,326 745,328 747,330 749,332 750,333 752,335 754,337 755,339 757,340 759,342 760,344 762,346 764,347 766,349 767,351 769,353 771,355 772,357 774,359 776,360 777,362 779,364 781,366 782,369 784,371 786,373 788,375 789,377 791,379 793,381 794,383 796,385 798,387 799,389 801,390 803,392 804,394 806,396 808,397 810,399 811,401 813,402 815,404 816,405 818,407 820,408 821,410 823,411 825,413 827,414 828,415 830,417 832,418 833,419 835,421 837,422 838,423 840,424 842,426 843,427 845,428 847,429 849,430 850,431 852,432 854,433 855,434 857,436 859,437 860,438 862,439 864,440 865,441 867,442 869,443 871,444 872,445 874,446 876,447 877,448 879,449 881,450 882,451 884,452 886,453 887,453 889,454 891,455 893,456 894,457 896,458 898,459 899,460 901,460 903,461 904,462 906,463 908,464 909,464 911,465 913,466 915,466 916,467 918,468 920,468 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,430 166,429 168,428 169,426 171,425 173,423 175,422 176,420 178,419 180,417 181,416 183,414 185,413 186,411 188,410 190,408 191,407 193,405 195,404 197,402 198,401 200,399 202,398 203,396 205,395 207,393 208,392 210,390 212,389 214,387 215,386 217,384 219,383 220,381 222,380 224,378 225,377 227,375 229,374 230,372 232,371 234,369 236,368 237,366 239,365 241,363 242,361 244,359 246,358 247,356 249,354 251,352 252,350 254,348 256,346 258,344 259,342 261,340 263,338 264,336 266,333 268,331 269,329 271,326 273,324 274,322 276,319 278,317 280,315 281,312 283,310 285,308 286,306 288,303 290,301 291,299 293,297 295,295 296,293 298,291 300,288 302,286 303,284 305,282 307,280 308,278 310,276 312,274 313,272 315,269 317,267 318,265 320,263 322,261 324,258 325,256 327,254 329,252 330,249 332,247 334,245 335,242 337,240 339,238 341,236 342,233 344,231 346,229 347,226 349,224 351,222 352,219 354,217 356,215 357,213 359,210 361,208 363,206 364,204 366,202 368,199 369,197 371,195 373,193 374,191 376,188 378,186 379,184 381,182 383,180 385,178 386,175 388,173 390,171 391,169 393,167 395,165 396,163 398,160 400,158 401,156 403,154 405,152 407,150 408,148 410,146 412,145 413,143 415,141 417,139 418,137 420,136 422,134 423,133 425,131 427,129 429,128 430,126 432,125 434,124 435,122 437,121 439,120 440,118 442,117 444,116 445,115 447,114 449,112 451,111 452,110 454,109 456,108 457,107 459,106 461,105 462,104 464,103 466,102 468,102 469,101 471,100 473,99 474,99 476,98 478,98 479,97 481,97 483,96 484,96 486,96 488,96 490,95 491,95 493,95 495,95 496,95 498,95 500,94 501,94 503,94 505,94 506,94 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,95 537,95 539,95 540,96 542,96 544,97 545,97 547,98 549,98 550,99 552,100 554,101 556,102 557,103 559,104 561,105 562,106 564,107 566,108 567,109 569,111 571,112 573,113 574,115 576,116 578,118 579,119 581,121 583,122 584,124 586,125 588,127 589,128 591,130 593,131 595,133 596,135 598,136 600,138 601,139 603,141 605,143 606,144 608,146 610,148 611,149 613,151 615,153 617,155 618,156 620,158 622,160 623,162 625,164 627,166 628,168 630,170 632,172 633,175 635,177 637,179 639,181 640,183 642,186 644,188 645,190 647,192 649,195 650,197 652,199 654,202 655,204 657,207 659,209 661,211 662,214 664,216 666,219 667,221 669,223 671,226 672,228 674,231 676,233 677,236 679,238 681,241 683,243 684,246 686,248 688,251 689,253 691,256 693,258 694,261 696,263 698,266 700,268 701,271 703,273 705,276 706,278 708,281 710,283 711,285 713,288 715,290 716,292 718,295 720,297 722,299 723,302 725,304 727,306 728,308 730,310 732,312 733,314 735,316 737,318 738,320 740,322 742,324 744,326 745,328 747,330 749,332 750,333 752,335 754,337 755,339 757,340 759,342 760,344 762,346 764,347 766,349 767,351 769,353 771,355 772,357 774,359 776,360 777,362 779,364 781,366 782,369 784,371 786,373 788,375 789,377 791,379 793,381 794,383 796,385 798,387 799,389 801,390 803,392 804,394 806,396 808,397 810,399 811,401 813,402 815,404 816,405 818,407 820,408 821,410 823,411 825,413 827,414 828,415 830,417 832,418 833,419 835,421 837,422 838,423 840,424 842,426 843,427 845,428 847,429 849,430 850,431 852,432 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="528,473 528,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
358
benchmarks/babyjubjub/derive_public_key/report/both/pdf.svg
Normal file
@@ -0,0 +1,358 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L81.53,662.40 '/> <g transform="translate(64.14,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,601.56 L81.53,601.56 '/> <g transform="translate(64.14,605.46)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,540.72 L81.53,540.72 '/> <g transform="translate(64.14,544.62)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,479.88 L81.53,479.88 '/> <g transform="translate(64.14,483.78)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,419.04 L81.53,419.04 '/> <g transform="translate(64.14,422.94)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,358.20 L81.53,358.20 '/> <g transform="translate(64.14,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,297.37 L81.53,297.37 '/> <g transform="translate(64.14,301.27)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,236.53 L81.53,236.53 '/> <g transform="translate(64.14,240.43)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,175.69 L81.53,175.69 '/> <g transform="translate(64.14,179.59)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,114.85 L81.53,114.85 '/> <g transform="translate(64.14,118.75)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L72.53,653.40 '/> <g transform="translate(72.53,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M177.27,662.40 L177.27,653.40 '/> <g transform="translate(177.27,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 55</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M282.02,662.40 L282.02,653.40 '/> <g transform="translate(282.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M386.76,662.40 L386.76,653.40 '/> <g transform="translate(386.76,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 65</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M491.51,662.40 L491.51,653.40 '/> <g transform="translate(491.51,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M596.25,662.40 L596.25,653.40 '/> <g transform="translate(596.25,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 75</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M700.99,662.40 L700.99,653.40 '/> <g transform="translate(700.99,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M805.74,662.40 L805.74,653.40 '/> <g transform="translate(805.74,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 85</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M910.48,662.40 L910.48,653.40 '/> <g transform="translate(910.48,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1015.23,662.40 L1015.23,653.40 '/> <g transform="translate(1015.23,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1119.97,662.40 L1119.97,653.40 '/> <g transform="translate(1119.97,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '1145.14,67.51 1187.70,67.51 1187.70,58.51 1145.14,58.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '1037.03,662.35 1037.15,662.35 1037.28,662.34 1037.41,662.33 1037.54,662.32 1037.66,662.31 1037.79,662.29 1037.92,662.28 1038.04,662.26 1038.17,662.24 1038.30,662.21 1038.42,662.19 1038.55,662.16 1038.68,662.13 1038.80,662.09 1038.93,662.05
|
||||
1039.06,662.01 1039.18,661.96 1039.31,661.90 1039.44,661.84 1039.56,661.77 1039.69,661.69 1039.82,661.61 1039.94,661.51 1040.07,661.41 1040.20,661.29 1040.32,661.16 1040.45,661.02 1040.58,660.87 1040.70,660.69 1040.83,660.50 1040.96,660.30
|
||||
1041.08,660.07 1041.21,659.81 1041.34,659.54 1041.46,659.23 1041.59,658.90 1041.72,658.53 1041.84,658.13 1041.97,657.69 1042.10,657.21 1042.22,656.68 1042.35,656.11 1042.48,655.48 1042.60,654.80 1042.73,654.05 1042.86,653.25 1042.98,652.37
|
||||
1043.11,651.41 1043.24,650.38 1043.36,649.26 1043.49,648.04 1043.62,646.73 1043.74,645.32 1043.87,643.80 1044.00,642.16 1044.12,640.40 1044.25,638.51 1044.38,636.49 1044.50,634.33 1044.63,632.03 1044.76,629.57 1044.88,626.95 1045.01,624.18
|
||||
1045.14,621.24 1045.26,618.12 1045.39,614.84 1045.52,611.38 1045.64,607.73 1045.77,603.91 1045.90,599.91 1046.02,595.72 1046.15,591.35 1046.28,586.81 1046.40,582.09 1046.53,577.20 1046.66,572.14 1046.78,566.93 1046.91,561.56 1047.04,556.05
|
||||
1047.16,550.41 1047.29,544.65 1047.42,538.77 1047.55,532.81 1047.67,526.76 1047.80,520.64 1047.93,514.48 1048.05,508.28 1048.18,502.07 1048.31,495.86 1048.43,489.68 1048.56,483.55 1048.69,477.47 1048.81,471.49 1048.94,465.60 1049.07,459.85
|
||||
1049.19,454.24 1049.32,448.79 1049.45,443.54 1049.57,438.48 1049.70,433.65 1049.83,429.06 1049.95,424.73 1050.08,420.67 1050.21,416.89 1050.33,413.42 1050.46,410.25 1050.59,407.41 1050.71,404.89 1050.84,402.72 1050.97,400.88 1051.09,399.40
|
||||
1051.22,398.26 1051.35,397.48 1051.47,397.05 1051.60,396.97 1051.73,397.24 1051.85,397.85 1051.98,398.79 1052.11,400.07 1052.23,401.67 1052.36,403.58 1052.49,405.80 1052.61,408.31 1052.74,411.10 1052.87,414.15 1052.99,417.47 1053.12,421.02
|
||||
1053.25,424.80 1053.37,428.80 1053.50,432.99 1053.63,437.36 1053.75,441.91 1053.88,446.61 1054.01,451.44 1054.13,456.40 1054.26,461.47 1054.39,466.63 1054.51,471.87 1054.64,477.18 1054.77,482.54 1054.89,487.94 1055.02,493.36 1055.15,498.79
|
||||
1055.27,504.22 1055.40,509.64 1055.53,515.04 1055.65,520.40 1055.78,525.71 1055.91,530.97 1056.03,536.16 1056.16,541.27 1056.29,546.31 1056.41,551.25 1056.54,556.09 1056.67,560.82 1056.79,565.45 1056.92,569.95 1057.05,574.33 1057.17,578.58
|
||||
1057.30,582.70 1057.43,586.68 1057.56,590.52 1057.68,594.22 1057.81,597.77 1057.94,601.18 1058.06,604.44 1058.19,607.56 1058.32,610.53 1058.44,613.35 1058.57,616.03 1058.70,618.57 1058.82,620.97 1058.95,623.23 1059.08,625.35 1059.20,627.35
|
||||
1059.33,629.21 1059.46,630.95 1059.58,632.57 1059.71,634.07 1059.84,635.47 1059.96,636.75 1060.09,637.94 1060.22,639.02 1060.34,640.02 1060.47,640.92 1060.60,641.75 1060.72,642.49 1060.85,643.16 1060.98,643.77 1061.10,644.31 1061.23,644.79
|
||||
1061.36,645.22 1061.48,645.59 1061.61,645.92 1061.74,646.21 1061.86,646.45 1061.99,646.66 1062.12,646.84 1062.24,646.98 1062.37,647.10 1062.50,647.20 1062.62,647.27 1062.75,647.33 1062.88,647.37 1063.00,647.39 1063.13,647.40 1063.26,647.40
|
||||
1063.38,647.39 1063.51,647.37 1063.64,647.34 1063.76,647.31 1063.89,647.28 1064.02,647.24 1064.14,647.20 1064.27,647.16 1064.40,647.12 1064.52,647.08 1064.65,647.05 1064.78,647.01 1064.90,646.99 1065.03,646.96 1065.16,646.94 1065.28,646.93
|
||||
1065.41,646.93 1065.54,646.93 1065.66,646.94 1065.79,646.96 1065.92,646.99 1066.04,647.02 1066.17,647.07 1066.30,647.13 1066.42,647.20 1066.55,647.28 1066.68,647.36 1066.80,647.46 1066.93,647.57 1067.06,647.70 1067.18,647.83 1067.31,647.97
|
||||
1067.44,648.12 1067.56,648.28 1067.69,648.45 1067.82,648.63 1067.95,648.82 1068.07,649.02 1068.20,649.23 1068.33,649.44 1068.45,649.66 1068.58,649.88 1068.71,650.11 1068.83,650.35 1068.96,650.59 1069.09,650.83 1069.21,651.08 1069.34,651.33
|
||||
1069.47,651.59 1069.59,651.84 1069.72,652.10 1069.85,652.35 1069.97,652.61 1070.10,652.87 1070.23,653.13 1070.35,653.38 1070.48,653.64 1070.61,653.89 1070.73,654.15 1070.86,654.40 1070.99,654.65 1071.11,654.90 1071.24,655.14 1071.37,655.39
|
||||
1071.49,655.63 1071.62,655.86 1071.75,656.10 1071.87,656.33 1072.00,656.56 1072.13,656.78 1072.25,657.00 1072.38,657.22 1072.51,657.43 1072.63,657.64 1072.76,657.85 1072.89,658.05 1073.01,658.24 1073.14,658.43 1073.27,658.61 1073.39,658.79
|
||||
1073.52,658.96 1073.65,659.12 1073.77,659.28 1073.90,659.43 1074.03,659.58 1074.15,659.71 1074.28,659.84 1074.41,659.96 1074.53,660.08 1074.66,660.18 1074.79,660.28 1074.91,660.37 1075.04,660.45 1075.17,660.52 1075.29,660.58 1075.42,660.63
|
||||
1075.55,660.68 1075.67,660.71 1075.80,660.74 1075.93,660.76 1076.05,660.77 1076.18,660.77 1076.31,660.76 1076.43,660.75 1076.56,660.72 1076.69,660.69 1076.81,660.65 1076.94,660.61 1077.07,660.55 1077.19,660.50 1077.32,660.43 1077.45,660.36
|
||||
1077.57,660.29 1077.70,660.21 1077.83,660.13 1077.96,660.04 1078.08,659.95 1078.21,659.86 1078.34,659.77 1078.46,659.68 1078.59,659.59 1078.72,659.50 1078.84,659.41 1078.97,659.32 1079.10,659.23 1079.22,659.15 1079.35,659.07 1079.48,659.00
|
||||
1079.60,658.93 1079.73,658.87 1079.86,658.81 1079.98,658.76 1080.11,658.72 1080.24,658.68 1080.36,658.65 1080.49,658.63 1080.62,658.62 1080.74,658.62 1080.87,658.62 1081.00,658.63 1081.12,658.65 1081.25,658.68 1081.38,658.71 1081.50,658.76
|
||||
1081.63,658.81 1081.76,658.87 1081.88,658.93 1082.01,659.00 1082.14,659.08 1082.26,659.16 1082.39,659.24 1082.52,659.33 1082.64,659.43 1082.77,659.53 1082.90,659.63 1083.02,659.73 1083.15,659.83 1083.28,659.94 1083.40,660.04 1083.53,660.15
|
||||
1083.66,660.25 1083.78,660.35 1083.91,660.45 1084.04,660.55 1084.16,660.65 1084.29,660.74 1084.42,660.83 1084.54,660.92 1084.67,661.00 1084.80,661.08 1084.92,661.15 1085.05,661.22 1085.18,661.28 1085.30,661.34 1085.43,661.39 1085.56,661.44
|
||||
1085.68,661.48 1085.81,661.51 1085.94,661.54 1086.06,661.57 1086.19,661.58 1086.32,661.59 1086.44,661.60 1086.57,661.60 1086.70,661.59 1086.82,661.57 1086.95,661.55 1087.08,661.53 1087.20,661.50 1087.33,661.46 1087.46,661.41 1087.58,661.36
|
||||
1087.71,661.31 1087.84,661.25 1087.97,661.18 1088.09,661.11 1088.22,661.04 1088.35,660.96 1088.47,660.87 1088.60,660.78 1088.73,660.69 1088.85,660.60 1088.98,660.50 1089.11,660.40 1089.23,660.30 1089.36,660.19 1089.49,660.09 1089.61,659.98
|
||||
1089.74,659.88 1089.87,659.77 1089.99,659.67 1090.12,659.57 1090.25,659.47 1090.37,659.38 1090.50,659.28 1090.63,659.20 1090.75,659.11 1090.88,659.03 1091.01,658.96 1091.13,658.90 1091.26,658.83 1091.39,658.78 1091.51,658.74 1091.64,658.70
|
||||
1091.77,658.67 1091.89,658.64 1092.02,658.63 1092.15,658.62 1092.27,658.63 1092.40,658.64 1092.53,658.66 1092.65,658.68 1092.78,658.72 1092.91,658.76 1093.03,658.81 1093.16,658.87 1093.29,658.93 1093.41,659.00 1093.54,659.08 1093.67,659.16
|
||||
1093.79,659.25 1093.92,659.34 1094.05,659.43 1094.17,659.53 1094.30,659.63 1094.43,659.74 1094.55,659.84 1094.68,659.95 1094.81,660.06 1094.93,660.16 1095.06,660.27 1095.19,660.38 1095.31,660.48 1095.44,660.59 1095.57,660.69 1095.69,660.79
|
||||
1095.82,660.89 1095.95,660.98 1096.07,661.07 1096.20,661.16 1096.33,661.25 1096.45,661.33 1096.58,661.41 1096.71,661.48 1096.83,661.55 1096.96,661.62 1097.09,661.68 1097.21,661.74 1097.34,661.80 1097.47,661.85 1097.59,661.90 1097.72,661.95
|
||||
1097.85,661.99 1097.97,662.03 1098.10,662.06 1098.23,662.10 1098.36,662.13 1098.48,662.16 1098.61,662.18 1098.74,662.21 1098.86,662.23 1098.99,662.25 1099.12,662.26 1099.24,662.28 1099.37,662.29 1099.50,662.31 1099.62,662.32 1099.75,662.33
|
||||
1099.88,662.34 1100.00,662.34 1100.13,662.35 1100.26,662.36 1100.26,662.40 1100.13,662.40 1100.00,662.40 1099.88,662.40 1099.75,662.40 1099.62,662.40 1099.50,662.40 1099.37,662.40 1099.24,662.40 1099.12,662.40 1098.99,662.40 1098.86,662.40
|
||||
1098.74,662.40 1098.61,662.40 1098.48,662.40 1098.36,662.40 1098.23,662.40 1098.10,662.40 1097.97,662.40 1097.85,662.40 1097.72,662.40 1097.59,662.40 1097.47,662.40 1097.34,662.40 1097.21,662.40 1097.09,662.40 1096.96,662.40 1096.83,662.40
|
||||
1096.71,662.40 1096.58,662.40 1096.45,662.40 1096.33,662.40 1096.20,662.40 1096.07,662.40 1095.95,662.40 1095.82,662.40 1095.69,662.40 1095.57,662.40 1095.44,662.40 1095.31,662.40 1095.19,662.40 1095.06,662.40 1094.93,662.40 1094.81,662.40
|
||||
1094.68,662.40 1094.55,662.40 1094.43,662.40 1094.30,662.40 1094.17,662.40 1094.05,662.40 1093.92,662.40 1093.79,662.40 1093.67,662.40 1093.54,662.40 1093.41,662.40 1093.29,662.40 1093.16,662.40 1093.03,662.40 1092.91,662.40 1092.78,662.40
|
||||
1092.65,662.40 1092.53,662.40 1092.40,662.40 1092.27,662.40 1092.15,662.40 1092.02,662.40 1091.89,662.40 1091.77,662.40 1091.64,662.40 1091.51,662.40 1091.39,662.40 1091.26,662.40 1091.13,662.40 1091.01,662.40 1090.88,662.40 1090.75,662.40
|
||||
1090.63,662.40 1090.50,662.40 1090.37,662.40 1090.25,662.40 1090.12,662.40 1089.99,662.40 1089.87,662.40 1089.74,662.40 1089.61,662.40 1089.49,662.40 1089.36,662.40 1089.23,662.40 1089.11,662.40 1088.98,662.40 1088.85,662.40 1088.73,662.40
|
||||
1088.60,662.40 1088.47,662.40 1088.35,662.40 1088.22,662.40 1088.09,662.40 1087.97,662.40 1087.84,662.40 1087.71,662.40 1087.58,662.40 1087.46,662.40 1087.33,662.40 1087.20,662.40 1087.08,662.40 1086.95,662.40 1086.82,662.40 1086.70,662.40
|
||||
1086.57,662.40 1086.44,662.40 1086.32,662.40 1086.19,662.40 1086.06,662.40 1085.94,662.40 1085.81,662.40 1085.68,662.40 1085.56,662.40 1085.43,662.40 1085.30,662.40 1085.18,662.40 1085.05,662.40 1084.92,662.40 1084.80,662.40 1084.67,662.40
|
||||
1084.54,662.40 1084.42,662.40 1084.29,662.40 1084.16,662.40 1084.04,662.40 1083.91,662.40 1083.78,662.40 1083.66,662.40 1083.53,662.40 1083.40,662.40 1083.28,662.40 1083.15,662.40 1083.02,662.40 1082.90,662.40 1082.77,662.40 1082.64,662.40
|
||||
1082.52,662.40 1082.39,662.40 1082.26,662.40 1082.14,662.40 1082.01,662.40 1081.88,662.40 1081.76,662.40 1081.63,662.40 1081.50,662.40 1081.38,662.40 1081.25,662.40 1081.12,662.40 1081.00,662.40 1080.87,662.40 1080.74,662.40 1080.62,662.40
|
||||
1080.49,662.40 1080.36,662.40 1080.24,662.40 1080.11,662.40 1079.98,662.40 1079.86,662.40 1079.73,662.40 1079.60,662.40 1079.48,662.40 1079.35,662.40 1079.22,662.40 1079.10,662.40 1078.97,662.40 1078.84,662.40 1078.72,662.40 1078.59,662.40
|
||||
1078.46,662.40 1078.34,662.40 1078.21,662.40 1078.08,662.40 1077.96,662.40 1077.83,662.40 1077.70,662.40 1077.57,662.40 1077.45,662.40 1077.32,662.40 1077.19,662.40 1077.07,662.40 1076.94,662.40 1076.81,662.40 1076.69,662.40 1076.56,662.40
|
||||
1076.43,662.40 1076.31,662.40 1076.18,662.40 1076.05,662.40 1075.93,662.40 1075.80,662.40 1075.67,662.40 1075.55,662.40 1075.42,662.40 1075.29,662.40 1075.17,662.40 1075.04,662.40 1074.91,662.40 1074.79,662.40 1074.66,662.40 1074.53,662.40
|
||||
1074.41,662.40 1074.28,662.40 1074.15,662.40 1074.03,662.40 1073.90,662.40 1073.77,662.40 1073.65,662.40 1073.52,662.40 1073.39,662.40 1073.27,662.40 1073.14,662.40 1073.01,662.40 1072.89,662.40 1072.76,662.40 1072.63,662.40 1072.51,662.40
|
||||
1072.38,662.40 1072.25,662.40 1072.13,662.40 1072.00,662.40 1071.87,662.40 1071.75,662.40 1071.62,662.40 1071.49,662.40 1071.37,662.40 1071.24,662.40 1071.11,662.40 1070.99,662.40 1070.86,662.40 1070.73,662.40 1070.61,662.40 1070.48,662.40
|
||||
1070.35,662.40 1070.23,662.40 1070.10,662.40 1069.97,662.40 1069.85,662.40 1069.72,662.40 1069.59,662.40 1069.47,662.40 1069.34,662.40 1069.21,662.40 1069.09,662.40 1068.96,662.40 1068.83,662.40 1068.71,662.40 1068.58,662.40 1068.45,662.40
|
||||
1068.33,662.40 1068.20,662.40 1068.07,662.40 1067.95,662.40 1067.82,662.40 1067.69,662.40 1067.56,662.40 1067.44,662.40 1067.31,662.40 1067.18,662.40 1067.06,662.40 1066.93,662.40 1066.80,662.40 1066.68,662.40 1066.55,662.40 1066.42,662.40
|
||||
1066.30,662.40 1066.17,662.40 1066.04,662.40 1065.92,662.40 1065.79,662.40 1065.66,662.40 1065.54,662.40 1065.41,662.40 1065.28,662.40 1065.16,662.40 1065.03,662.40 1064.90,662.40 1064.78,662.40 1064.65,662.40 1064.52,662.40 1064.40,662.40
|
||||
1064.27,662.40 1064.14,662.40 1064.02,662.40 1063.89,662.40 1063.76,662.40 1063.64,662.40 1063.51,662.40 1063.38,662.40 1063.26,662.40 1063.13,662.40 1063.00,662.40 1062.88,662.40 1062.75,662.40 1062.62,662.40 1062.50,662.40 1062.37,662.40
|
||||
1062.24,662.40 1062.12,662.40 1061.99,662.40 1061.86,662.40 1061.74,662.40 1061.61,662.40 1061.48,662.40 1061.36,662.40 1061.23,662.40 1061.10,662.40 1060.98,662.40 1060.85,662.40 1060.72,662.40 1060.60,662.40 1060.47,662.40 1060.34,662.40
|
||||
1060.22,662.40 1060.09,662.40 1059.96,662.40 1059.84,662.40 1059.71,662.40 1059.58,662.40 1059.46,662.40 1059.33,662.40 1059.20,662.40 1059.08,662.40 1058.95,662.40 1058.82,662.40 1058.70,662.40 1058.57,662.40 1058.44,662.40 1058.32,662.40
|
||||
1058.19,662.40 1058.06,662.40 1057.94,662.40 1057.81,662.40 1057.68,662.40 1057.56,662.40 1057.43,662.40 1057.30,662.40 1057.17,662.40 1057.05,662.40 1056.92,662.40 1056.79,662.40 1056.67,662.40 1056.54,662.40 1056.41,662.40 1056.29,662.40
|
||||
1056.16,662.40 1056.03,662.40 1055.91,662.40 1055.78,662.40 1055.65,662.40 1055.53,662.40 1055.40,662.40 1055.27,662.40 1055.15,662.40 1055.02,662.40 1054.89,662.40 1054.77,662.40 1054.64,662.40 1054.51,662.40 1054.39,662.40 1054.26,662.40
|
||||
1054.13,662.40 1054.01,662.40 1053.88,662.40 1053.75,662.40 1053.63,662.40 1053.50,662.40 1053.37,662.40 1053.25,662.40 1053.12,662.40 1052.99,662.40 1052.87,662.40 1052.74,662.40 1052.61,662.40 1052.49,662.40 1052.36,662.40 1052.23,662.40
|
||||
1052.11,662.40 1051.98,662.40 1051.85,662.40 1051.73,662.40 1051.60,662.40 1051.47,662.40 1051.35,662.40 1051.22,662.40 1051.09,662.40 1050.97,662.40 1050.84,662.40 1050.71,662.40 1050.59,662.40 1050.46,662.40 1050.33,662.40 1050.21,662.40
|
||||
1050.08,662.40 1049.95,662.40 1049.83,662.40 1049.70,662.40 1049.57,662.40 1049.45,662.40 1049.32,662.40 1049.19,662.40 1049.07,662.40 1048.94,662.40 1048.81,662.40 1048.69,662.40 1048.56,662.40 1048.43,662.40 1048.31,662.40 1048.18,662.40
|
||||
1048.05,662.40 1047.93,662.40 1047.80,662.40 1047.67,662.40 1047.55,662.40 1047.42,662.40 1047.29,662.40 1047.16,662.40 1047.04,662.40 1046.91,662.40 1046.78,662.40 1046.66,662.40 1046.53,662.40 1046.40,662.40 1046.28,662.40 1046.15,662.40
|
||||
1046.02,662.40 1045.90,662.40 1045.77,662.40 1045.64,662.40 1045.52,662.40 1045.39,662.40 1045.26,662.40 1045.14,662.40 1045.01,662.40 1044.88,662.40 1044.76,662.40 1044.63,662.40 1044.50,662.40 1044.38,662.40 1044.25,662.40 1044.12,662.40
|
||||
1044.00,662.40 1043.87,662.40 1043.74,662.40 1043.62,662.40 1043.49,662.40 1043.36,662.40 1043.24,662.40 1043.11,662.40 1042.98,662.40 1042.86,662.40 1042.73,662.40 1042.60,662.40 1042.48,662.40 1042.35,662.40 1042.22,662.40 1042.10,662.40
|
||||
1041.97,662.40 1041.84,662.40 1041.72,662.40 1041.59,662.40 1041.46,662.40 1041.34,662.40 1041.21,662.40 1041.08,662.40 1040.96,662.40 1040.83,662.40 1040.70,662.40 1040.58,662.40 1040.45,662.40 1040.32,662.40 1040.20,662.40 1040.07,662.40
|
||||
1039.94,662.40 1039.82,662.40 1039.69,662.40 1039.56,662.40 1039.44,662.40 1039.31,662.40 1039.18,662.40 1039.06,662.40 1038.93,662.40 1038.80,662.40 1038.68,662.40 1038.55,662.40 1038.42,662.40 1038.30,662.40 1038.17,662.40 1038.04,662.40
|
||||
1037.92,662.40 1037.79,662.40 1037.66,662.40 1037.54,662.40 1037.41,662.40 1037.28,662.40 1037.15,662.40 1037.03,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M1145.14,81.01 L1187.70,81.01 M1053.42,662.40 L1053.42,430.42 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '1145.14,103.51 1187.70,103.51 1187.70,94.51 1145.14,94.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '134.48,662.30 134.54,662.28 134.60,662.26 134.66,662.24 134.72,662.22 134.78,662.19 134.84,662.15 134.90,662.12 134.96,662.08 135.02,662.03 135.08,661.98 135.14,661.92 135.20,661.85 135.26,661.77 135.32,661.69 135.38,661.59
|
||||
135.44,661.48 135.50,661.36 135.56,661.23 135.62,661.08 135.68,660.91 135.74,660.73 135.81,660.52 135.87,660.29 135.93,660.04 135.99,659.76 136.05,659.45 136.11,659.10 136.17,658.72 136.23,658.30 136.29,657.83 136.35,657.32
|
||||
136.41,656.75 136.47,656.12 136.53,655.43 136.59,654.68 136.65,653.85 136.71,652.93 136.77,651.93 136.83,650.83 136.89,649.62 136.95,648.30 137.01,646.85 137.07,645.27 137.13,643.55 137.19,641.66 137.25,639.61 137.31,637.38
|
||||
137.37,634.95 137.43,632.31 137.49,629.45 137.56,626.36 137.62,623.01 137.68,619.39 137.74,615.49 137.80,611.29 137.86,606.78 137.92,601.93 137.98,596.74 138.04,591.19 138.10,585.27 138.16,578.96 138.22,572.25 138.28,565.13
|
||||
138.34,557.59 138.40,549.62 138.46,541.22 138.52,532.37 138.58,523.08 138.64,513.35 138.70,503.18 138.76,492.58 138.82,481.54 138.88,470.10 138.94,458.25 139.00,446.01 139.06,433.41 139.12,420.47 139.18,407.22 139.24,393.68
|
||||
139.31,379.90 139.37,365.90 139.43,351.74 139.49,337.44 139.55,323.06 139.61,308.64 139.67,294.23 139.73,279.89 139.79,265.66 139.85,251.61 139.91,237.78 139.97,224.24 140.03,211.04 140.09,198.22 140.15,185.86 140.21,174.00
|
||||
140.27,162.68 140.33,151.97 140.39,141.90 140.45,132.53 140.51,123.89 140.57,116.01 140.63,108.94 140.69,102.70 140.75,97.31 140.81,92.80 140.87,89.18 140.93,86.46 140.99,84.64 141.06,83.74 141.12,83.74 141.18,84.64
|
||||
141.24,86.42 141.30,89.07 141.36,92.57 141.42,96.88 141.48,101.99 141.54,107.85 141.60,114.43 141.66,121.70 141.72,129.61 141.78,138.11 141.84,147.17 141.90,156.74 141.96,166.76 142.02,177.19 142.08,187.99 142.14,199.10
|
||||
142.20,210.48 142.26,222.07 142.32,233.84 142.38,245.73 142.44,257.71 142.50,269.72 142.56,281.74 142.62,293.72 142.68,305.62 142.74,317.42 142.81,329.07 142.87,340.56 142.93,351.86 142.99,362.94 143.05,373.78 143.11,384.37
|
||||
143.17,394.68 143.23,404.71 143.29,414.44 143.35,423.87 143.41,432.98 143.47,441.78 143.53,450.26 143.59,458.43 143.65,466.27 143.71,473.81 143.77,481.03 143.83,487.95 143.89,494.57 143.95,500.90 144.01,506.95 144.07,512.73
|
||||
144.13,518.25 144.19,523.52 144.25,528.54 144.31,533.34 144.37,537.93 144.43,542.30 144.49,546.48 144.56,550.48 144.62,554.31 144.68,557.97 144.74,561.48 144.80,564.85 144.86,568.09 144.92,571.20 144.98,574.20 145.04,577.09
|
||||
145.10,579.87 145.16,582.56 145.22,585.16 145.28,587.68 145.34,590.11 145.40,592.47 145.46,594.76 145.52,596.98 145.58,599.13 145.64,601.21 145.70,603.23 145.76,605.19 145.82,607.09 145.88,608.93 145.94,610.70 146.00,612.42
|
||||
146.06,614.07 146.12,615.67 146.18,617.20 146.24,618.67 146.31,620.08 146.37,621.44 146.43,622.73 146.49,623.96 146.55,625.13 146.61,626.24 146.67,627.29 146.73,628.29 146.79,629.23 146.85,630.11 146.91,630.94 146.97,631.72
|
||||
147.03,632.45 147.09,633.14 147.15,633.78 147.21,634.38 147.27,634.93 147.33,635.46 147.39,635.94 147.45,636.40 147.51,636.83 147.57,637.23 147.63,637.61 147.69,637.97 147.75,638.31 147.81,638.64 147.87,638.96 147.93,639.26
|
||||
147.99,639.56 148.06,639.85 148.12,640.14 148.18,640.43 148.24,640.71 148.30,640.99 148.36,641.27 148.42,641.56 148.48,641.84 148.54,642.13 148.60,642.42 148.66,642.72 148.72,643.01 148.78,643.31 148.84,643.62 148.90,643.92
|
||||
148.96,644.23 149.02,644.54 149.08,644.86 149.14,645.17 149.20,645.49 149.26,645.81 149.32,646.13 149.38,646.45 149.44,646.77 149.50,647.09 149.56,647.41 149.62,647.74 149.68,648.06 149.74,648.39 149.81,648.72 149.87,649.05
|
||||
149.93,649.37 149.99,649.70 150.05,650.04 150.11,650.37 150.17,650.70 150.23,651.04 150.29,651.37 150.35,651.71 150.41,652.04 150.47,652.38 150.53,652.72 150.59,653.06 150.65,653.39 150.71,653.73 150.77,654.06 150.83,654.39
|
||||
150.89,654.72 150.95,655.05 151.01,655.37 151.07,655.69 151.13,656.00 151.19,656.31 151.25,656.61 151.31,656.90 151.37,657.19 151.43,657.47 151.49,657.73 151.56,657.99 151.62,658.24 151.68,658.47 151.74,658.70 151.80,658.91
|
||||
151.86,659.11 151.92,659.29 151.98,659.46 152.04,659.62 152.10,659.76 152.16,659.89 152.22,660.00 152.28,660.10 152.34,660.19 152.40,660.25 152.46,660.31 152.52,660.34 152.58,660.37 152.64,660.37 152.70,660.36 152.76,660.34
|
||||
152.82,660.30 152.88,660.24 152.94,660.17 153.00,660.09 153.06,659.99 153.12,659.88 153.18,659.75 153.24,659.62 153.30,659.47 153.37,659.30 153.43,659.13 153.49,658.95 153.55,658.76 153.61,658.56 153.67,658.35 153.73,658.13
|
||||
153.79,657.91 153.85,657.69 153.91,657.46 153.97,657.24 154.03,657.01 154.09,656.78 154.15,656.55 154.21,656.33 154.27,656.11 154.33,655.90 154.39,655.70 154.45,655.50 154.51,655.32 154.57,655.14 154.63,654.98 154.69,654.84
|
||||
154.75,654.70 154.81,654.59 154.87,654.49 154.93,654.40 154.99,654.34 155.05,654.29 155.12,654.26 155.18,654.26 155.24,654.26 155.30,654.29 155.36,654.34 155.42,654.41 155.48,654.49 155.54,654.59 155.60,654.71 155.66,654.84
|
||||
155.72,654.99 155.78,655.15 155.84,655.32 155.90,655.51 155.96,655.71 156.02,655.92 156.08,656.13 156.14,656.35 156.20,656.58 156.26,656.81 156.32,657.04 156.38,657.28 156.44,657.51 156.50,657.75 156.56,657.98 156.62,658.21
|
||||
156.68,658.44 156.74,658.66 156.80,658.88 156.87,659.09 156.93,659.29 156.99,659.48 157.05,659.67 157.11,659.84 157.17,660.01 157.23,660.16 157.29,660.31 157.35,660.44 157.41,660.57 157.47,660.68 157.53,660.78 157.59,660.87
|
||||
157.65,660.94 157.71,661.01 157.77,661.06 157.83,661.10 157.89,661.13 157.95,661.15 158.01,661.16 158.07,661.15 158.13,661.13 158.19,661.10 158.25,661.06 158.31,661.01 158.37,660.94 158.43,660.86 158.49,660.77 158.55,660.67
|
||||
158.62,660.56 158.68,660.43 158.74,660.30 158.80,660.15 158.86,659.99 158.92,659.83 158.98,659.65 159.04,659.47 159.10,659.27 159.16,659.07 159.22,658.86 159.28,658.64 159.34,658.42 159.40,658.20 159.46,657.97 159.52,657.73
|
||||
159.58,657.50 159.64,657.26 159.70,657.03 159.76,656.79 159.82,656.56 159.88,656.33 159.94,656.11 160.00,655.90 160.06,655.69 160.12,655.50 160.18,655.31 160.24,655.14 160.30,654.98 160.37,654.83 160.43,654.70 160.49,654.58
|
||||
160.55,654.48 160.61,654.40 160.67,654.34 160.73,654.29 160.79,654.26 160.85,654.26 160.91,654.27 160.97,654.30 161.03,654.35 161.09,654.41 161.15,654.50 161.21,654.60 161.27,654.72 161.33,654.86 161.39,655.01 161.45,655.17
|
||||
161.51,655.35 161.57,655.53 161.63,655.73 161.69,655.94 161.75,656.16 161.81,656.38 161.87,656.61 161.93,656.84 161.99,657.08 162.05,657.32 162.12,657.55 162.18,657.79 162.24,658.03 162.30,658.26 162.36,658.49 162.42,658.72
|
||||
162.48,658.94 162.54,659.16 162.60,659.37 162.66,659.57 162.72,659.76 162.78,659.95 162.84,660.13 162.90,660.30 162.96,660.47 163.02,660.62 163.08,660.77 163.14,660.90 163.20,661.03 163.26,661.15 163.32,661.27 163.38,661.37
|
||||
163.44,661.47 163.50,661.56 163.56,661.64 163.62,661.72 163.68,661.79 163.74,661.85 163.80,661.91 163.87,661.96 163.93,662.01 163.99,662.06 164.05,662.10 164.11,662.13 164.17,662.16 164.23,662.19 164.29,662.22 164.35,662.24
|
||||
164.41,662.26 164.47,662.28 164.53,662.30 164.59,662.31 164.59,662.40 164.53,662.40 164.47,662.40 164.41,662.40 164.35,662.40 164.29,662.40 164.23,662.40 164.17,662.40 164.11,662.40 164.05,662.40 163.99,662.40 163.93,662.40
|
||||
163.87,662.40 163.80,662.40 163.74,662.40 163.68,662.40 163.62,662.40 163.56,662.40 163.50,662.40 163.44,662.40 163.38,662.40 163.32,662.40 163.26,662.40 163.20,662.40 163.14,662.40 163.08,662.40 163.02,662.40 162.96,662.40
|
||||
162.90,662.40 162.84,662.40 162.78,662.40 162.72,662.40 162.66,662.40 162.60,662.40 162.54,662.40 162.48,662.40 162.42,662.40 162.36,662.40 162.30,662.40 162.24,662.40 162.18,662.40 162.12,662.40 162.05,662.40 161.99,662.40
|
||||
161.93,662.40 161.87,662.40 161.81,662.40 161.75,662.40 161.69,662.40 161.63,662.40 161.57,662.40 161.51,662.40 161.45,662.40 161.39,662.40 161.33,662.40 161.27,662.40 161.21,662.40 161.15,662.40 161.09,662.40 161.03,662.40
|
||||
160.97,662.40 160.91,662.40 160.85,662.40 160.79,662.40 160.73,662.40 160.67,662.40 160.61,662.40 160.55,662.40 160.49,662.40 160.43,662.40 160.37,662.40 160.30,662.40 160.24,662.40 160.18,662.40 160.12,662.40 160.06,662.40
|
||||
160.00,662.40 159.94,662.40 159.88,662.40 159.82,662.40 159.76,662.40 159.70,662.40 159.64,662.40 159.58,662.40 159.52,662.40 159.46,662.40 159.40,662.40 159.34,662.40 159.28,662.40 159.22,662.40 159.16,662.40 159.10,662.40
|
||||
159.04,662.40 158.98,662.40 158.92,662.40 158.86,662.40 158.80,662.40 158.74,662.40 158.68,662.40 158.62,662.40 158.55,662.40 158.49,662.40 158.43,662.40 158.37,662.40 158.31,662.40 158.25,662.40 158.19,662.40 158.13,662.40
|
||||
158.07,662.40 158.01,662.40 157.95,662.40 157.89,662.40 157.83,662.40 157.77,662.40 157.71,662.40 157.65,662.40 157.59,662.40 157.53,662.40 157.47,662.40 157.41,662.40 157.35,662.40 157.29,662.40 157.23,662.40 157.17,662.40
|
||||
157.11,662.40 157.05,662.40 156.99,662.40 156.93,662.40 156.87,662.40 156.80,662.40 156.74,662.40 156.68,662.40 156.62,662.40 156.56,662.40 156.50,662.40 156.44,662.40 156.38,662.40 156.32,662.40 156.26,662.40 156.20,662.40
|
||||
156.14,662.40 156.08,662.40 156.02,662.40 155.96,662.40 155.90,662.40 155.84,662.40 155.78,662.40 155.72,662.40 155.66,662.40 155.60,662.40 155.54,662.40 155.48,662.40 155.42,662.40 155.36,662.40 155.30,662.40 155.24,662.40
|
||||
155.18,662.40 155.12,662.40 155.05,662.40 154.99,662.40 154.93,662.40 154.87,662.40 154.81,662.40 154.75,662.40 154.69,662.40 154.63,662.40 154.57,662.40 154.51,662.40 154.45,662.40 154.39,662.40 154.33,662.40 154.27,662.40
|
||||
154.21,662.40 154.15,662.40 154.09,662.40 154.03,662.40 153.97,662.40 153.91,662.40 153.85,662.40 153.79,662.40 153.73,662.40 153.67,662.40 153.61,662.40 153.55,662.40 153.49,662.40 153.43,662.40 153.37,662.40 153.30,662.40
|
||||
153.24,662.40 153.18,662.40 153.12,662.40 153.06,662.40 153.00,662.40 152.94,662.40 152.88,662.40 152.82,662.40 152.76,662.40 152.70,662.40 152.64,662.40 152.58,662.40 152.52,662.40 152.46,662.40 152.40,662.40 152.34,662.40
|
||||
152.28,662.40 152.22,662.40 152.16,662.40 152.10,662.40 152.04,662.40 151.98,662.40 151.92,662.40 151.86,662.40 151.80,662.40 151.74,662.40 151.68,662.40 151.62,662.40 151.56,662.40 151.49,662.40 151.43,662.40 151.37,662.40
|
||||
151.31,662.40 151.25,662.40 151.19,662.40 151.13,662.40 151.07,662.40 151.01,662.40 150.95,662.40 150.89,662.40 150.83,662.40 150.77,662.40 150.71,662.40 150.65,662.40 150.59,662.40 150.53,662.40 150.47,662.40 150.41,662.40
|
||||
150.35,662.40 150.29,662.40 150.23,662.40 150.17,662.40 150.11,662.40 150.05,662.40 149.99,662.40 149.93,662.40 149.87,662.40 149.81,662.40 149.74,662.40 149.68,662.40 149.62,662.40 149.56,662.40 149.50,662.40 149.44,662.40
|
||||
149.38,662.40 149.32,662.40 149.26,662.40 149.20,662.40 149.14,662.40 149.08,662.40 149.02,662.40 148.96,662.40 148.90,662.40 148.84,662.40 148.78,662.40 148.72,662.40 148.66,662.40 148.60,662.40 148.54,662.40 148.48,662.40
|
||||
148.42,662.40 148.36,662.40 148.30,662.40 148.24,662.40 148.18,662.40 148.12,662.40 148.06,662.40 147.99,662.40 147.93,662.40 147.87,662.40 147.81,662.40 147.75,662.40 147.69,662.40 147.63,662.40 147.57,662.40 147.51,662.40
|
||||
147.45,662.40 147.39,662.40 147.33,662.40 147.27,662.40 147.21,662.40 147.15,662.40 147.09,662.40 147.03,662.40 146.97,662.40 146.91,662.40 146.85,662.40 146.79,662.40 146.73,662.40 146.67,662.40 146.61,662.40 146.55,662.40
|
||||
146.49,662.40 146.43,662.40 146.37,662.40 146.31,662.40 146.24,662.40 146.18,662.40 146.12,662.40 146.06,662.40 146.00,662.40 145.94,662.40 145.88,662.40 145.82,662.40 145.76,662.40 145.70,662.40 145.64,662.40 145.58,662.40
|
||||
145.52,662.40 145.46,662.40 145.40,662.40 145.34,662.40 145.28,662.40 145.22,662.40 145.16,662.40 145.10,662.40 145.04,662.40 144.98,662.40 144.92,662.40 144.86,662.40 144.80,662.40 144.74,662.40 144.68,662.40 144.62,662.40
|
||||
144.56,662.40 144.49,662.40 144.43,662.40 144.37,662.40 144.31,662.40 144.25,662.40 144.19,662.40 144.13,662.40 144.07,662.40 144.01,662.40 143.95,662.40 143.89,662.40 143.83,662.40 143.77,662.40 143.71,662.40 143.65,662.40
|
||||
143.59,662.40 143.53,662.40 143.47,662.40 143.41,662.40 143.35,662.40 143.29,662.40 143.23,662.40 143.17,662.40 143.11,662.40 143.05,662.40 142.99,662.40 142.93,662.40 142.87,662.40 142.81,662.40 142.74,662.40 142.68,662.40
|
||||
142.62,662.40 142.56,662.40 142.50,662.40 142.44,662.40 142.38,662.40 142.32,662.40 142.26,662.40 142.20,662.40 142.14,662.40 142.08,662.40 142.02,662.40 141.96,662.40 141.90,662.40 141.84,662.40 141.78,662.40 141.72,662.40
|
||||
141.66,662.40 141.60,662.40 141.54,662.40 141.48,662.40 141.42,662.40 141.36,662.40 141.30,662.40 141.24,662.40 141.18,662.40 141.12,662.40 141.06,662.40 140.99,662.40 140.93,662.40 140.87,662.40 140.81,662.40 140.75,662.40
|
||||
140.69,662.40 140.63,662.40 140.57,662.40 140.51,662.40 140.45,662.40 140.39,662.40 140.33,662.40 140.27,662.40 140.21,662.40 140.15,662.40 140.09,662.40 140.03,662.40 139.97,662.40 139.91,662.40 139.85,662.40 139.79,662.40
|
||||
139.73,662.40 139.67,662.40 139.61,662.40 139.55,662.40 139.49,662.40 139.43,662.40 139.37,662.40 139.31,662.40 139.24,662.40 139.18,662.40 139.12,662.40 139.06,662.40 139.00,662.40 138.94,662.40 138.88,662.40 138.82,662.40
|
||||
138.76,662.40 138.70,662.40 138.64,662.40 138.58,662.40 138.52,662.40 138.46,662.40 138.40,662.40 138.34,662.40 138.28,662.40 138.22,662.40 138.16,662.40 138.10,662.40 138.04,662.40 137.98,662.40 137.92,662.40 137.86,662.40
|
||||
137.80,662.40 137.74,662.40 137.68,662.40 137.62,662.40 137.56,662.40 137.49,662.40 137.43,662.40 137.37,662.40 137.31,662.40 137.25,662.40 137.19,662.40 137.13,662.40 137.07,662.40 137.01,662.40 136.95,662.40 136.89,662.40
|
||||
136.83,662.40 136.77,662.40 136.71,662.40 136.65,662.40 136.59,662.40 136.53,662.40 136.47,662.40 136.41,662.40 136.35,662.40 136.29,662.40 136.23,662.40 136.17,662.40 136.11,662.40 136.05,662.40 135.99,662.40 135.93,662.40
|
||||
135.87,662.40 135.81,662.40 135.74,662.40 135.68,662.40 135.62,662.40 135.56,662.40 135.50,662.40 135.44,662.40 135.38,662.40 135.32,662.40 135.26,662.40 135.20,662.40 135.14,662.40 135.08,662.40 135.02,662.40 134.96,662.40
|
||||
134.90,662.40 134.84,662.40 134.78,662.40 134.72,662.40 134.66,662.40 134.60,662.40 134.54,662.40 134.48,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1145.14,117.01 L1187.70,117.01 M142.01,662.40 L142.01,174.80 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/derive_public_key</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 44 KiB |
@@ -0,0 +1,396 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L1254.82,644.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L81.53,644.40 '/> <g transform="translate(64.14,648.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,585.36 L1254.82,585.36 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,585.36 L81.53,585.36 '/> <g transform="translate(64.14,589.26)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,526.32 L1254.82,526.32 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,526.32 L81.53,526.32 '/> <g transform="translate(64.14,530.22)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,467.28 L1254.82,467.28 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,467.28 L81.53,467.28 '/> <g transform="translate(64.14,471.18)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,408.24 L1254.82,408.24 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,408.24 L81.53,408.24 '/> <g transform="translate(64.14,412.14)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,349.20 L1254.82,349.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,349.20 L81.53,349.20 '/> <g transform="translate(64.14,353.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,290.17 L1254.82,290.17 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,290.17 L81.53,290.17 '/> <g transform="translate(64.14,294.07)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,231.13 L1254.82,231.13 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,231.13 L81.53,231.13 '/> <g transform="translate(64.14,235.03)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 140</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,172.09 L1254.82,172.09 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,172.09 L81.53,172.09 '/> <g transform="translate(64.14,175.99)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 160</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,113.05 L1254.82,113.05 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,113.05 L81.53,113.05 '/> <g transform="translate(64.14,116.95)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 180</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,54.01 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L72.53,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L72.53,635.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M190.76,644.40 L190.76,99.01 M190.76,63.01 L190.76,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M190.76,644.40 L190.76,635.40 '/> <g transform="translate(190.76,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M308.99,644.40 L308.99,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M308.99,644.40 L308.99,635.40 '/> <g transform="translate(308.99,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M427.22,644.40 L427.22,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M427.22,644.40 L427.22,635.40 '/> <g transform="translate(427.22,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M545.45,644.40 L545.45,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M545.45,644.40 L545.45,635.40 '/> <g transform="translate(545.45,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M663.68,644.40 L663.68,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M663.68,644.40 L663.68,635.40 '/> <g transform="translate(663.68,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M781.90,644.40 L781.90,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M781.90,644.40 L781.90,635.40 '/> <g transform="translate(781.90,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M900.13,644.40 L900.13,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M900.13,644.40 L900.13,635.40 '/> <g transform="translate(900.13,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1018.36,644.40 L1018.36,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1018.36,644.40 L1018.36,635.40 '/> <g transform="translate(1018.36,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1136.59,644.40 L1136.59,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1136.59,644.40 L1136.59,635.40 '/> <g transform="translate(1136.59,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1254.82,644.40 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1254.82,644.40 L1254.82,635.40 '/> <g transform="translate(1254.82,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,101.98 1195.71,101.71 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,345.63 1195.71,345.53 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,75.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M89.31,72.01 L131.87,72.01 M72.53,644.40 L1195.71,101.85 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,93.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M89.31,90.01 L131.87,90.01 M72.53,644.40 L1195.71,345.58 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,349.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,693.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/derive_public_key</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 27 KiB |
320
benchmarks/babyjubjub/derive_public_key/report/change/mean.svg
Normal file
@@ -0,0 +1,320 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,601.56 L89.92,601.56 '/> <g transform="translate(72.53,605.46)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,540.72 L89.92,540.72 '/> <g transform="translate(72.53,544.62)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,479.88 L89.92,479.88 '/> <g transform="translate(72.53,483.78)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,419.04 L89.92,419.04 '/> <g transform="translate(72.53,422.94)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,358.20 L89.92,358.20 '/> <g transform="translate(72.53,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,297.37 L89.92,297.37 '/> <g transform="translate(72.53,301.27)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,236.53 L89.92,236.53 '/> <g transform="translate(72.53,240.43)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,175.69 L89.92,175.69 '/> <g transform="translate(72.53,179.59)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,114.85 L89.92,114.85 '/> <g transform="translate(72.53,118.75)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M144.88,662.40 L144.88,653.40 '/> <g transform="translate(144.88,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.98</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M320.54,662.40 L320.54,653.40 '/> <g transform="translate(320.54,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.96</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M496.19,662.40 L496.19,653.40 '/> <g transform="translate(496.19,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.94</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M671.84,662.40 L671.84,653.40 '/> <g transform="translate(671.84,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.92</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M847.49,662.40 L847.49,653.40 '/> <g transform="translate(847.49,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.9</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M80.92,631.67 L82.78,631.06 L84.65,630.44 L86.51,629.80 L88.37,629.14 L90.24,628.46
|
||||
L92.10,627.76 L93.97,627.05 L95.83,626.31 L97.69,625.56 L99.56,624.79 L101.42,624.00 L103.28,623.19 L105.15,622.35
|
||||
L107.01,621.50 L108.88,620.62 L110.74,619.73 L112.60,618.81 L114.47,617.87 L116.33,616.91 L118.19,615.92 L120.06,614.91
|
||||
L121.92,613.88 L123.78,612.83 L125.65,611.76 L127.51,610.66 L129.38,609.55 L131.24,608.42 L133.10,607.27 L134.97,606.12
|
||||
L136.83,604.95 L138.69,603.77 L140.56,602.58 L142.42,601.39 L144.29,600.20 L146.15,599.01 L148.01,597.83 L149.88,596.65
|
||||
L151.74,595.47 L153.60,594.30 L155.47,593.14 L157.33,591.99 L159.19,590.84 L161.06,589.70 L162.92,588.57 L164.79,587.43
|
||||
L166.65,586.29 L168.51,585.14 L170.38,583.99 L172.24,582.82 L174.10,581.63 L175.97,580.42 L177.83,579.18 L179.70,577.90
|
||||
L181.56,576.59 L183.42,575.24 L185.29,573.84 L187.15,572.39 L189.01,570.89 L190.88,569.34 L192.74,567.72 L194.60,566.05
|
||||
L196.47,564.32 L198.33,562.53 L200.20,560.68 L202.06,558.77 L203.92,556.80 L205.79,554.78 L207.65,552.70 L209.51,550.58
|
||||
L211.38,548.42 L213.24,546.21 L215.11,543.97 L216.97,541.71 L218.83,539.42 L220.70,537.11 L222.56,534.80 L224.42,532.49
|
||||
L226.29,530.17 L228.15,527.87 L230.01,525.59 L231.88,523.32 L233.74,521.07 L235.61,518.85 L237.47,516.66 L239.33,514.49
|
||||
L241.20,512.36 L243.06,510.24 L244.92,508.15 L246.79,506.08 L248.65,504.03 L250.52,501.98 L252.38,499.93 L254.24,497.88
|
||||
L256.11,495.82 L257.97,493.74 L259.83,491.63 L261.70,489.49 L263.56,487.31 L265.43,485.08 L267.29,482.79 L269.15,480.45
|
||||
L271.02,478.04 L272.88,475.57 L274.74,473.03 L276.61,470.42 L278.47,467.74 L280.33,464.99 L282.20,462.18 L284.06,459.30
|
||||
L285.93,456.37 L287.79,453.39 L289.65,450.37 L291.52,447.31 L293.38,444.23 L295.24,441.12 L297.11,438.00 L298.97,434.88
|
||||
L300.84,431.75 L302.70,428.63 L304.56,425.53 L306.43,422.43 L308.29,419.35 L310.15,416.29 L312.02,413.24 L313.88,410.22
|
||||
L315.74,407.20 L317.61,404.20 L319.47,401.20 L321.34,398.21 L323.20,395.22 L325.06,392.24 L326.93,389.25 L328.79,386.26
|
||||
L330.65,383.26 L332.52,380.25 L334.38,377.24 L336.25,374.22 L338.11,371.20 L339.97,368.18 L341.84,365.15 L343.70,362.13
|
||||
L345.56,359.11 L347.43,356.09 L349.29,353.09 L351.15,350.09 L353.02,347.11 L354.88,344.14 L356.75,341.19 L358.61,338.26
|
||||
L360.47,335.34 L362.34,332.43 L364.20,329.55 L366.06,326.67 L367.93,323.82 L369.79,320.97 L371.66,318.13 L373.52,315.30
|
||||
L375.38,312.48 L377.25,309.65 L379.11,306.82 L380.97,303.99 L382.84,301.15 L384.70,298.30 L386.56,295.43 L388.43,292.54
|
||||
L390.29,289.63 L392.16,286.70 L394.02,283.74 L395.88,280.76 L397.75,277.75 L399.61,274.72 L401.47,271.66 L403.34,268.58
|
||||
L405.20,265.49 L407.07,262.38 L408.93,259.26 L410.79,256.13 L412.66,252.99 L414.52,249.86 L416.38,246.73 L418.25,243.62
|
||||
L420.11,240.51 L421.97,237.42 L423.84,234.35 L425.70,231.31 L427.57,228.29 L429.43,225.30 L431.29,222.35 L433.16,219.43
|
||||
L435.02,216.54 L436.88,213.69 L438.75,210.89 L440.61,208.12 L442.48,205.39 L444.34,202.71 L446.20,200.07 L448.07,197.47
|
||||
L449.93,194.91 L451.79,192.40 L453.66,189.92 L455.52,187.49 L457.38,185.09 L459.25,182.73 L461.11,180.41 L462.98,178.13
|
||||
L464.84,175.88 L466.70,173.66 L468.57,171.48 L470.43,169.34 L472.29,167.23 L474.16,165.16 L476.02,163.13 L477.89,161.14
|
||||
L479.75,159.19 L481.61,157.30 L483.48,155.45 L485.34,153.66 L487.20,151.93 L489.07,150.26 L490.93,148.65 L492.79,147.10
|
||||
L494.66,145.61 L496.52,144.19 L498.39,142.83 L500.25,141.53 L502.11,140.29 L503.98,139.11 L505.84,137.97 L507.70,136.88
|
||||
L509.57,135.84 L511.43,134.82 L513.30,133.84 L515.16,132.89 L517.02,131.96 L518.89,131.05 L520.75,130.15 L522.61,129.27
|
||||
L524.48,128.39 L526.34,127.53 L528.20,126.67 L530.07,125.82 L531.93,124.98 L533.80,124.15 L535.66,123.34 L537.52,122.53
|
||||
L539.39,121.75 L541.25,120.98 L543.11,120.24 L544.98,119.52 L546.84,118.83 L548.71,118.18 L550.57,117.56 L552.43,116.99
|
||||
L554.30,116.46 L556.16,115.97 L558.02,115.54 L559.89,115.17 L561.75,114.85 L563.62,114.59 L565.48,114.40 L567.34,114.27
|
||||
L569.21,114.21 L571.07,114.23 L572.93,114.32 L574.80,114.48 L576.66,114.72 L578.52,115.03 L580.39,115.42 L582.25,115.89
|
||||
L584.12,116.42 L585.98,117.03 L587.84,117.71 L589.71,118.46 L591.57,119.27 L593.43,120.14 L595.30,121.07 L597.16,122.06
|
||||
L599.03,123.10 L600.89,124.19 L602.75,125.33 L604.62,126.52 L606.48,127.76 L608.34,129.04 L610.21,130.37 L612.07,131.74
|
||||
L613.93,133.16 L615.80,134.61 L617.66,136.11 L619.53,137.66 L621.39,139.25 L623.25,140.88 L625.12,142.55 L626.98,144.27
|
||||
L628.84,146.03 L630.71,147.83 L632.57,149.67 L634.44,151.55 L636.30,153.48 L638.16,155.44 L640.03,157.45 L641.89,159.49
|
||||
L643.75,161.57 L645.62,163.69 L647.48,165.85 L649.34,168.04 L651.21,170.26 L653.07,172.52 L654.94,174.81 L656.80,177.13
|
||||
L658.66,179.48 L660.53,181.86 L662.39,184.28 L664.25,186.72 L666.12,189.20 L667.98,191.71 L669.85,194.26 L671.71,196.83
|
||||
L673.57,199.45 L675.44,202.11 L677.30,204.80 L679.16,207.53 L681.03,210.31 L682.89,213.12 L684.75,215.98 L686.62,218.87
|
||||
L688.48,221.80 L690.35,224.75 L692.21,227.73 L694.07,230.74 L695.94,233.76 L697.80,236.78 L699.66,239.81 L701.53,242.84
|
||||
L703.39,245.86 L705.26,248.87 L707.12,251.86 L708.98,254.84 L710.85,257.79 L712.71,260.72 L714.57,263.63 L716.44,266.51
|
||||
L718.30,269.39 L720.16,272.24 L722.03,275.09 L723.89,277.94 L725.76,280.78 L727.62,283.63 L729.48,286.49 L731.35,289.37
|
||||
L733.21,292.26 L735.07,295.19 L736.94,298.14 L738.80,301.13 L740.67,304.15 L742.53,307.21 L744.39,310.32 L746.26,313.47
|
||||
L748.12,316.67 L749.98,319.90 L751.85,323.19 L753.71,326.52 L755.57,329.89 L757.44,333.30 L759.30,336.75 L761.17,340.23
|
||||
L763.03,343.74 L764.89,347.28 L766.76,350.83 L768.62,354.40 L770.48,357.97 L772.35,361.55 L774.21,365.12 L776.08,368.69
|
||||
L777.94,372.23 L779.80,375.75 L781.67,379.25 L783.53,382.71 L785.39,386.13 L787.26,389.52 L789.12,392.86 L790.98,396.16
|
||||
L792.85,399.42 L794.71,402.63 L796.58,405.80 L798.44,408.92 L800.30,412.00 L802.17,415.04 L804.03,418.05 L805.89,421.02
|
||||
L807.76,423.96 L809.62,426.87 L811.49,429.75 L813.35,432.62 L815.21,435.46 L817.08,438.29 L818.94,441.11 L820.80,443.92
|
||||
L822.67,446.72 L824.53,449.51 L826.39,452.30 L828.26,455.08 L830.12,457.86 L831.99,460.64 L833.85,463.41 L835.71,466.17
|
||||
L837.58,468.93 L839.44,471.67 L841.30,474.41 L843.17,477.13 L845.03,479.83 L846.90,482.52 L848.76,485.19 L850.62,487.83
|
||||
L852.49,490.46 L854.35,493.07 L856.21,495.65 L858.08,498.21 L859.94,500.75 L861.81,503.28 L863.67,505.78 L865.53,508.27
|
||||
L867.40,510.74 L869.26,513.20 L871.12,515.65 L872.99,518.08 L874.85,520.50 L876.71,522.92 L878.58,525.32 L880.44,527.71
|
||||
L882.31,530.08 L884.17,532.44 L886.03,534.79 L887.90,537.11 L889.76,539.41 L891.62,541.69 L893.49,543.93 L895.35,546.15
|
||||
L897.22,548.33 L899.08,550.47 L900.94,552.58 L902.81,554.65 L904.67,556.67 L906.53,558.65 L908.40,560.59 L910.26,562.48
|
||||
L912.12,564.34 L913.99,566.15 L915.85,567.92 L917.72,569.66 L919.58,571.36 L921.44,573.02 L923.31,574.65 L925.17,576.24
|
||||
L927.03,577.81 L928.90,579.35 L930.76,580.86 L932.63,582.35 L934.49,583.82 L936.35,585.26 L938.22,586.68 L940.08,588.08
|
||||
L941.94,589.46 L943.81,590.82 L945.67,592.17 L947.53,593.50 L949.40,594.82 L951.26,596.13 L953.13,597.42 L954.99,598.69
|
||||
L956.85,599.96 L958.72,601.22 L960.58,602.46 L962.44,603.69 L964.31,604.91 L966.17,606.12 L968.04,607.32 L969.90,608.51
|
||||
L971.76,609.68 L973.63,610.83 L975.49,611.97 L977.35,613.10 L979.22,614.21 L981.08,615.30 L982.94,616.37 L984.81,617.42
|
||||
L986.67,618.45 L988.54,619.46 L990.40,620.45 L992.26,621.42 L994.13,622.37 L995.99,623.30 L997.85,624.21 L999.72,625.10
|
||||
L1001.58,625.97 L1003.45,626.83 L1005.31,627.67 L1007.17,628.49 L1009.04,629.30 L1010.90,630.09 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '166.65,586.29 168.51,585.14 170.38,583.99 172.24,582.82 174.10,581.63 175.97,580.42 177.83,579.18 179.70,577.90 181.56,576.59 183.42,575.24 185.29,573.84 187.15,572.39 189.01,570.89 190.88,569.34 192.74,567.72 194.60,566.05
|
||||
196.47,564.32 198.33,562.53 200.20,560.68 202.06,558.77 203.92,556.80 205.79,554.78 207.65,552.70 209.51,550.58 211.38,548.42 213.24,546.21 215.11,543.97 216.97,541.71 218.83,539.42 220.70,537.11 222.56,534.80 224.42,532.49
|
||||
226.29,530.17 228.15,527.87 230.01,525.59 231.88,523.32 233.74,521.07 235.61,518.85 237.47,516.66 239.33,514.49 241.20,512.36 243.06,510.24 244.92,508.15 246.79,506.08 248.65,504.03 250.52,501.98 252.38,499.93 254.24,497.88
|
||||
256.11,495.82 257.97,493.74 259.83,491.63 261.70,489.49 263.56,487.31 265.43,485.08 267.29,482.79 269.15,480.45 271.02,478.04 272.88,475.57 274.74,473.03 276.61,470.42 278.47,467.74 280.33,464.99 282.20,462.18 284.06,459.30
|
||||
285.93,456.37 287.79,453.39 289.65,450.37 291.52,447.31 293.38,444.23 295.24,441.12 297.11,438.00 298.97,434.88 300.84,431.75 302.70,428.63 304.56,425.53 306.43,422.43 308.29,419.35 310.15,416.29 312.02,413.24 313.88,410.22
|
||||
315.74,407.20 317.61,404.20 319.47,401.20 321.34,398.21 323.20,395.22 325.06,392.24 326.93,389.25 328.79,386.26 330.65,383.26 332.52,380.25 334.38,377.24 336.25,374.22 338.11,371.20 339.97,368.18 341.84,365.15 343.70,362.13
|
||||
345.56,359.11 347.43,356.09 349.29,353.09 351.15,350.09 353.02,347.11 354.88,344.14 356.75,341.19 358.61,338.26 360.47,335.34 362.34,332.43 364.20,329.55 366.06,326.67 367.93,323.82 369.79,320.97 371.66,318.13 373.52,315.30
|
||||
375.38,312.48 377.25,309.65 379.11,306.82 380.97,303.99 382.84,301.15 384.70,298.30 386.56,295.43 388.43,292.54 390.29,289.63 392.16,286.70 394.02,283.74 395.88,280.76 397.75,277.75 399.61,274.72 401.47,271.66 403.34,268.58
|
||||
405.20,265.49 407.07,262.38 408.93,259.26 410.79,256.13 412.66,252.99 414.52,249.86 416.38,246.73 418.25,243.62 420.11,240.51 421.97,237.42 423.84,234.35 425.70,231.31 427.57,228.29 429.43,225.30 431.29,222.35 433.16,219.43
|
||||
435.02,216.54 436.88,213.69 438.75,210.89 440.61,208.12 442.48,205.39 444.34,202.71 446.20,200.07 448.07,197.47 449.93,194.91 451.79,192.40 453.66,189.92 455.52,187.49 457.38,185.09 459.25,182.73 461.11,180.41 462.98,178.13
|
||||
464.84,175.88 466.70,173.66 468.57,171.48 470.43,169.34 472.29,167.23 474.16,165.16 476.02,163.13 477.89,161.14 479.75,159.19 481.61,157.30 483.48,155.45 485.34,153.66 487.20,151.93 489.07,150.26 490.93,148.65 492.79,147.10
|
||||
494.66,145.61 496.52,144.19 498.39,142.83 500.25,141.53 502.11,140.29 503.98,139.11 505.84,137.97 507.70,136.88 509.57,135.84 511.43,134.82 513.30,133.84 515.16,132.89 517.02,131.96 518.89,131.05 520.75,130.15 522.61,129.27
|
||||
524.48,128.39 526.34,127.53 528.20,126.67 530.07,125.82 531.93,124.98 533.80,124.15 535.66,123.34 537.52,122.53 539.39,121.75 541.25,120.98 543.11,120.24 544.98,119.52 546.84,118.83 548.71,118.18 550.57,117.56 552.43,116.99
|
||||
554.30,116.46 556.16,115.97 558.02,115.54 559.89,115.17 561.75,114.85 563.62,114.59 565.48,114.40 567.34,114.27 569.21,114.21 571.07,114.23 572.93,114.32 574.80,114.48 576.66,114.72 578.52,115.03 580.39,115.42 582.25,115.89
|
||||
584.12,116.42 585.98,117.03 587.84,117.71 589.71,118.46 591.57,119.27 593.43,120.14 595.30,121.07 597.16,122.06 599.03,123.10 600.89,124.19 602.75,125.33 604.62,126.52 606.48,127.76 608.34,129.04 610.21,130.37 612.07,131.74
|
||||
613.93,133.16 615.80,134.61 617.66,136.11 619.53,137.66 621.39,139.25 623.25,140.88 625.12,142.55 626.98,144.27 628.84,146.03 630.71,147.83 632.57,149.67 634.44,151.55 636.30,153.48 638.16,155.44 640.03,157.45 641.89,159.49
|
||||
643.75,161.57 645.62,163.69 647.48,165.85 649.34,168.04 651.21,170.26 653.07,172.52 654.94,174.81 656.80,177.13 658.66,179.48 660.53,181.86 662.39,184.28 664.25,186.72 666.12,189.20 667.98,191.71 669.85,194.26 671.71,196.83
|
||||
673.57,199.45 675.44,202.11 677.30,204.80 679.16,207.53 681.03,210.31 682.89,213.12 684.75,215.98 686.62,218.87 688.48,221.80 690.35,224.75 692.21,227.73 694.07,230.74 695.94,233.76 697.80,236.78 699.66,239.81 701.53,242.84
|
||||
703.39,245.86 705.26,248.87 707.12,251.86 708.98,254.84 710.85,257.79 712.71,260.72 714.57,263.63 716.44,266.51 718.30,269.39 720.16,272.24 722.03,275.09 723.89,277.94 725.76,280.78 727.62,283.63 729.48,286.49 731.35,289.37
|
||||
733.21,292.26 735.07,295.19 736.94,298.14 738.80,301.13 740.67,304.15 742.53,307.21 744.39,310.32 746.26,313.47 748.12,316.67 749.98,319.90 751.85,323.19 753.71,326.52 755.57,329.89 757.44,333.30 759.30,336.75 761.17,340.23
|
||||
763.03,343.74 764.89,347.28 766.76,350.83 768.62,354.40 770.48,357.97 772.35,361.55 774.21,365.12 776.08,368.69 777.94,372.23 779.80,375.75 781.67,379.25 783.53,382.71 785.39,386.13 787.26,389.52 789.12,392.86 790.98,396.16
|
||||
792.85,399.42 794.71,402.63 796.58,405.80 798.44,408.92 800.30,412.00 802.17,415.04 804.03,418.05 805.89,421.02 807.76,423.96 809.62,426.87 811.49,429.75 813.35,432.62 815.21,435.46 817.08,438.29 818.94,441.11 820.80,443.92
|
||||
822.67,446.72 824.53,449.51 826.39,452.30 828.26,455.08 830.12,457.86 831.99,460.64 833.85,463.41 835.71,466.17 837.58,468.93 839.44,471.67 841.30,474.41 843.17,477.13 845.03,479.83 846.90,482.52 848.76,485.19 850.62,487.83
|
||||
852.49,490.46 854.35,493.07 856.21,495.65 858.08,498.21 859.94,500.75 861.81,503.28 863.67,505.78 865.53,508.27 867.40,510.74 869.26,513.20 871.12,515.65 872.99,518.08 874.85,520.50 876.71,522.92 878.58,525.32 880.44,527.71
|
||||
882.31,530.08 884.17,532.44 886.03,534.79 887.90,537.11 889.76,539.41 891.62,541.69 893.49,543.93 895.35,546.15 897.22,548.33 899.08,550.47 900.94,552.58 902.81,554.65 904.67,556.67 906.53,558.65 908.40,560.59 910.26,562.48
|
||||
912.12,564.34 913.99,566.15 915.85,567.92 917.72,569.66 919.58,571.36 921.44,573.02 923.31,574.65 923.31,662.40 921.44,662.40 919.58,662.40 917.72,662.40 915.85,662.40 913.99,662.40 912.12,662.40 910.26,662.40 908.40,662.40
|
||||
906.53,662.40 904.67,662.40 902.81,662.40 900.94,662.40 899.08,662.40 897.22,662.40 895.35,662.40 893.49,662.40 891.62,662.40 889.76,662.40 887.90,662.40 886.03,662.40 884.17,662.40 882.31,662.40 880.44,662.40 878.58,662.40
|
||||
876.71,662.40 874.85,662.40 872.99,662.40 871.12,662.40 869.26,662.40 867.40,662.40 865.53,662.40 863.67,662.40 861.81,662.40 859.94,662.40 858.08,662.40 856.21,662.40 854.35,662.40 852.49,662.40 850.62,662.40 848.76,662.40
|
||||
846.90,662.40 845.03,662.40 843.17,662.40 841.30,662.40 839.44,662.40 837.58,662.40 835.71,662.40 833.85,662.40 831.99,662.40 830.12,662.40 828.26,662.40 826.39,662.40 824.53,662.40 822.67,662.40 820.80,662.40 818.94,662.40
|
||||
817.08,662.40 815.21,662.40 813.35,662.40 811.49,662.40 809.62,662.40 807.76,662.40 805.89,662.40 804.03,662.40 802.17,662.40 800.30,662.40 798.44,662.40 796.58,662.40 794.71,662.40 792.85,662.40 790.98,662.40 789.12,662.40
|
||||
787.26,662.40 785.39,662.40 783.53,662.40 781.67,662.40 779.80,662.40 777.94,662.40 776.08,662.40 774.21,662.40 772.35,662.40 770.48,662.40 768.62,662.40 766.76,662.40 764.89,662.40 763.03,662.40 761.17,662.40 759.30,662.40
|
||||
757.44,662.40 755.57,662.40 753.71,662.40 751.85,662.40 749.98,662.40 748.12,662.40 746.26,662.40 744.39,662.40 742.53,662.40 740.67,662.40 738.80,662.40 736.94,662.40 735.07,662.40 733.21,662.40 731.35,662.40 729.48,662.40
|
||||
727.62,662.40 725.76,662.40 723.89,662.40 722.03,662.40 720.16,662.40 718.30,662.40 716.44,662.40 714.57,662.40 712.71,662.40 710.85,662.40 708.98,662.40 707.12,662.40 705.26,662.40 703.39,662.40 701.53,662.40 699.66,662.40
|
||||
697.80,662.40 695.94,662.40 694.07,662.40 692.21,662.40 690.35,662.40 688.48,662.40 686.62,662.40 684.75,662.40 682.89,662.40 681.03,662.40 679.16,662.40 677.30,662.40 675.44,662.40 673.57,662.40 671.71,662.40 669.85,662.40
|
||||
667.98,662.40 666.12,662.40 664.25,662.40 662.39,662.40 660.53,662.40 658.66,662.40 656.80,662.40 654.94,662.40 653.07,662.40 651.21,662.40 649.34,662.40 647.48,662.40 645.62,662.40 643.75,662.40 641.89,662.40 640.03,662.40
|
||||
638.16,662.40 636.30,662.40 634.44,662.40 632.57,662.40 630.71,662.40 628.84,662.40 626.98,662.40 625.12,662.40 623.25,662.40 621.39,662.40 619.53,662.40 617.66,662.40 615.80,662.40 613.93,662.40 612.07,662.40 610.21,662.40
|
||||
608.34,662.40 606.48,662.40 604.62,662.40 602.75,662.40 600.89,662.40 599.03,662.40 597.16,662.40 595.30,662.40 593.43,662.40 591.57,662.40 589.71,662.40 587.84,662.40 585.98,662.40 584.12,662.40 582.25,662.40 580.39,662.40
|
||||
578.52,662.40 576.66,662.40 574.80,662.40 572.93,662.40 571.07,662.40 569.21,662.40 567.34,662.40 565.48,662.40 563.62,662.40 561.75,662.40 559.89,662.40 558.02,662.40 556.16,662.40 554.30,662.40 552.43,662.40 550.57,662.40
|
||||
548.71,662.40 546.84,662.40 544.98,662.40 543.11,662.40 541.25,662.40 539.39,662.40 537.52,662.40 535.66,662.40 533.80,662.40 531.93,662.40 530.07,662.40 528.20,662.40 526.34,662.40 524.48,662.40 522.61,662.40 520.75,662.40
|
||||
518.89,662.40 517.02,662.40 515.16,662.40 513.30,662.40 511.43,662.40 509.57,662.40 507.70,662.40 505.84,662.40 503.98,662.40 502.11,662.40 500.25,662.40 498.39,662.40 496.52,662.40 494.66,662.40 492.79,662.40 490.93,662.40
|
||||
489.07,662.40 487.20,662.40 485.34,662.40 483.48,662.40 481.61,662.40 479.75,662.40 477.89,662.40 476.02,662.40 474.16,662.40 472.29,662.40 470.43,662.40 468.57,662.40 466.70,662.40 464.84,662.40 462.98,662.40 461.11,662.40
|
||||
459.25,662.40 457.38,662.40 455.52,662.40 453.66,662.40 451.79,662.40 449.93,662.40 448.07,662.40 446.20,662.40 444.34,662.40 442.48,662.40 440.61,662.40 438.75,662.40 436.88,662.40 435.02,662.40 433.16,662.40 431.29,662.40
|
||||
429.43,662.40 427.57,662.40 425.70,662.40 423.84,662.40 421.97,662.40 420.11,662.40 418.25,662.40 416.38,662.40 414.52,662.40 412.66,662.40 410.79,662.40 408.93,662.40 407.07,662.40 405.20,662.40 403.34,662.40 401.47,662.40
|
||||
399.61,662.40 397.75,662.40 395.88,662.40 394.02,662.40 392.16,662.40 390.29,662.40 388.43,662.40 386.56,662.40 384.70,662.40 382.84,662.40 380.97,662.40 379.11,662.40 377.25,662.40 375.38,662.40 373.52,662.40 371.66,662.40
|
||||
369.79,662.40 367.93,662.40 366.06,662.40 364.20,662.40 362.34,662.40 360.47,662.40 358.61,662.40 356.75,662.40 354.88,662.40 353.02,662.40 351.15,662.40 349.29,662.40 347.43,662.40 345.56,662.40 343.70,662.40 341.84,662.40
|
||||
339.97,662.40 338.11,662.40 336.25,662.40 334.38,662.40 332.52,662.40 330.65,662.40 328.79,662.40 326.93,662.40 325.06,662.40 323.20,662.40 321.34,662.40 319.47,662.40 317.61,662.40 315.74,662.40 313.88,662.40 312.02,662.40
|
||||
310.15,662.40 308.29,662.40 306.43,662.40 304.56,662.40 302.70,662.40 300.84,662.40 298.97,662.40 297.11,662.40 295.24,662.40 293.38,662.40 291.52,662.40 289.65,662.40 287.79,662.40 285.93,662.40 284.06,662.40 282.20,662.40
|
||||
280.33,662.40 278.47,662.40 276.61,662.40 274.74,662.40 272.88,662.40 271.02,662.40 269.15,662.40 267.29,662.40 265.43,662.40 263.56,662.40 261.70,662.40 259.83,662.40 257.97,662.40 256.11,662.40 254.24,662.40 252.38,662.40
|
||||
250.52,662.40 248.65,662.40 246.79,662.40 244.92,662.40 243.06,662.40 241.20,662.40 239.33,662.40 237.47,662.40 235.61,662.40 233.74,662.40 231.88,662.40 230.01,662.40 228.15,662.40 226.29,662.40 224.42,662.40 222.56,662.40
|
||||
220.70,662.40 218.83,662.40 216.97,662.40 215.11,662.40 213.24,662.40 211.38,662.40 209.51,662.40 207.65,662.40 205.79,662.40 203.92,662.40 202.06,662.40 200.20,662.40 198.33,662.40 196.47,662.40 194.60,662.40 192.74,662.40
|
||||
190.88,662.40 189.01,662.40 187.15,662.40 185.29,662.40 183.42,662.40 181.56,662.40 179.70,662.40 177.83,662.40 175.97,662.40 174.10,662.40 172.24,662.40 170.38,662.40 168.51,662.40 166.65,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M546.73,662.40 L546.73,118.87 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '545.91,54.01 545.91,54.01 545.91,662.40 545.91,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/derive_public_key: mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 32 KiB |
310
benchmarks/babyjubjub/derive_public_key/report/change/median.svg
Normal file
@@ -0,0 +1,310 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,575.49 L89.92,575.49 '/> <g transform="translate(72.53,579.39)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,488.57 L89.92,488.57 '/> <g transform="translate(72.53,492.47)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,401.66 L89.92,401.66 '/> <g transform="translate(72.53,405.56)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,314.75 L89.92,314.75 '/> <g transform="translate(72.53,318.65)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,227.84 L89.92,227.84 '/> <g transform="translate(72.53,231.74)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,140.92 L89.92,140.92 '/> <g transform="translate(72.53,144.82)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M192.47,662.40 L192.47,653.40 '/> <g transform="translate(192.47,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M355.05,662.40 L355.05,653.40 '/> <g transform="translate(355.05,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.94</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M517.63,662.40 L517.63,653.40 '/> <g transform="translate(517.63,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.93</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M680.21,662.40 L680.21,653.40 '/> <g transform="translate(680.21,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.92</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M842.79,662.40 L842.79,653.40 '/> <g transform="translate(842.79,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.91</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1005.37,662.40 L1005.37,653.40 '/> <g transform="translate(1005.37,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-44.9</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M80.92,633.08 L82.78,632.64 L84.65,632.17 L86.51,631.66 L88.37,631.12 L90.24,630.53
|
||||
L92.10,629.89 L93.97,629.20 L95.83,628.45 L97.69,627.65 L99.56,626.79 L101.42,625.87 L103.28,624.89 L105.15,623.86
|
||||
L107.01,622.77 L108.88,621.63 L110.74,620.45 L112.60,619.22 L114.47,617.95 L116.33,616.65 L118.19,615.32 L120.06,613.97
|
||||
L121.92,612.59 L123.78,611.20 L125.65,609.78 L127.51,608.35 L129.38,606.90 L131.24,605.42 L133.10,603.93 L134.97,602.40
|
||||
L136.83,600.85 L138.69,599.25 L140.56,597.61 L142.42,595.91 L144.29,594.17 L146.15,592.36 L148.01,590.48 L149.88,588.55
|
||||
L151.74,586.54 L153.60,584.46 L155.47,582.33 L157.33,580.12 L159.19,577.87 L161.06,575.56 L162.92,573.21 L164.79,570.82
|
||||
L166.65,568.40 L168.51,565.97 L170.38,563.52 L172.24,561.07 L174.10,558.61 L175.97,556.16 L177.83,553.71 L179.70,551.27
|
||||
L181.56,548.83 L183.42,546.39 L185.29,543.94 L187.15,541.48 L189.01,539.00 L190.88,536.49 L192.74,533.94 L194.60,531.33
|
||||
L196.47,528.66 L198.33,525.91 L200.20,523.08 L202.06,520.16 L203.92,517.14 L205.79,514.02 L207.65,510.79 L209.51,507.45
|
||||
L211.38,504.01 L213.24,500.47 L215.11,496.84 L216.97,493.13 L218.83,489.35 L220.70,485.52 L222.56,481.65 L224.42,477.77
|
||||
L226.29,473.88 L228.15,470.02 L230.01,466.19 L231.88,462.42 L233.74,458.73 L235.61,455.14 L237.47,451.66 L239.33,448.30
|
||||
L241.20,445.08 L243.06,442.00 L244.92,439.06 L246.79,436.27 L248.65,433.63 L250.52,431.13 L252.38,428.75 L254.24,426.50
|
||||
L256.11,424.35 L257.97,422.28 L259.83,420.27 L261.70,418.31 L263.56,416.37 L265.43,414.42 L267.29,412.43 L269.15,410.39
|
||||
L271.02,408.26 L272.88,406.02 L274.74,403.65 L276.61,401.13 L278.47,398.45 L280.33,395.57 L282.20,392.50 L284.06,389.23
|
||||
L285.93,385.74 L287.79,382.05 L289.65,378.15 L291.52,374.05 L293.38,369.77 L295.24,365.31 L297.11,360.70 L298.97,355.95
|
||||
L300.84,351.10 L302.70,346.15 L304.56,341.14 L306.43,336.10 L308.29,331.04 L310.15,326.00 L312.02,320.99 L313.88,316.03
|
||||
L315.74,311.14 L317.61,306.34 L319.47,301.64 L321.34,297.04 L323.20,292.55 L325.06,288.16 L326.93,283.89 L328.79,279.73
|
||||
L330.65,275.66 L332.52,271.70 L334.38,267.82 L336.25,264.02 L338.11,260.30 L339.97,256.66 L341.84,253.09 L343.70,249.60
|
||||
L345.56,246.19 L347.43,242.87 L349.29,239.64 L351.15,236.53 L353.02,233.54 L354.88,230.69 L356.75,228.00 L358.61,225.48
|
||||
L360.47,223.14 L362.34,221.00 L364.20,219.05 L366.06,217.30 L367.93,215.75 L369.79,214.38 L371.66,213.18 L373.52,212.13
|
||||
L375.38,211.20 L377.25,210.36 L379.11,209.59 L380.97,208.84 L382.84,208.07 L384.70,207.25 L386.56,206.35 L388.43,205.33
|
||||
L390.29,204.16 L392.16,202.81 L394.02,201.27 L395.88,199.50 L397.75,197.49 L399.61,195.24 L401.47,192.73 L403.34,189.95
|
||||
L405.20,186.92 L407.07,183.61 L408.93,180.05 L410.79,176.23 L412.66,172.16 L414.52,167.84 L416.38,163.30 L418.25,158.54
|
||||
L420.11,153.60 L421.97,148.48 L423.84,143.22 L425.70,137.85 L427.57,132.41 L429.43,126.94 L431.29,121.50 L433.16,116.12
|
||||
L435.02,110.87 L436.88,105.81 L438.75,100.98 L440.61,96.44 L442.48,92.26 L444.34,88.47 L446.20,85.13 L448.07,82.26
|
||||
L449.93,79.91 L451.79,78.10 L453.66,76.84 L455.52,76.13 L457.38,75.98 L459.25,76.36 L461.11,77.27 L462.98,78.66
|
||||
L464.84,80.51 L466.70,82.77 L468.57,85.39 L470.43,88.33 L472.29,91.53 L474.16,94.93 L476.02,98.48 L477.89,102.13
|
||||
L479.75,105.83 L481.61,109.51 L483.48,113.15 L485.34,116.68 L487.20,120.08 L489.07,123.31 L490.93,126.33 L492.79,129.13
|
||||
L494.66,131.67 L496.52,133.95 L498.39,135.95 L500.25,137.65 L502.11,139.06 L503.98,140.17 L505.84,140.98 L507.70,141.49
|
||||
L509.57,141.69 L511.43,141.61 L513.30,141.23 L515.16,140.57 L517.02,139.63 L518.89,138.42 L520.75,136.95 L522.61,135.22
|
||||
L524.48,133.27 L526.34,131.08 L528.20,128.69 L530.07,126.12 L531.93,123.39 L533.80,120.52 L535.66,117.56 L537.52,114.53
|
||||
L539.39,111.49 L541.25,108.47 L543.11,105.53 L544.98,102.72 L546.84,100.09 L548.71,97.69 L550.57,95.58 L552.43,93.81
|
||||
L554.30,92.42 L556.16,91.45 L558.02,90.94 L559.89,90.90 L561.75,91.37 L563.62,92.33 L565.48,93.78 L567.34,95.72
|
||||
L569.21,98.10 L571.07,100.91 L572.93,104.09 L574.80,107.59 L576.66,111.36 L578.52,115.35 L580.39,119.50 L582.25,123.74
|
||||
L584.12,128.02 L585.98,132.30 L587.84,136.52 L589.71,140.65 L591.57,144.66 L593.43,148.53 L595.30,152.22 L597.16,155.74
|
||||
L599.03,159.08 L600.89,162.25 L602.75,165.23 L604.62,168.05 L606.48,170.71 L608.34,173.23 L610.21,175.60 L612.07,177.84
|
||||
L613.93,179.96 L615.80,181.96 L617.66,183.84 L619.53,185.60 L621.39,187.24 L623.25,188.76 L625.12,190.15 L626.98,191.42
|
||||
L628.84,192.55 L630.71,193.56 L632.57,194.45 L634.44,195.23 L636.30,195.92 L638.16,196.53 L640.03,197.09 L641.89,197.64
|
||||
L643.75,198.20 L645.62,198.83 L647.48,199.55 L649.34,200.42 L651.21,201.47 L653.07,202.74 L654.94,204.29 L656.80,206.13
|
||||
L658.66,208.29 L660.53,210.80 L662.39,213.66 L664.25,216.88 L666.12,220.44 L667.98,224.34 L669.85,228.53 L671.71,232.99
|
||||
L673.57,237.67 L675.44,242.53 L677.30,247.50 L679.16,252.53 L681.03,257.57 L682.89,262.55 L684.75,267.43 L686.62,272.15
|
||||
L688.48,276.67 L690.35,280.96 L692.21,284.99 L694.07,288.73 L695.94,292.19 L697.80,295.37 L699.66,298.26 L701.53,300.89
|
||||
L703.39,303.29 L705.26,305.48 L707.12,307.50 L708.98,309.40 L710.85,311.21 L712.71,312.98 L714.57,314.75 L716.44,316.56
|
||||
L718.30,318.45 L720.16,320.45 L722.03,322.58 L723.89,324.88 L725.76,327.36 L727.62,330.02 L729.48,332.86 L731.35,335.89
|
||||
L733.21,339.09 L735.07,342.45 L736.94,345.95 L738.80,349.56 L740.67,353.26 L742.53,357.02 L744.39,360.81 L746.26,364.61
|
||||
L748.12,368.38 L749.98,372.12 L751.85,375.78 L753.71,379.37 L755.57,382.87 L757.44,386.26 L759.30,389.54 L761.17,392.71
|
||||
L763.03,395.77 L764.89,398.72 L766.76,401.58 L768.62,404.35 L770.48,407.03 L772.35,409.64 L774.21,412.18 L776.08,414.66
|
||||
L777.94,417.09 L779.80,419.46 L781.67,421.79 L783.53,424.07 L785.39,426.30 L787.26,428.49 L789.12,430.62 L790.98,432.70
|
||||
L792.85,434.72 L794.71,436.68 L796.58,438.58 L798.44,440.42 L800.30,442.21 L802.17,443.95 L804.03,445.64 L805.89,447.30
|
||||
L807.76,448.92 L809.62,450.53 L811.49,452.13 L813.35,453.74 L815.21,455.37 L817.08,457.04 L818.94,458.75 L820.80,460.51
|
||||
L822.67,462.35 L824.53,464.26 L826.39,466.25 L828.26,468.32 L830.12,470.49 L831.99,472.75 L833.85,475.09 L835.71,477.52
|
||||
L837.58,480.04 L839.44,482.63 L841.30,485.29 L843.17,488.00 L845.03,490.77 L846.90,493.59 L848.76,496.44 L850.62,499.32
|
||||
L852.49,502.22 L854.35,505.12 L856.21,508.04 L858.08,510.96 L859.94,513.87 L861.81,516.77 L863.67,519.67 L865.53,522.55
|
||||
L867.40,525.41 L869.26,528.26 L871.12,531.10 L872.99,533.91 L874.85,536.70 L876.71,539.47 L878.58,542.21 L880.44,544.92
|
||||
L882.31,547.60 L884.17,550.23 L886.03,552.82 L887.90,555.36 L889.76,557.84 L891.62,560.26 L893.49,562.60 L895.35,564.86
|
||||
L897.22,567.03 L899.08,569.11 L900.94,571.09 L902.81,572.97 L904.67,574.74 L906.53,576.40 L908.40,577.96 L910.26,579.40
|
||||
L912.12,580.75 L913.99,582.00 L915.85,583.15 L917.72,584.22 L919.58,585.20 L921.44,586.12 L923.31,586.98 L925.17,587.78
|
||||
L927.03,588.55 L928.90,589.28 L930.76,590.00 L932.63,590.70 L934.49,591.39 L936.35,592.09 L938.22,592.80 L940.08,593.53
|
||||
L941.94,594.27 L943.81,595.04 L945.67,595.83 L947.53,596.65 L949.40,597.49 L951.26,598.36 L953.13,599.25 L954.99,600.17
|
||||
L956.85,601.11 L958.72,602.06 L960.58,603.02 L962.44,603.99 L964.31,604.97 L966.17,605.95 L968.04,606.93 L969.90,607.91
|
||||
L971.76,608.88 L973.63,609.84 L975.49,610.79 L977.35,611.74 L979.22,612.67 L981.08,613.59 L982.94,614.50 L984.81,615.40
|
||||
L986.67,616.28 L988.54,617.16 L990.40,618.02 L992.26,618.88 L994.13,619.73 L995.99,620.58 L997.85,621.41 L999.72,622.25
|
||||
L1001.58,623.07 L1003.45,623.90 L1005.31,624.72 L1007.17,625.53 L1009.04,626.34 L1010.90,627.14 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '166.65,568.40 168.51,565.97 170.38,563.52 172.24,561.07 174.10,558.61 175.97,556.16 177.83,553.71 179.70,551.27 181.56,548.83 183.42,546.39 185.29,543.94 187.15,541.48 189.01,539.00 190.88,536.49 192.74,533.94 194.60,531.33
|
||||
196.47,528.66 198.33,525.91 200.20,523.08 202.06,520.16 203.92,517.14 205.79,514.02 207.65,510.79 209.51,507.45 211.38,504.01 213.24,500.47 215.11,496.84 216.97,493.13 218.83,489.35 220.70,485.52 222.56,481.65 224.42,477.77
|
||||
226.29,473.88 228.15,470.02 230.01,466.19 231.88,462.42 233.74,458.73 235.61,455.14 237.47,451.66 239.33,448.30 241.20,445.08 243.06,442.00 244.92,439.06 246.79,436.27 248.65,433.63 250.52,431.13 252.38,428.75 254.24,426.50
|
||||
256.11,424.35 257.97,422.28 259.83,420.27 261.70,418.31 263.56,416.37 265.43,414.42 267.29,412.43 269.15,410.39 271.02,408.26 272.88,406.02 274.74,403.65 276.61,401.13 278.47,398.45 280.33,395.57 282.20,392.50 284.06,389.23
|
||||
285.93,385.74 287.79,382.05 289.65,378.15 291.52,374.05 293.38,369.77 295.24,365.31 297.11,360.70 298.97,355.95 300.84,351.10 302.70,346.15 304.56,341.14 306.43,336.10 308.29,331.04 310.15,326.00 312.02,320.99 313.88,316.03
|
||||
315.74,311.14 317.61,306.34 319.47,301.64 321.34,297.04 323.20,292.55 325.06,288.16 326.93,283.89 328.79,279.73 330.65,275.66 332.52,271.70 334.38,267.82 336.25,264.02 338.11,260.30 339.97,256.66 341.84,253.09 343.70,249.60
|
||||
345.56,246.19 347.43,242.87 349.29,239.64 351.15,236.53 353.02,233.54 354.88,230.69 356.75,228.00 358.61,225.48 360.47,223.14 362.34,221.00 364.20,219.05 366.06,217.30 367.93,215.75 369.79,214.38 371.66,213.18 373.52,212.13
|
||||
375.38,211.20 377.25,210.36 379.11,209.59 380.97,208.84 382.84,208.07 384.70,207.25 386.56,206.35 388.43,205.33 390.29,204.16 392.16,202.81 394.02,201.27 395.88,199.50 397.75,197.49 399.61,195.24 401.47,192.73 403.34,189.95
|
||||
405.20,186.92 407.07,183.61 408.93,180.05 410.79,176.23 412.66,172.16 414.52,167.84 416.38,163.30 418.25,158.54 420.11,153.60 421.97,148.48 423.84,143.22 425.70,137.85 427.57,132.41 429.43,126.94 431.29,121.50 433.16,116.12
|
||||
435.02,110.87 436.88,105.81 438.75,100.98 440.61,96.44 442.48,92.26 444.34,88.47 446.20,85.13 448.07,82.26 449.93,79.91 451.79,78.10 453.66,76.84 455.52,76.13 457.38,75.98 459.25,76.36 461.11,77.27 462.98,78.66
|
||||
464.84,80.51 466.70,82.77 468.57,85.39 470.43,88.33 472.29,91.53 474.16,94.93 476.02,98.48 477.89,102.13 479.75,105.83 481.61,109.51 483.48,113.15 485.34,116.68 487.20,120.08 489.07,123.31 490.93,126.33 492.79,129.13
|
||||
494.66,131.67 496.52,133.95 498.39,135.95 500.25,137.65 502.11,139.06 503.98,140.17 505.84,140.98 507.70,141.49 509.57,141.69 511.43,141.61 513.30,141.23 515.16,140.57 517.02,139.63 518.89,138.42 520.75,136.95 522.61,135.22
|
||||
524.48,133.27 526.34,131.08 528.20,128.69 530.07,126.12 531.93,123.39 533.80,120.52 535.66,117.56 537.52,114.53 539.39,111.49 541.25,108.47 543.11,105.53 544.98,102.72 546.84,100.09 548.71,97.69 550.57,95.58 552.43,93.81
|
||||
554.30,92.42 556.16,91.45 558.02,90.94 559.89,90.90 561.75,91.37 563.62,92.33 565.48,93.78 567.34,95.72 569.21,98.10 571.07,100.91 572.93,104.09 574.80,107.59 576.66,111.36 578.52,115.35 580.39,119.50 582.25,123.74
|
||||
584.12,128.02 585.98,132.30 587.84,136.52 589.71,140.65 591.57,144.66 593.43,148.53 595.30,152.22 597.16,155.74 599.03,159.08 600.89,162.25 602.75,165.23 604.62,168.05 606.48,170.71 608.34,173.23 610.21,175.60 612.07,177.84
|
||||
613.93,179.96 615.80,181.96 617.66,183.84 619.53,185.60 621.39,187.24 623.25,188.76 625.12,190.15 626.98,191.42 628.84,192.55 630.71,193.56 632.57,194.45 634.44,195.23 636.30,195.92 638.16,196.53 640.03,197.09 641.89,197.64
|
||||
643.75,198.20 645.62,198.83 647.48,199.55 649.34,200.42 651.21,201.47 653.07,202.74 654.94,204.29 656.80,206.13 658.66,208.29 660.53,210.80 662.39,213.66 664.25,216.88 666.12,220.44 667.98,224.34 669.85,228.53 671.71,232.99
|
||||
673.57,237.67 675.44,242.53 677.30,247.50 679.16,252.53 681.03,257.57 682.89,262.55 684.75,267.43 686.62,272.15 688.48,276.67 690.35,280.96 692.21,284.99 694.07,288.73 695.94,292.19 697.80,295.37 699.66,298.26 701.53,300.89
|
||||
703.39,303.29 705.26,305.48 707.12,307.50 708.98,309.40 710.85,311.21 712.71,312.98 714.57,314.75 716.44,316.56 718.30,318.45 720.16,320.45 722.03,322.58 723.89,324.88 725.76,327.36 727.62,330.02 729.48,332.86 731.35,335.89
|
||||
733.21,339.09 735.07,342.45 736.94,345.95 738.80,349.56 740.67,353.26 742.53,357.02 744.39,360.81 746.26,364.61 748.12,368.38 749.98,372.12 751.85,375.78 753.71,379.37 755.57,382.87 757.44,386.26 759.30,389.54 761.17,392.71
|
||||
763.03,395.77 764.89,398.72 766.76,401.58 768.62,404.35 770.48,407.03 772.35,409.64 774.21,412.18 776.08,414.66 777.94,417.09 779.80,419.46 781.67,421.79 783.53,424.07 785.39,426.30 787.26,428.49 789.12,430.62 790.98,432.70
|
||||
792.85,434.72 794.71,436.68 796.58,438.58 798.44,440.42 800.30,442.21 802.17,443.95 804.03,445.64 805.89,447.30 807.76,448.92 809.62,450.53 811.49,452.13 813.35,453.74 815.21,455.37 817.08,457.04 818.94,458.75 820.80,460.51
|
||||
822.67,462.35 824.53,464.26 826.39,466.25 828.26,468.32 830.12,470.49 831.99,472.75 833.85,475.09 835.71,477.52 837.58,480.04 839.44,482.63 841.30,485.29 843.17,488.00 845.03,490.77 846.90,493.59 848.76,496.44 850.62,499.32
|
||||
852.49,502.22 854.35,505.12 856.21,508.04 858.08,510.96 859.94,513.87 861.81,516.77 863.67,519.67 865.53,522.55 867.40,525.41 869.26,528.26 871.12,531.10 872.99,533.91 874.85,536.70 876.71,539.47 878.58,542.21 880.44,544.92
|
||||
882.31,547.60 884.17,550.23 886.03,552.82 887.90,555.36 889.76,557.84 891.62,560.26 893.49,562.60 895.35,564.86 897.22,567.03 899.08,569.11 900.94,571.09 902.81,572.97 904.67,574.74 906.53,576.40 908.40,577.96 910.26,579.40
|
||||
912.12,580.75 913.99,582.00 915.85,583.15 917.72,584.22 919.58,585.20 921.44,586.12 923.31,586.98 923.31,662.40 921.44,662.40 919.58,662.40 917.72,662.40 915.85,662.40 913.99,662.40 912.12,662.40 910.26,662.40 908.40,662.40
|
||||
906.53,662.40 904.67,662.40 902.81,662.40 900.94,662.40 899.08,662.40 897.22,662.40 895.35,662.40 893.49,662.40 891.62,662.40 889.76,662.40 887.90,662.40 886.03,662.40 884.17,662.40 882.31,662.40 880.44,662.40 878.58,662.40
|
||||
876.71,662.40 874.85,662.40 872.99,662.40 871.12,662.40 869.26,662.40 867.40,662.40 865.53,662.40 863.67,662.40 861.81,662.40 859.94,662.40 858.08,662.40 856.21,662.40 854.35,662.40 852.49,662.40 850.62,662.40 848.76,662.40
|
||||
846.90,662.40 845.03,662.40 843.17,662.40 841.30,662.40 839.44,662.40 837.58,662.40 835.71,662.40 833.85,662.40 831.99,662.40 830.12,662.40 828.26,662.40 826.39,662.40 824.53,662.40 822.67,662.40 820.80,662.40 818.94,662.40
|
||||
817.08,662.40 815.21,662.40 813.35,662.40 811.49,662.40 809.62,662.40 807.76,662.40 805.89,662.40 804.03,662.40 802.17,662.40 800.30,662.40 798.44,662.40 796.58,662.40 794.71,662.40 792.85,662.40 790.98,662.40 789.12,662.40
|
||||
787.26,662.40 785.39,662.40 783.53,662.40 781.67,662.40 779.80,662.40 777.94,662.40 776.08,662.40 774.21,662.40 772.35,662.40 770.48,662.40 768.62,662.40 766.76,662.40 764.89,662.40 763.03,662.40 761.17,662.40 759.30,662.40
|
||||
757.44,662.40 755.57,662.40 753.71,662.40 751.85,662.40 749.98,662.40 748.12,662.40 746.26,662.40 744.39,662.40 742.53,662.40 740.67,662.40 738.80,662.40 736.94,662.40 735.07,662.40 733.21,662.40 731.35,662.40 729.48,662.40
|
||||
727.62,662.40 725.76,662.40 723.89,662.40 722.03,662.40 720.16,662.40 718.30,662.40 716.44,662.40 714.57,662.40 712.71,662.40 710.85,662.40 708.98,662.40 707.12,662.40 705.26,662.40 703.39,662.40 701.53,662.40 699.66,662.40
|
||||
697.80,662.40 695.94,662.40 694.07,662.40 692.21,662.40 690.35,662.40 688.48,662.40 686.62,662.40 684.75,662.40 682.89,662.40 681.03,662.40 679.16,662.40 677.30,662.40 675.44,662.40 673.57,662.40 671.71,662.40 669.85,662.40
|
||||
667.98,662.40 666.12,662.40 664.25,662.40 662.39,662.40 660.53,662.40 658.66,662.40 656.80,662.40 654.94,662.40 653.07,662.40 651.21,662.40 649.34,662.40 647.48,662.40 645.62,662.40 643.75,662.40 641.89,662.40 640.03,662.40
|
||||
638.16,662.40 636.30,662.40 634.44,662.40 632.57,662.40 630.71,662.40 628.84,662.40 626.98,662.40 625.12,662.40 623.25,662.40 621.39,662.40 619.53,662.40 617.66,662.40 615.80,662.40 613.93,662.40 612.07,662.40 610.21,662.40
|
||||
608.34,662.40 606.48,662.40 604.62,662.40 602.75,662.40 600.89,662.40 599.03,662.40 597.16,662.40 595.30,662.40 593.43,662.40 591.57,662.40 589.71,662.40 587.84,662.40 585.98,662.40 584.12,662.40 582.25,662.40 580.39,662.40
|
||||
578.52,662.40 576.66,662.40 574.80,662.40 572.93,662.40 571.07,662.40 569.21,662.40 567.34,662.40 565.48,662.40 563.62,662.40 561.75,662.40 559.89,662.40 558.02,662.40 556.16,662.40 554.30,662.40 552.43,662.40 550.57,662.40
|
||||
548.71,662.40 546.84,662.40 544.98,662.40 543.11,662.40 541.25,662.40 539.39,662.40 537.52,662.40 535.66,662.40 533.80,662.40 531.93,662.40 530.07,662.40 528.20,662.40 526.34,662.40 524.48,662.40 522.61,662.40 520.75,662.40
|
||||
518.89,662.40 517.02,662.40 515.16,662.40 513.30,662.40 511.43,662.40 509.57,662.40 507.70,662.40 505.84,662.40 503.98,662.40 502.11,662.40 500.25,662.40 498.39,662.40 496.52,662.40 494.66,662.40 492.79,662.40 490.93,662.40
|
||||
489.07,662.40 487.20,662.40 485.34,662.40 483.48,662.40 481.61,662.40 479.75,662.40 477.89,662.40 476.02,662.40 474.16,662.40 472.29,662.40 470.43,662.40 468.57,662.40 466.70,662.40 464.84,662.40 462.98,662.40 461.11,662.40
|
||||
459.25,662.40 457.38,662.40 455.52,662.40 453.66,662.40 451.79,662.40 449.93,662.40 448.07,662.40 446.20,662.40 444.34,662.40 442.48,662.40 440.61,662.40 438.75,662.40 436.88,662.40 435.02,662.40 433.16,662.40 431.29,662.40
|
||||
429.43,662.40 427.57,662.40 425.70,662.40 423.84,662.40 421.97,662.40 420.11,662.40 418.25,662.40 416.38,662.40 414.52,662.40 412.66,662.40 410.79,662.40 408.93,662.40 407.07,662.40 405.20,662.40 403.34,662.40 401.47,662.40
|
||||
399.61,662.40 397.75,662.40 395.88,662.40 394.02,662.40 392.16,662.40 390.29,662.40 388.43,662.40 386.56,662.40 384.70,662.40 382.84,662.40 380.97,662.40 379.11,662.40 377.25,662.40 375.38,662.40 373.52,662.40 371.66,662.40
|
||||
369.79,662.40 367.93,662.40 366.06,662.40 364.20,662.40 362.34,662.40 360.47,662.40 358.61,662.40 356.75,662.40 354.88,662.40 353.02,662.40 351.15,662.40 349.29,662.40 347.43,662.40 345.56,662.40 343.70,662.40 341.84,662.40
|
||||
339.97,662.40 338.11,662.40 336.25,662.40 334.38,662.40 332.52,662.40 330.65,662.40 328.79,662.40 326.93,662.40 325.06,662.40 323.20,662.40 321.34,662.40 319.47,662.40 317.61,662.40 315.74,662.40 313.88,662.40 312.02,662.40
|
||||
310.15,662.40 308.29,662.40 306.43,662.40 304.56,662.40 302.70,662.40 300.84,662.40 298.97,662.40 297.11,662.40 295.24,662.40 293.38,662.40 291.52,662.40 289.65,662.40 287.79,662.40 285.93,662.40 284.06,662.40 282.20,662.40
|
||||
280.33,662.40 278.47,662.40 276.61,662.40 274.74,662.40 272.88,662.40 271.02,662.40 269.15,662.40 267.29,662.40 265.43,662.40 263.56,662.40 261.70,662.40 259.83,662.40 257.97,662.40 256.11,662.40 254.24,662.40 252.38,662.40
|
||||
250.52,662.40 248.65,662.40 246.79,662.40 244.92,662.40 243.06,662.40 241.20,662.40 239.33,662.40 237.47,662.40 235.61,662.40 233.74,662.40 231.88,662.40 230.01,662.40 228.15,662.40 226.29,662.40 224.42,662.40 222.56,662.40
|
||||
220.70,662.40 218.83,662.40 216.97,662.40 215.11,662.40 213.24,662.40 211.38,662.40 209.51,662.40 207.65,662.40 205.79,662.40 203.92,662.40 202.06,662.40 200.20,662.40 198.33,662.40 196.47,662.40 194.60,662.40 192.74,662.40
|
||||
190.88,662.40 189.01,662.40 187.15,662.40 185.29,662.40 183.42,662.40 181.56,662.40 179.70,662.40 177.83,662.40 175.97,662.40 174.10,662.40 172.24,662.40 170.38,662.40 168.51,662.40 166.65,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M513.95,662.40 L513.95,141.00 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '545.91,54.01 545.91,54.01 545.91,662.40 545.91,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1010.90,662.40 L1010.90,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(545.91,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/derive_public_key: median</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 32 KiB |
250
benchmarks/babyjubjub/derive_public_key/report/change/t-test.svg
Normal file
@@ -0,0 +1,250 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,586.35 L89.92,586.35 '/> <g transform="translate(72.53,590.25)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,510.30 L89.92,510.30 '/> <g transform="translate(72.53,514.20)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,434.25 L89.92,434.25 '/> <g transform="translate(72.53,438.15)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,358.20 L89.92,358.20 '/> <g transform="translate(72.53,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,282.16 L89.92,282.16 '/> <g transform="translate(72.53,286.06)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.25</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,206.11 L89.92,206.11 '/> <g transform="translate(72.53,210.01)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,130.06 L89.92,130.06 '/> <g transform="translate(72.53,133.96)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.35</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L80.92,653.40 '/> <g transform="translate(80.92,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M205.56,662.40 L205.56,653.40 '/> <g transform="translate(205.56,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M330.20,662.40 L330.20,653.40 '/> <g transform="translate(330.20,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-1000</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M454.83,662.40 L454.83,653.40 '/> <g transform="translate(454.83,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M579.47,662.40 L579.47,653.40 '/> <g transform="translate(579.47,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M704.11,662.40 L704.11,653.40 '/> <g transform="translate(704.11,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M828.75,662.40 L828.75,653.40 '/> <g transform="translate(828.75,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M953.38,662.40 L953.38,653.40 '/> <g transform="translate(953.38,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1078.02,662.40 L1078.02,653.40 '/> <g transform="translate(1078.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>t distribution</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1103.19,67.51 1145.75,67.51 1145.75,58.51 1103.19,58.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '950.41,662.40 950.42,662.40 950.44,662.40 950.45,662.40 950.46,662.40 950.47,662.39 950.49,662.39 950.50,662.39 950.51,662.38 950.52,662.37 950.54,662.37 950.55,662.36 950.56,662.35 950.57,662.34 950.58,662.32 950.60,662.31
|
||||
950.61,662.30 950.62,662.28 950.63,662.27 950.65,662.26 950.66,662.24 950.67,662.23 950.68,662.22 950.70,662.21 950.71,662.20 950.72,662.19 950.73,662.19 950.74,662.19 950.76,662.19 950.77,662.19 950.78,662.19 950.79,662.19
|
||||
950.81,662.19 950.82,662.17 950.83,662.16 950.84,662.14 950.86,662.11 950.87,662.08 950.88,662.05 950.89,662.02 950.90,661.99 950.92,661.96 950.93,661.94 950.94,661.91 950.95,661.89 950.97,661.87 950.98,661.85 950.99,661.84
|
||||
951.00,661.82 951.02,661.80 951.03,661.77 951.04,661.74 951.05,661.70 951.06,661.66 951.08,661.61 951.09,661.55 951.10,661.48 951.11,661.40 951.13,661.31 951.14,661.22 951.15,661.12 951.16,661.02 951.18,660.91 951.19,660.80
|
||||
951.20,660.68 951.21,660.56 951.22,660.45 951.24,660.32 951.25,660.20 951.26,660.07 951.27,659.94 951.29,659.79 951.30,659.64 951.31,659.47 951.32,659.29 951.34,659.09 951.35,658.87 951.36,658.62 951.37,658.36 951.39,658.08
|
||||
951.40,657.77 951.41,657.46 951.42,657.12 951.43,656.77 951.45,656.41 951.46,656.03 951.47,655.65 951.48,655.24 951.50,654.83 951.51,654.40 951.52,653.97 951.53,653.53 951.55,653.08 951.56,652.62 951.57,652.16 951.58,651.69
|
||||
951.59,651.21 951.61,650.71 951.62,650.19 951.63,649.64 951.64,649.06 951.66,648.43 951.67,647.77 951.68,647.05 951.69,646.28 951.71,645.46 951.72,644.57 951.73,643.62 951.74,642.60 951.75,641.51 951.77,640.36 951.78,639.15
|
||||
951.79,637.89 951.80,636.57 951.82,635.22 951.83,633.84 951.84,632.43 951.85,631.00 951.87,629.56 951.88,628.08 951.89,626.57 951.90,625.01 951.91,623.37 951.93,621.66 951.94,619.86 951.95,617.96 951.96,615.97 951.98,613.88
|
||||
951.99,611.71 952.00,609.45 952.01,607.12 952.03,604.72 952.04,602.25 952.05,599.72 952.06,597.10 952.07,594.37 952.09,591.54 952.10,588.57 952.11,585.46 952.12,582.21 952.14,578.83 952.15,575.32 952.16,571.69 952.17,567.97
|
||||
952.19,564.16 952.20,560.28 952.21,556.33 952.22,552.33 952.23,548.28 952.25,544.17 952.26,540.00 952.27,535.79 952.28,531.55 952.30,527.29 952.31,523.05 952.32,518.83 952.33,514.63 952.35,510.43 952.36,506.19 952.37,501.86
|
||||
952.38,497.38 952.39,492.69 952.41,487.74 952.42,482.49 952.43,476.92 952.44,471.03 952.46,464.85 952.47,458.43 952.48,451.82 952.49,445.10 952.51,438.32 952.52,431.53 952.53,424.76 952.54,418.02 952.55,411.33 952.57,404.68
|
||||
952.58,398.06 952.59,391.47 952.60,384.88 952.62,378.27 952.63,371.65 952.64,365.00 952.65,358.32 952.67,351.62 952.68,344.91 952.69,338.18 952.70,331.40 952.71,324.55 952.73,317.61 952.74,310.53 952.75,303.32 952.76,295.97
|
||||
952.78,288.49 952.79,280.90 952.80,273.24 952.81,265.56 952.83,257.95 952.84,250.46 952.85,243.17 952.86,236.12 952.87,229.33 952.89,222.78 952.90,216.46 952.91,210.31 952.92,204.31 952.94,198.43 952.95,192.62 952.96,186.87
|
||||
952.97,181.16 952.99,175.47 953.00,169.80 953.01,164.18 953.02,158.60 953.04,153.10 953.05,147.66 953.06,142.29 953.07,136.98 953.08,131.73 953.10,126.55 953.11,121.47 953.12,116.50 953.13,111.65 953.15,106.94 953.16,102.37
|
||||
953.17,97.95 953.18,93.69 953.20,89.60 953.21,85.71 953.22,82.01 953.23,78.52 953.24,75.22 953.26,72.13 953.27,69.25 953.28,66.60 953.29,64.20 953.31,62.07 953.32,60.21 953.33,58.63 953.34,57.32 953.36,56.31
|
||||
953.37,55.60 953.38,55.23 953.39,55.19 953.40,55.47 953.42,56.05 953.43,56.88 953.44,57.93 953.45,59.17 953.47,60.59 953.48,62.18 953.49,63.97 953.50,65.97 953.52,68.22 953.53,70.77 953.54,73.67 953.55,76.96
|
||||
953.56,80.66 953.58,84.74 953.59,89.17 953.60,93.86 953.61,98.75 953.63,103.75 953.64,108.82 953.65,113.91 953.66,119.01 953.68,124.10 953.69,129.19 953.70,134.27 953.71,139.36 953.72,144.47 953.74,149.60 953.75,154.74
|
||||
953.76,159.87 953.77,164.95 953.79,169.96 953.80,174.88 953.81,179.75 953.82,184.59 953.84,189.45 953.85,194.41 953.86,199.54 953.87,204.91 953.88,210.60 953.90,216.69 953.91,223.23 953.92,230.24 953.93,237.71 953.95,245.58
|
||||
953.96,253.78 953.97,262.22 953.98,270.83 954.00,279.52 954.01,288.23 954.02,296.91 954.03,305.52 954.04,314.01 954.06,322.37 954.07,330.59 954.08,338.67 954.09,346.61 954.11,354.39 954.12,362.01 954.13,369.45 954.14,376.69
|
||||
954.16,383.71 954.17,390.53 954.18,397.15 954.19,403.59 954.20,409.87 954.22,416.02 954.23,422.08 954.24,428.07 954.25,434.02 954.27,439.97 954.28,445.92 954.29,451.88 954.30,457.83 954.32,463.77 954.33,469.66 954.34,475.51
|
||||
954.35,481.30 954.36,487.01 954.38,492.66 954.39,498.23 954.40,503.70 954.41,509.08 954.43,514.35 954.44,519.50 954.45,524.54 954.46,529.45 954.48,534.21 954.49,538.81 954.50,543.22 954.51,547.44 954.52,551.44 954.54,555.24
|
||||
954.55,558.85 954.56,562.27 954.57,565.54 954.59,568.68 954.60,571.74 954.61,574.73 954.62,577.70 954.64,580.65 954.65,583.61 954.66,586.56 954.67,589.50 954.69,592.39 954.70,595.23 954.71,598.00 954.72,600.69 954.73,603.29
|
||||
954.75,605.79 954.76,608.19 954.77,610.48 954.78,612.67 954.80,614.75 954.81,616.74 954.82,618.64 954.83,620.45 954.85,622.19 954.86,623.85 954.87,625.46 954.88,627.03 954.89,628.56 954.91,630.05 954.92,631.52 954.93,632.97
|
||||
954.94,634.38 954.96,635.75 954.97,637.07 954.98,638.33 954.99,639.53 955.01,640.65 955.02,641.71 955.03,642.69 955.04,643.59 955.05,644.42 955.07,645.18 955.08,645.87 955.09,646.50 955.10,647.09 955.12,647.64 955.13,648.17
|
||||
955.14,648.68 955.15,649.21 955.17,649.75 955.18,650.31 955.19,650.91 955.20,651.53 955.21,652.17 955.23,652.82 955.24,653.46 955.25,654.08 955.26,654.67 955.28,655.21 955.29,655.71 955.30,656.15 955.31,656.56 955.33,656.92
|
||||
955.34,657.25 955.35,657.56 955.36,657.85 955.37,658.13 955.39,658.40 955.40,658.67 955.41,658.93 955.42,659.19 955.44,659.44 955.45,659.67 955.46,659.88 955.47,660.08 955.49,660.25 955.50,660.40 955.51,660.53 955.52,660.64
|
||||
955.53,660.73 955.55,660.81 955.56,660.88 955.57,660.93 955.58,660.98 955.60,661.03 955.61,661.07 955.62,661.10 955.63,661.14 955.65,661.18 955.66,661.21 955.67,661.25 955.68,661.28 955.69,661.31 955.71,661.35 955.72,661.38
|
||||
955.73,661.41 955.74,661.43 955.76,661.46 955.77,661.49 955.78,661.52 955.79,661.55 955.81,661.58 955.82,661.62 955.83,661.66 955.84,661.70 955.85,661.75 955.87,661.81 955.88,661.87 955.89,661.93 955.90,661.99 955.92,662.04
|
||||
955.93,662.10 955.94,662.14 955.95,662.18 955.97,662.21 955.98,662.23 955.99,662.25 956.00,662.26 956.01,662.26 956.03,662.27 956.04,662.27 956.05,662.27 956.06,662.28 956.08,662.29 956.09,662.30 956.10,662.31 956.11,662.32
|
||||
956.13,662.33 956.14,662.35 956.15,662.36 956.16,662.37 956.17,662.37 956.19,662.38 956.20,662.38 956.21,662.38 956.22,662.38 956.24,662.38 956.25,662.37 956.26,662.36 956.27,662.35 956.29,662.34 956.30,662.32 956.31,662.31
|
||||
956.32,662.30 956.34,662.29 956.35,662.29 956.36,662.29 956.37,662.29 956.38,662.30 956.40,662.30 956.41,662.32 956.42,662.33 956.43,662.34 956.45,662.35 956.46,662.36 956.47,662.37 956.48,662.38 956.50,662.39 956.51,662.39
|
||||
956.52,662.39 956.53,662.40 956.54,662.40 956.56,662.40 956.56,662.40 956.54,662.40 956.53,662.40 956.52,662.40 956.51,662.40 956.50,662.40 956.48,662.40 956.47,662.40 956.46,662.40 956.45,662.40 956.43,662.40 956.42,662.40
|
||||
956.41,662.40 956.40,662.40 956.38,662.40 956.37,662.40 956.36,662.40 956.35,662.40 956.34,662.40 956.32,662.40 956.31,662.40 956.30,662.40 956.29,662.40 956.27,662.40 956.26,662.40 956.25,662.40 956.24,662.40 956.22,662.40
|
||||
956.21,662.40 956.20,662.40 956.19,662.40 956.17,662.40 956.16,662.40 956.15,662.40 956.14,662.40 956.13,662.40 956.11,662.40 956.10,662.40 956.09,662.40 956.08,662.40 956.06,662.40 956.05,662.40 956.04,662.40 956.03,662.40
|
||||
956.01,662.40 956.00,662.40 955.99,662.40 955.98,662.40 955.97,662.40 955.95,662.40 955.94,662.40 955.93,662.40 955.92,662.40 955.90,662.40 955.89,662.40 955.88,662.40 955.87,662.40 955.85,662.40 955.84,662.40 955.83,662.40
|
||||
955.82,662.40 955.81,662.40 955.79,662.40 955.78,662.40 955.77,662.40 955.76,662.40 955.74,662.40 955.73,662.40 955.72,662.40 955.71,662.40 955.69,662.40 955.68,662.40 955.67,662.40 955.66,662.40 955.65,662.40 955.63,662.40
|
||||
955.62,662.40 955.61,662.40 955.60,662.40 955.58,662.40 955.57,662.40 955.56,662.40 955.55,662.40 955.53,662.40 955.52,662.40 955.51,662.40 955.50,662.40 955.49,662.40 955.47,662.40 955.46,662.40 955.45,662.40 955.44,662.40
|
||||
955.42,662.40 955.41,662.40 955.40,662.40 955.39,662.40 955.37,662.40 955.36,662.40 955.35,662.40 955.34,662.40 955.33,662.40 955.31,662.40 955.30,662.40 955.29,662.40 955.28,662.40 955.26,662.40 955.25,662.40 955.24,662.40
|
||||
955.23,662.40 955.21,662.40 955.20,662.40 955.19,662.40 955.18,662.40 955.17,662.40 955.15,662.40 955.14,662.40 955.13,662.40 955.12,662.40 955.10,662.40 955.09,662.40 955.08,662.40 955.07,662.40 955.05,662.40 955.04,662.40
|
||||
955.03,662.40 955.02,662.40 955.01,662.40 954.99,662.40 954.98,662.40 954.97,662.40 954.96,662.40 954.94,662.40 954.93,662.40 954.92,662.40 954.91,662.40 954.89,662.40 954.88,662.40 954.87,662.40 954.86,662.40 954.85,662.40
|
||||
954.83,662.40 954.82,662.40 954.81,662.40 954.80,662.40 954.78,662.40 954.77,662.40 954.76,662.40 954.75,662.40 954.73,662.40 954.72,662.40 954.71,662.40 954.70,662.40 954.69,662.40 954.67,662.40 954.66,662.40 954.65,662.40
|
||||
954.64,662.40 954.62,662.40 954.61,662.40 954.60,662.40 954.59,662.40 954.57,662.40 954.56,662.40 954.55,662.40 954.54,662.40 954.52,662.40 954.51,662.40 954.50,662.40 954.49,662.40 954.48,662.40 954.46,662.40 954.45,662.40
|
||||
954.44,662.40 954.43,662.40 954.41,662.40 954.40,662.40 954.39,662.40 954.38,662.40 954.36,662.40 954.35,662.40 954.34,662.40 954.33,662.40 954.32,662.40 954.30,662.40 954.29,662.40 954.28,662.40 954.27,662.40 954.25,662.40
|
||||
954.24,662.40 954.23,662.40 954.22,662.40 954.20,662.40 954.19,662.40 954.18,662.40 954.17,662.40 954.16,662.40 954.14,662.40 954.13,662.40 954.12,662.40 954.11,662.40 954.09,662.40 954.08,662.40 954.07,662.40 954.06,662.40
|
||||
954.04,662.40 954.03,662.40 954.02,662.40 954.01,662.40 954.00,662.40 953.98,662.40 953.97,662.40 953.96,662.40 953.95,662.40 953.93,662.40 953.92,662.40 953.91,662.40 953.90,662.40 953.88,662.40 953.87,662.40 953.86,662.40
|
||||
953.85,662.40 953.84,662.40 953.82,662.40 953.81,662.40 953.80,662.40 953.79,662.40 953.77,662.40 953.76,662.40 953.75,662.40 953.74,662.40 953.72,662.40 953.71,662.40 953.70,662.40 953.69,662.40 953.68,662.40 953.66,662.40
|
||||
953.65,662.40 953.64,662.40 953.63,662.40 953.61,662.40 953.60,662.40 953.59,662.40 953.58,662.40 953.56,662.40 953.55,662.40 953.54,662.40 953.53,662.40 953.52,662.40 953.50,662.40 953.49,662.40 953.48,662.40 953.47,662.40
|
||||
953.45,662.40 953.44,662.40 953.43,662.40 953.42,662.40 953.40,662.40 953.39,662.40 953.38,662.40 953.37,662.40 953.36,662.40 953.34,662.40 953.33,662.40 953.32,662.40 953.31,662.40 953.29,662.40 953.28,662.40 953.27,662.40
|
||||
953.26,662.40 953.24,662.40 953.23,662.40 953.22,662.40 953.21,662.40 953.20,662.40 953.18,662.40 953.17,662.40 953.16,662.40 953.15,662.40 953.13,662.40 953.12,662.40 953.11,662.40 953.10,662.40 953.08,662.40 953.07,662.40
|
||||
953.06,662.40 953.05,662.40 953.04,662.40 953.02,662.40 953.01,662.40 953.00,662.40 952.99,662.40 952.97,662.40 952.96,662.40 952.95,662.40 952.94,662.40 952.92,662.40 952.91,662.40 952.90,662.40 952.89,662.40 952.87,662.40
|
||||
952.86,662.40 952.85,662.40 952.84,662.40 952.83,662.40 952.81,662.40 952.80,662.40 952.79,662.40 952.78,662.40 952.76,662.40 952.75,662.40 952.74,662.40 952.73,662.40 952.71,662.40 952.70,662.40 952.69,662.40 952.68,662.40
|
||||
952.67,662.40 952.65,662.40 952.64,662.40 952.63,662.40 952.62,662.40 952.60,662.40 952.59,662.40 952.58,662.40 952.57,662.40 952.55,662.40 952.54,662.40 952.53,662.40 952.52,662.40 952.51,662.40 952.49,662.40 952.48,662.40
|
||||
952.47,662.40 952.46,662.40 952.44,662.40 952.43,662.40 952.42,662.40 952.41,662.40 952.39,662.40 952.38,662.40 952.37,662.40 952.36,662.40 952.35,662.40 952.33,662.40 952.32,662.40 952.31,662.40 952.30,662.40 952.28,662.40
|
||||
952.27,662.40 952.26,662.40 952.25,662.40 952.23,662.40 952.22,662.40 952.21,662.40 952.20,662.40 952.19,662.40 952.17,662.40 952.16,662.40 952.15,662.40 952.14,662.40 952.12,662.40 952.11,662.40 952.10,662.40 952.09,662.40
|
||||
952.07,662.40 952.06,662.40 952.05,662.40 952.04,662.40 952.03,662.40 952.01,662.40 952.00,662.40 951.99,662.40 951.98,662.40 951.96,662.40 951.95,662.40 951.94,662.40 951.93,662.40 951.91,662.40 951.90,662.40 951.89,662.40
|
||||
951.88,662.40 951.87,662.40 951.85,662.40 951.84,662.40 951.83,662.40 951.82,662.40 951.80,662.40 951.79,662.40 951.78,662.40 951.77,662.40 951.75,662.40 951.74,662.40 951.73,662.40 951.72,662.40 951.71,662.40 951.69,662.40
|
||||
951.68,662.40 951.67,662.40 951.66,662.40 951.64,662.40 951.63,662.40 951.62,662.40 951.61,662.40 951.59,662.40 951.58,662.40 951.57,662.40 951.56,662.40 951.55,662.40 951.53,662.40 951.52,662.40 951.51,662.40 951.50,662.40
|
||||
951.48,662.40 951.47,662.40 951.46,662.40 951.45,662.40 951.43,662.40 951.42,662.40 951.41,662.40 951.40,662.40 951.39,662.40 951.37,662.40 951.36,662.40 951.35,662.40 951.34,662.40 951.32,662.40 951.31,662.40 951.30,662.40
|
||||
951.29,662.40 951.27,662.40 951.26,662.40 951.25,662.40 951.24,662.40 951.22,662.40 951.21,662.40 951.20,662.40 951.19,662.40 951.18,662.40 951.16,662.40 951.15,662.40 951.14,662.40 951.13,662.40 951.11,662.40 951.10,662.40
|
||||
951.09,662.40 951.08,662.40 951.06,662.40 951.05,662.40 951.04,662.40 951.03,662.40 951.02,662.40 951.00,662.40 950.99,662.40 950.98,662.40 950.97,662.40 950.95,662.40 950.94,662.40 950.93,662.40 950.92,662.40 950.90,662.40
|
||||
950.89,662.40 950.88,662.40 950.87,662.40 950.86,662.40 950.84,662.40 950.83,662.40 950.82,662.40 950.81,662.40 950.79,662.40 950.78,662.40 950.77,662.40 950.76,662.40 950.74,662.40 950.73,662.40 950.72,662.40 950.71,662.40
|
||||
950.70,662.40 950.68,662.40 950.67,662.40 950.66,662.40 950.65,662.40 950.63,662.40 950.62,662.40 950.61,662.40 950.60,662.40 950.58,662.40 950.57,662.40 950.56,662.40 950.55,662.40 950.54,662.40 950.52,662.40 950.51,662.40
|
||||
950.50,662.40 950.49,662.40 950.47,662.40 950.46,662.40 950.45,662.40 950.44,662.40 950.42,662.40 950.41,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>t statistic</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t statistic</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1103.19,81.01 L1145.75,81.01 M146.51,662.40 L146.51,54.01 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >t score</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/derive_public_key: Welch t test</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 26 KiB |
203
benchmarks/babyjubjub/derive_public_key/report/index.html
Normal file
@@ -0,0 +1,203 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>babyjubjub/derive_public_key - Criterion.rs</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font: 14px Helvetica Neue;
|
||||
text-rendering: optimizelegibility;
|
||||
}
|
||||
|
||||
.body {
|
||||
width: 960px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 200
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding-right: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #1F78B4;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
th.ci-bound {
|
||||
opacity: 0.6
|
||||
}
|
||||
|
||||
td.ci-bound {
|
||||
opacity: 0.5
|
||||
}
|
||||
|
||||
.stats {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.additional_stats {
|
||||
flex: 0 0 60%
|
||||
}
|
||||
|
||||
.additional_plots {
|
||||
flex: 1
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 36px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer {
|
||||
height: 40px;
|
||||
background: #888;
|
||||
color: white;
|
||||
font-size: larger;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
text-align: center
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="body">
|
||||
<h2>babyjubjub/derive_public_key</h2>
|
||||
<div class="absolute">
|
||||
<section class="plots">
|
||||
<table width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="pdf.svg">
|
||||
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="regression.svg">
|
||||
<img src="regression_small.svg" alt="Regression" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
<section class="stats">
|
||||
<div class="additional_stats">
|
||||
<h4>Additional Statistics:</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
|
||||
<th>Estimate</th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Slope</td>
|
||||
<td class="ci-bound">53.061 µs</td>
|
||||
<td>53.188 µs</td>
|
||||
<td class="ci-bound">53.340 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>R²</td>
|
||||
<td class="ci-bound">0.9769261</td>
|
||||
<td>0.9777068</td>
|
||||
<td class="ci-bound">0.9765803</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mean</td>
|
||||
<td class="ci-bound">53.558 µs</td>
|
||||
<td>53.732 µs</td>
|
||||
<td class="ci-bound">53.910 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Standard Deviation">Std. Dev.</td>
|
||||
<td class="ci-bound">789.39 ns</td>
|
||||
<td>903.26 ns</td>
|
||||
<td class="ci-bound">1.0055 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Median</td>
|
||||
<td class="ci-bound">53.283 µs</td>
|
||||
<td>53.825 µs</td>
|
||||
<td class="ci-bound">53.988 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Median Absolute Deviation">MAD</td>
|
||||
<td class="ci-bound">842.73 ns</td>
|
||||
<td>1.0794 µs</td>
|
||||
<td class="ci-bound">1.2603 µs</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="additional_plots">
|
||||
<h4>Additional Plots:</h4>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="typical.svg">Typical</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mean.svg">Mean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="SD.svg">Std. Dev.</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="median.svg">Median</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="MAD.svg">MAD</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="slope.svg">Slope</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="explanation">
|
||||
<h4>Understanding this report:</h4>
|
||||
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
|
||||
shows the estimated probability of an iteration taking a certain amount of time, while the line
|
||||
shows the mean. Click on the plot for a larger view showing the outliers.</p>
|
||||
<p>The plot on the right shows the linear regression calculated from the measurements. Each point
|
||||
represents a sample, though here it shows the total time for the sample rather than time per
|
||||
iteration. The line is the line of best fit for these measurements.</p>
|
||||
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
|
||||
documentation</a> for more details on the additional statistics.</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>This report was generated by
|
||||
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
|
||||
library in Rust.</p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
96
benchmarks/babyjubjub/derive_public_key/report/mean.svg
Normal file
@@ -0,0 +1,96 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:mean
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="450" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,450 86,450 "/>
|
||||
<text x="77" y="405" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,405 86,405 "/>
|
||||
<text x="77" y="359" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,359 86,359 "/>
|
||||
<text x="77" y="313" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,313 86,313 "/>
|
||||
<text x="77" y="267" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,267 86,267 "/>
|
||||
<text x="77" y="221" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,221 86,221 "/>
|
||||
<text x="77" y="175" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,175 86,175 "/>
|
||||
<text x="77" y="129" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,129 86,129 "/>
|
||||
<text x="77" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,83 86,83 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="148" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="148,473 148,478 "/>
|
||||
<text x="246" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="246,473 246,478 "/>
|
||||
<text x="344" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.65
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="344,473 344,478 "/>
|
||||
<text x="442" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.7
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="442,473 442,478 "/>
|
||||
<text x="540" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.75
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="540,473 540,478 "/>
|
||||
<text x="639" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="639,473 639,478 "/>
|
||||
<text x="737" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.85
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="737,473 737,478 "/>
|
||||
<text x="835" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="835,473 835,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,470 97,469 98,468 100,468 102,467 103,466 105,466 107,465 109,464 110,463 112,462 114,462 115,461 117,460 119,459 120,458 122,458 124,457 125,456 127,455 129,454 131,453 132,453 134,452 136,451 137,450 139,449 141,448 142,448 144,447 146,446 147,445 149,444 151,443 153,442 154,441 156,440 158,439 159,438 161,437 163,436 164,435 166,434 168,433 169,432 171,430 173,429 175,428 176,426 178,425 180,424 181,422 183,421 185,419 186,418 188,417 190,415 191,413 193,412 195,410 197,409 198,407 200,405 202,404 203,402 205,400 207,399 208,397 210,395 212,394 214,392 215,390 217,388 219,387 220,385 222,383 224,381 225,379 227,377 229,376 230,374 232,372 234,370 236,368 237,366 239,364 241,362 242,360 244,358 246,356 247,354 249,352 251,349 252,347 254,345 256,343 258,341 259,338 261,336 263,334 264,332 266,329 268,327 269,325 271,322 273,320 274,318 276,316 278,313 280,311 281,309 283,307 285,304 286,302 288,300 290,298 291,296 293,294 295,292 296,290 298,288 300,285 302,283 303,281 305,279 307,277 308,275 310,273 312,270 313,268 315,266 317,264 318,261 320,259 322,257 324,254 325,252 327,250 329,247 330,245 332,242 334,240 335,237 337,235 339,233 341,230 342,228 344,225 346,223 347,221 349,218 351,216 352,214 354,212 356,209 357,207 359,205 361,203 363,201 364,198 366,196 368,194 369,192 371,190 373,188 374,186 376,184 378,182 379,180 381,177 383,175 385,173 386,171 388,169 390,167 391,165 393,162 395,160 396,158 398,156 400,154 401,151 403,149 405,147 407,145 408,143 410,141 412,139 413,137 415,135 417,133 418,131 420,129 422,128 423,126 425,124 427,123 429,122 430,120 432,119 434,118 435,116 437,115 439,114 440,113 442,112 444,111 445,110 447,109 449,108 451,107 452,107 454,106 456,105 457,104 459,104 461,103 462,102 464,102 466,101 468,101 469,100 471,100 473,99 474,99 476,99 478,98 479,98 481,98 483,97 484,97 486,97 488,97 490,97 491,96 493,96 495,96 496,96 498,95 500,95 501,95 503,95 505,95 506,94 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,95 528,95 530,95 532,96 534,96 535,97 537,97 539,98 540,98 542,99 544,100 545,101 547,101 549,102 550,103 552,104 554,105 556,106 557,106 559,107 561,108 562,109 564,111 566,112 567,113 569,114 571,115 573,117 574,118 576,120 578,121 579,123 581,124 583,126 584,128 586,130 588,132 589,134 591,136 593,138 595,140 596,142 598,144 600,146 601,148 603,151 605,153 606,155 608,158 610,160 611,162 613,165 615,167 617,169 618,172 620,174 622,176 623,178 625,181 627,183 628,185 630,187 632,190 633,192 635,194 637,196 639,198 640,200 642,202 644,204 645,207 647,209 649,211 650,213 652,215 654,217 655,220 657,222 659,224 661,226 662,228 664,231 666,233 667,235 669,237 671,240 672,242 674,244 676,246 677,249 679,251 681,253 683,255 684,257 686,259 688,261 689,264 691,266 693,268 694,270 696,272 698,274 700,276 701,278 703,280 705,282 706,284 708,286 710,289 711,291 713,293 715,295 716,297 718,300 720,302 722,304 723,306 725,309 727,311 728,313 730,315 732,318 733,320 735,322 737,324 738,326 740,328 742,330 744,332 745,335 747,337 749,339 750,341 752,343 754,345 755,347 757,349 759,351 760,353 762,355 764,357 766,359 767,360 769,362 771,364 772,366 774,368 776,370 777,372 779,374 781,376 782,378 784,379 786,381 788,383 789,385 791,386 793,388 794,390 796,391 798,393 799,394 801,396 803,397 804,399 806,400 808,402 810,403 811,404 813,406 815,407 816,408 818,410 820,411 821,412 823,413 825,415 827,416 828,417 830,419 832,420 833,421 835,422 837,424 838,425 840,426 842,428 843,429 845,430 847,431 849,433 850,434 852,435 854,436 855,437 857,439 859,440 860,441 862,442 864,443 865,444 867,445 869,446 871,447 872,448 874,449 876,450 877,451 879,451 881,452 882,453 884,454 886,454 887,455 889,456 891,456 893,457 894,458 896,458 898,459 899,460 901,460 903,461 904,462 906,462 908,463 909,464 911,464 913,465 915,466 916,466 918,467 920,468 921,469 923,469 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,435 166,434 168,433 169,432 171,430 173,429 175,428 176,426 178,425 180,424 181,422 183,421 185,419 186,418 188,417 190,415 191,413 193,412 195,410 197,409 198,407 200,405 202,404 203,402 205,400 207,399 208,397 210,395 212,394 214,392 215,390 217,388 219,387 220,385 222,383 224,381 225,379 227,377 229,376 230,374 232,372 234,370 236,368 237,366 239,364 241,362 242,360 244,358 246,356 247,354 249,352 251,349 252,347 254,345 256,343 258,341 259,338 261,336 263,334 264,332 266,329 268,327 269,325 271,322 273,320 274,318 276,316 278,313 280,311 281,309 283,307 285,304 286,302 288,300 290,298 291,296 293,294 295,292 296,290 298,288 300,285 302,283 303,281 305,279 307,277 308,275 310,273 312,270 313,268 315,266 317,264 318,261 320,259 322,257 324,254 325,252 327,250 329,247 330,245 332,242 334,240 335,237 337,235 339,233 341,230 342,228 344,225 346,223 347,221 349,218 351,216 352,214 354,212 356,209 357,207 359,205 361,203 363,201 364,198 366,196 368,194 369,192 371,190 373,188 374,186 376,184 378,182 379,180 381,177 383,175 385,173 386,171 388,169 390,167 391,165 393,162 395,160 396,158 398,156 400,154 401,151 403,149 405,147 407,145 408,143 410,141 412,139 413,137 415,135 417,133 418,131 420,129 422,128 423,126 425,124 427,123 429,122 430,120 432,119 434,118 435,116 437,115 439,114 440,113 442,112 444,111 445,110 447,109 449,108 451,107 452,107 454,106 456,105 457,104 459,104 461,103 462,102 464,102 466,101 468,101 469,100 471,100 473,99 474,99 476,99 478,98 479,98 481,98 483,97 484,97 486,97 488,97 490,97 491,96 493,96 495,96 496,96 498,95 500,95 501,95 503,95 505,95 506,94 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,95 528,95 530,95 532,96 534,96 535,97 537,97 539,98 540,98 542,99 544,100 545,101 547,101 549,102 550,103 552,104 554,105 556,106 557,106 559,107 561,108 562,109 564,111 566,112 567,113 569,114 571,115 573,117 574,118 576,120 578,121 579,123 581,124 583,126 584,128 586,130 588,132 589,134 591,136 593,138 595,140 596,142 598,144 600,146 601,148 603,151 605,153 606,155 608,158 610,160 611,162 613,165 615,167 617,169 618,172 620,174 622,176 623,178 625,181 627,183 628,185 630,187 632,190 633,192 635,194 637,196 639,198 640,200 642,202 644,204 645,207 647,209 649,211 650,213 652,215 654,217 655,220 657,222 659,224 661,226 662,228 664,231 666,233 667,235 669,237 671,240 672,242 674,244 676,246 677,249 679,251 681,253 683,255 684,257 686,259 688,261 689,264 691,266 693,268 694,270 696,272 698,274 700,276 701,278 703,280 705,282 706,284 708,286 710,289 711,291 713,293 715,295 716,297 718,300 720,302 722,304 723,306 725,309 727,311 728,313 730,315 732,318 733,320 735,322 737,324 738,326 740,328 742,330 744,332 745,335 747,337 749,339 750,341 752,343 754,345 755,347 757,349 759,351 760,353 762,355 764,357 766,359 767,360 769,362 771,364 772,366 774,368 776,370 777,372 779,374 781,376 782,378 784,379 786,381 788,383 789,385 791,386 793,388 794,390 796,391 798,393 799,394 801,396 803,397 804,399 806,400 808,402 810,403 811,404 813,406 815,407 816,408 818,410 820,411 821,412 823,413 825,415 827,416 828,417 830,419 832,420 833,421 835,422 837,424 838,425 840,426 842,428 843,429 845,430 847,431 849,433 850,434 852,435 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="506,473 506,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
88
benchmarks/babyjubjub/derive_public_key/report/median.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:median
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="428" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,428 86,428 "/>
|
||||
<text x="77" y="380" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,380 86,380 "/>
|
||||
<text x="77" y="332" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,332 86,332 "/>
|
||||
<text x="77" y="284" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,284 86,284 "/>
|
||||
<text x="77" y="236" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,236 86,236 "/>
|
||||
<text x="77" y="188" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,188 86,188 "/>
|
||||
<text x="77" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,140 86,140 "/>
|
||||
<text x="77" y="92" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,92 86,92 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="180" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="180,473 180,478 "/>
|
||||
<text x="278" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="278,473 278,478 "/>
|
||||
<text x="376" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="376,473 376,478 "/>
|
||||
<text x="474" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="474,473 474,478 "/>
|
||||
<text x="572" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.7
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="572,473 572,478 "/>
|
||||
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
|
||||
<text x="768" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.9
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="768,473 768,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,467 88,467 90,466 92,466 93,465 95,465 97,464 98,464 100,463 102,462 103,462 105,461 107,460 109,460 110,459 112,458 114,457 115,456 117,456 119,455 120,454 122,453 124,452 125,451 127,450 129,449 131,448 132,447 134,446 136,445 137,444 139,443 141,443 142,442 144,441 146,440 147,439 149,438 151,438 153,437 154,436 156,435 158,435 159,434 161,434 163,433 164,433 166,433 168,433 169,433 171,433 173,433 175,433 176,433 178,433 180,434 181,434 183,435 185,435 186,436 188,437 190,437 191,438 193,439 195,440 197,440 198,441 200,442 202,442 203,443 205,443 207,444 208,444 210,445 212,445 214,445 215,446 217,446 219,446 220,447 222,447 224,447 225,447 227,448 229,448 230,448 232,448 234,448 236,448 237,448 239,449 241,449 242,449 244,448 246,448 247,448 249,448 251,448 252,448 254,448 256,448 258,447 259,447 261,447 263,447 264,447 266,447 268,447 269,447 271,447 273,447 274,447 276,448 278,448 280,448 281,448 283,448 285,448 286,448 288,448 290,448 291,448 293,447 295,447 296,447 298,446 300,446 302,445 303,445 305,444 307,444 308,443 310,442 312,442 313,441 315,440 317,440 318,440 320,439 322,439 324,439 325,439 327,439 329,439 330,440 332,440 334,441 335,441 337,442 339,442 341,443 342,443 344,444 346,444 347,444 349,445 351,444 352,444 354,443 356,443 357,441 359,440 361,438 363,436 364,433 366,430 368,427 369,423 371,419 373,415 374,410 376,405 378,399 379,394 381,388 383,382 385,375 386,369 388,363 390,356 391,350 393,343 395,337 396,331 398,325 400,320 401,315 403,310 405,305 407,301 408,298 410,294 412,292 413,290 415,288 417,287 418,286 420,286 422,286 423,287 425,288 427,289 429,291 430,293 432,296 434,298 435,301 437,304 439,307 440,310 442,313 444,316 445,319 447,322 449,325 451,328 452,331 454,334 456,337 457,339 459,342 461,344 462,347 464,349 466,351 468,354 469,356 471,358 473,359 474,361 476,363 478,364 479,366 481,367 483,368 484,370 486,371 488,372 490,373 491,374 493,375 495,376 496,376 498,377 500,378 501,379 503,380 505,381 506,382 508,383 510,384 512,385 513,386 515,386 517,387 518,388 520,389 522,390 523,391 525,392 527,392 528,392 530,393 532,393 534,393 535,393 537,393 539,392 540,392 542,391 544,391 545,390 547,390 549,389 550,389 552,389 554,388 556,388 557,388 559,388 561,388 562,388 564,389 566,389 567,389 569,390 571,390 573,390 574,390 576,390 578,390 579,390 581,390 583,390 584,389 586,388 588,388 589,387 591,386 593,385 595,384 596,383 598,382 600,381 601,380 603,379 605,378 606,378 608,377 610,377 611,376 613,376 615,376 617,376 618,375 620,375 622,375 623,375 625,374 627,374 628,374 630,373 632,372 633,372 635,371 637,370 639,369 640,368 642,367 644,366 645,364 647,363 649,362 650,360 652,359 654,357 655,355 657,353 659,351 661,349 662,347 664,345 666,343 667,340 669,338 671,335 672,332 674,330 676,327 677,324 679,322 681,319 683,317 684,314 686,312 688,310 689,309 691,307 693,306 694,305 696,304 698,303 700,303 701,302 703,302 705,302 706,303 708,303 710,303 711,304 713,304 715,305 716,305 718,306 720,306 722,307 723,307 725,307 727,307 728,306 730,306 732,305 733,304 735,303 737,302 738,300 740,298 742,295 744,293 745,289 747,286 749,282 750,277 752,272 754,267 755,260 757,254 759,247 760,239 762,231 764,223 766,214 767,205 769,196 771,186 772,177 774,167 776,158 777,149 779,140 781,132 782,125 784,118 786,111 788,106 789,102 791,98 793,95 794,93 796,92 798,92 799,92 801,94 803,96 804,98 806,101 808,104 810,108 811,112 813,116 815,120 816,124 818,128 820,132 821,136 823,140 825,145 827,149 828,153 830,158 832,163 833,168 835,174 837,180 838,186 840,193 842,200 843,208 845,216 847,225 849,235 850,244 852,254 854,265 855,276 857,286 859,297 860,308 862,319 864,330 865,340 867,351 869,361 871,370 872,379 874,388 876,396 877,404 879,411 881,417 882,423 884,429 886,434 887,439 889,443 891,446 893,450 894,453 896,455 898,458 899,460 901,461 903,463 904,464 906,466 908,467 909,467 911,468 913,469 915,469 916,470 918,470 920,471 921,471 923,471 925,472 926,472 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,433 166,433 168,433 169,433 171,433 173,433 175,433 176,433 178,433 180,434 181,434 183,435 185,435 186,436 188,437 190,437 191,438 193,439 195,440 197,440 198,441 200,442 202,442 203,443 205,443 207,444 208,444 210,445 212,445 214,445 215,446 217,446 219,446 220,447 222,447 224,447 225,447 227,448 229,448 230,448 232,448 234,448 236,448 237,448 239,449 241,449 242,449 244,448 246,448 247,448 249,448 251,448 252,448 254,448 256,448 258,447 259,447 261,447 263,447 264,447 266,447 268,447 269,447 271,447 273,447 274,447 276,448 278,448 280,448 281,448 283,448 285,448 286,448 288,448 290,448 291,448 293,447 295,447 296,447 298,446 300,446 302,445 303,445 305,444 307,444 308,443 310,442 312,442 313,441 315,440 317,440 318,440 320,439 322,439 324,439 325,439 327,439 329,439 330,440 332,440 334,441 335,441 337,442 339,442 341,443 342,443 344,444 346,444 347,444 349,445 351,444 352,444 354,443 356,443 357,441 359,440 361,438 363,436 364,433 366,430 368,427 369,423 371,419 373,415 374,410 376,405 378,399 379,394 381,388 383,382 385,375 386,369 388,363 390,356 391,350 393,343 395,337 396,331 398,325 400,320 401,315 403,310 405,305 407,301 408,298 410,294 412,292 413,290 415,288 417,287 418,286 420,286 422,286 423,287 425,288 427,289 429,291 430,293 432,296 434,298 435,301 437,304 439,307 440,310 442,313 444,316 445,319 447,322 449,325 451,328 452,331 454,334 456,337 457,339 459,342 461,344 462,347 464,349 466,351 468,354 469,356 471,358 473,359 474,361 476,363 478,364 479,366 481,367 483,368 484,370 486,371 488,372 490,373 491,374 493,375 495,376 496,376 498,377 500,378 501,379 503,380 505,381 506,382 508,383 510,384 512,385 513,386 515,386 517,387 518,388 520,389 522,390 523,391 525,392 527,392 528,392 530,393 532,393 534,393 535,393 537,393 539,392 540,392 542,391 544,391 545,390 547,390 549,389 550,389 552,389 554,388 556,388 557,388 559,388 561,388 562,388 564,389 566,389 567,389 569,390 571,390 573,390 574,390 576,390 578,390 579,390 581,390 583,390 584,389 586,388 588,388 589,387 591,386 593,385 595,384 596,383 598,382 600,381 601,380 603,379 605,378 606,378 608,377 610,377 611,376 613,376 615,376 617,376 618,375 620,375 622,375 623,375 625,374 627,374 628,374 630,373 632,372 633,372 635,371 637,370 639,369 640,368 642,367 644,366 645,364 647,363 649,362 650,360 652,359 654,357 655,355 657,353 659,351 661,349 662,347 664,345 666,343 667,340 669,338 671,335 672,332 674,330 676,327 677,324 679,322 681,319 683,317 684,314 686,312 688,310 689,309 691,307 693,306 694,305 696,304 698,303 700,303 701,302 703,302 705,302 706,303 708,303 710,303 711,304 713,304 715,305 716,305 718,306 720,306 722,307 723,307 725,307 727,307 728,306 730,306 732,305 733,304 735,303 737,302 738,300 740,298 742,295 744,293 745,289 747,286 749,282 750,277 752,272 754,267 755,260 757,254 759,247 760,239 762,231 764,223 766,214 767,205 769,196 771,186 772,177 774,167 776,158 777,149 779,140 781,132 782,125 784,118 786,111 788,106 789,102 791,98 793,95 794,93 796,92 798,92 799,92 801,94 803,96 804,98 806,101 808,104 810,108 811,112 813,116 815,120 816,124 818,128 820,132 821,136 823,140 825,145 827,149 828,153 830,158 832,163 833,168 835,174 837,180 838,186 840,193 842,200 843,208 845,216 847,225 849,235 850,244 852,254 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="695,473 695,304 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
139
benchmarks/babyjubjub/derive_public_key/report/pdf.svg
Normal file
@@ -0,0 +1,139 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
|
||||
<text x="77" y="428" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,428 86,428 "/>
|
||||
<text x="77" y="384" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,384 86,384 "/>
|
||||
<text x="77" y="340" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,340 86,340 "/>
|
||||
<text x="77" y="296" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,296 86,296 "/>
|
||||
<text x="77" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,252 86,252 "/>
|
||||
<text x="77" y="208" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,208 86,208 "/>
|
||||
<text x="77" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,164 86,164 "/>
|
||||
<text x="77" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,120 86,120 "/>
|
||||
<text x="77" y="76" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,76 86,76 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
|
||||
<text x="182" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="182,473 182,478 "/>
|
||||
<text x="318" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="318,473 318,478 "/>
|
||||
<text x="454" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
54
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="454,473 454,478 "/>
|
||||
<text x="589" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
55
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="589,473 589,478 "/>
|
||||
<text x="725" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
56
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="725,473 725,478 "/>
|
||||
<text x="861" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
57
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="861,473 861,478 "/>
|
||||
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
|
||||
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
|
||||
<text x="883" y="419" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,419 878,419 "/>
|
||||
<text x="883" y="365" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,365 878,365 "/>
|
||||
<text x="883" y="311" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,311 878,311 "/>
|
||||
<text x="883" y="257" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,257 878,257 "/>
|
||||
<text x="883" y="203" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,203 878,203 "/>
|
||||
<text x="883" y="149" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,149 878,149 "/>
|
||||
<text x="883" y="94" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.35
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,94 878,94 "/>
|
||||
<polygon opacity="0.5" fill="#1F78B4" points="87,473 88,473 90,473 91,473 93,473 94,472 96,472 98,472 99,472 101,472 102,472 104,472 105,471 107,471 109,471 110,471 112,470 113,470 115,470 116,470 118,469 120,469 121,468 123,468 124,468 126,467 127,467 129,466 131,465 132,465 134,464 135,463 137,462 138,462 140,461 142,460 143,459 145,458 146,456 148,455 150,454 151,453 153,451 154,450 156,448 157,446 159,445 161,443 162,441 164,439 165,437 167,434 168,432 170,429 172,427 173,424 175,421 176,418 178,415 179,412 181,409 183,406 184,402 186,398 187,395 189,391 190,387 192,382 194,378 195,374 197,369 198,364 200,360 201,355 203,350 205,345 206,339 208,334 209,329 211,323 213,317 214,312 216,306 217,300 219,294 220,288 222,281 224,275 225,269 227,263 228,256 230,250 231,243 233,237 235,231 236,224 238,218 239,211 241,205 242,199 244,192 246,186 247,180 249,174 250,168 252,162 253,156 255,150 257,144 258,139 260,133 261,128 263,123 264,118 266,113 268,108 269,104 271,99 272,95 274,91 276,87 277,84 279,80 280,77 282,74 283,71 285,69 287,66 288,64 290,62 291,60 293,59 294,57 296,56 298,55 299,55 301,54 302,54 304,53 305,54 307,54 309,54 310,55 312,55 313,56 315,57 316,59 318,60 320,62 321,63 323,65 324,67 326,69 327,71 329,73 331,75 332,77 334,80 335,82 337,85 339,87 340,90 342,92 343,95 345,97 346,100 348,103 350,105 351,108 353,110 354,112 356,115 357,117 359,119 361,122 362,124 364,126 365,128 367,129 368,131 370,133 372,134 373,136 375,137 376,138 378,139 379,140 381,141 383,141 384,142 386,142 387,143 389,143 391,143 392,143 394,142 395,142 397,141 398,141 400,140 402,139 403,138 405,137 406,136 408,135 409,133 411,132 413,131 414,129 416,127 417,126 419,124 420,122 422,120 424,118 425,116 427,114 428,112 430,110 431,108 433,106 435,104 436,102 438,100 439,98 441,96 442,94 444,93 446,91 447,89 449,87 450,86 452,84 454,83 455,82 457,80 458,79 460,78 461,77 463,76 465,76 466,75 468,74 469,74 471,74 472,74 474,74 476,74 477,74 479,74 480,75 482,76 483,76 485,77 487,78 488,80 490,81 491,82 493,84 494,86 496,87 498,89 499,91 501,94 502,96 504,98 505,101 507,104 509,106 510,109 512,112 513,115 515,119 517,122 518,125 520,129 521,132 523,136 524,140 526,143 528,147 529,151 531,155 532,159 534,163 535,167 537,172 539,176 540,180 542,184 543,189 545,193 546,197 548,202 550,206 551,210 553,215 554,219 556,223 557,228 559,232 561,236 562,241 564,245 565,249 567,253 568,258 570,262 572,266 573,270 575,274 576,278 578,282 580,286 581,289 583,293 584,297 586,300 587,304 589,307 591,311 592,314 594,317 595,321 597,324 598,327 600,330 602,333 603,335 605,338 606,341 608,344 609,346 611,348 613,351 614,353 616,355 617,358 619,360 620,362 622,364 624,365 625,367 627,369 628,371 630,372 632,374 633,375 635,377 636,378 638,379 639,381 641,382 643,383 644,384 646,385 647,386 649,387 650,388 652,389 654,390 655,391 657,391 658,392 660,393 661,393 663,394 665,395 666,395 668,396 669,396 671,397 672,397 674,398 676,398 677,399 679,399 680,400 682,400 683,401 685,401 687,402 688,402 690,403 691,403 693,404 695,404 696,405 698,405 699,406 701,407 702,407 704,408 706,409 707,409 709,410 710,411 712,411 713,412 715,413 717,414 718,414 720,415 721,416 723,417 724,418 726,419 728,420 729,421 731,421 732,422 734,423 735,424 737,425 739,426 740,427 742,429 743,430 745,431 746,432 748,433 750,434 751,435 753,436 754,437 756,438 758,439 759,440 761,441 762,442 764,443 765,444 767,445 769,446 770,447 772,448 773,449 775,450 776,451 778,452 780,453 781,454 783,455 784,455 786,456 787,457 789,458 791,458 792,459 794,460 795,460 797,461 798,462 800,462 802,463 803,463 805,464 806,465 808,465 809,466 811,466 813,466 814,467 816,467 817,468 819,468 821,468 822,469 824,469 825,469 827,470 828,470 830,470 832,470 833,470 835,471 836,471 838,471 839,471 841,471 843,472 844,472 846,472 847,472 849,472 850,472 852,472 854,472 855,472 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="417,472 417,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="87,472 87,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="801,472 801,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="873,472 873,53 "/>
|
||||
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
PDF
|
||||
</text>
|
||||
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mean
|
||||
</text>
|
||||
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
"Clean" sample
|
||||
</text>
|
||||
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mild outliers
|
||||
</text>
|
||||
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Severe outliers
|
||||
</text>
|
||||
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
|
||||
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
60
benchmarks/babyjubjub/derive_public_key/report/pdf_small.svg
Normal file
@@ -0,0 +1,60 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
|
||||
<text x="65" y="218" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,218 74,218 "/>
|
||||
<text x="65" y="191" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,191 74,191 "/>
|
||||
<text x="65" y="164" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,164 74,164 "/>
|
||||
<text x="65" y="137" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,137 74,137 "/>
|
||||
<text x="65" y="110" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,110 74,110 "/>
|
||||
<text x="65" y="83" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,83 74,83 "/>
|
||||
<text x="65" y="57" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.35
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,57 74,57 "/>
|
||||
<text x="65" y="30" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,30 74,30 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="118" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
52
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="118,245 118,250 "/>
|
||||
<text x="242" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
54
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="242,245 242,250 "/>
|
||||
<text x="367" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
56
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="367,245 367,250 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,244 77,244 77,244 78,244 79,244 80,244 80,244 81,244 82,244 82,244 83,243 84,243 85,243 85,243 86,243 87,243 87,243 88,243 89,242 90,242 90,242 91,242 92,242 92,241 93,241 94,241 95,240 95,240 96,240 97,239 98,239 98,239 99,238 100,238 100,237 101,237 102,236 103,235 103,235 104,234 105,233 105,233 106,232 107,231 108,230 108,229 109,228 110,227 110,226 111,225 112,224 113,223 113,221 114,220 115,219 116,217 116,216 117,214 118,212 118,211 119,209 120,207 121,205 121,203 122,201 123,199 123,197 124,195 125,193 126,190 126,188 127,186 128,183 128,181 129,178 130,175 131,173 131,170 132,167 133,164 133,161 134,158 135,155 136,152 136,149 137,146 138,143 139,140 139,137 140,134 141,130 141,127 142,124 143,121 144,118 144,115 145,111 146,108 146,105 147,102 148,99 149,96 149,93 150,90 151,87 151,84 152,81 153,79 154,76 154,73 155,71 156,68 157,66 157,63 158,61 159,59 159,57 160,55 161,53 162,51 162,50 163,48 164,47 164,45 165,44 166,43 167,42 167,41 168,40 169,39 169,38 170,38 171,37 172,37 172,37 173,36 174,36 175,36 175,36 176,37 177,37 177,37 178,38 179,38 180,39 180,40 181,40 182,41 182,42 183,43 184,44 185,45 185,46 186,47 187,48 187,49 188,51 189,52 190,53 190,54 191,56 192,57 192,58 193,59 194,61 195,62 195,63 196,64 197,66 198,67 198,68 199,69 200,70 200,71 201,72 202,73 203,74 203,75 204,76 205,76 205,77 206,78 207,78 208,79 208,79 209,80 210,80 210,80 211,80 212,80 213,81 213,81 214,80 215,80 216,80 216,80 217,80 218,79 218,79 219,78 220,78 221,77 221,77 222,76 223,75 223,74 224,74 225,73 226,72 226,71 227,70 228,69 228,68 229,67 230,66 231,65 231,64 232,63 233,62 233,61 234,60 235,59 236,58 236,58 237,57 238,56 239,55 239,54 240,53 241,52 241,52 242,51 243,50 244,50 244,49 245,49 246,48 246,48 247,47 248,47 249,47 249,47 250,46 251,46 251,46 252,46 253,47 254,47 254,47 255,47 256,48 257,48 257,49 258,49 259,50 259,51 260,51 261,52 262,53 262,54 263,55 264,56 264,57 265,59 266,60 267,61 267,63 268,64 269,65 269,67 270,69 271,70 272,72 272,74 273,75 274,77 275,79 275,81 276,83 277,85 277,87 278,89 279,91 280,93 280,95 281,97 282,99 282,101 283,103 284,105 285,108 285,110 286,112 287,114 287,116 288,118 289,121 290,123 290,125 291,127 292,129 292,131 293,133 294,135 295,138 295,140 296,142 297,144 298,146 298,148 299,149 300,151 300,153 301,155 302,157 303,159 303,160 304,162 305,164 305,166 306,167 307,169 308,170 308,172 309,173 310,175 310,176 311,177 312,179 313,180 313,181 314,183 315,184 316,185 316,186 317,187 318,188 318,189 319,190 320,191 321,192 321,193 322,194 323,194 323,195 324,196 325,197 326,197 326,198 327,198 328,199 328,200 329,200 330,201 331,201 331,202 332,202 333,203 333,203 334,203 335,204 336,204 336,204 337,205 338,205 339,205 339,206 340,206 341,206 341,207 342,207 343,207 344,207 344,208 345,208 346,208 346,208 347,208 348,209 349,209 349,209 350,209 351,210 351,210 352,210 353,211 354,211 354,211 355,211 356,212 357,212 357,212 358,213 359,213 359,213 360,214 361,214 362,214 362,215 363,215 364,216 364,216 365,216 366,217 367,217 367,218 368,218 369,219 369,219 370,220 371,220 372,221 372,221 373,222 374,222 375,223 375,223 376,224 377,224 377,225 378,225 379,226 380,226 380,227 381,227 382,228 382,228 383,229 384,230 385,230 385,231 386,231 387,231 387,232 388,232 389,233 390,233 390,234 391,234 392,235 392,235 393,235 394,236 395,236 395,237 396,237 397,237 398,238 398,238 399,238 400,239 400,239 401,239 402,240 403,240 403,240 404,240 405,241 405,241 406,241 407,241 408,241 408,242 409,242 410,242 410,242 411,242 412,242 413,243 413,243 414,243 415,243 416,243 416,243 417,243 418,243 418,243 419,243 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="226,244 226,72 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.3 KiB |
222
benchmarks/babyjubjub/derive_public_key/report/regression.svg
Normal file
@@ -0,0 +1,222 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="168" y1="472" x2="168" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="258" y1="472" x2="258" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="348" y1="472" x2="348" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="437" y1="472" x2="437" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="527" y1="472" x2="527" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="617" y1="472" x2="617" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="707" y1="472" x2="707" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="797" y1="472" x2="797" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="887" y1="472" x2="887" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="435" x2="932" y2="435"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="392" x2="932" y2="392"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="350" x2="932" y2="350"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="308" x2="932" y2="308"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="265" x2="932" y2="265"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="223" x2="932" y2="223"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="181" x2="932" y2="181"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="138" x2="932" y2="138"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="96" x2="932" y2="96"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="54" x2="932" y2="54"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="435" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,435 86,435 "/>
|
||||
<text x="77" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,392 86,392 "/>
|
||||
<text x="77" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,350 86,350 "/>
|
||||
<text x="77" y="308" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,308 86,308 "/>
|
||||
<text x="77" y="265" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,265 86,265 "/>
|
||||
<text x="77" y="223" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,223 86,223 "/>
|
||||
<text x="77" y="181" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,181 86,181 "/>
|
||||
<text x="77" y="138" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,138 86,138 "/>
|
||||
<text x="77" y="96" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,96 86,96 "/>
|
||||
<text x="77" y="54" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,54 86,54 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="168" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="168,473 168,478 "/>
|
||||
<text x="258" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="258,473 258,478 "/>
|
||||
<text x="348" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="348,473 348,478 "/>
|
||||
<text x="437" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="437,473 437,478 "/>
|
||||
<text x="527" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="527,473 527,478 "/>
|
||||
<text x="617" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="617,473 617,478 "/>
|
||||
<text x="707" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="707,473 707,478 "/>
|
||||
<text x="797" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="797,473 797,478 "/>
|
||||
<text x="887" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="887,473 887,478 "/>
|
||||
<circle cx="87" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="95" cy="468" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="112" cy="459" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="121" cy="456" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="452" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="138" cy="447" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="146" cy="442" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="155" cy="438" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="163" cy="433" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="429" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="425" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="189" cy="420" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="197" cy="414" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="206" cy="412" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="215" cy="408" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="403" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="232" cy="399" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="240" cy="395" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="388" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="257" cy="386" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="266" cy="382" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="378" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="283" cy="372" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="291" cy="367" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="300" cy="365" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="308" cy="360" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="354" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="349" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="334" cy="346" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="341" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="351" cy="337" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="360" cy="332" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="328" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="377" cy="324" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="385" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="313" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="402" cy="311" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="411" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="297" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="428" cy="299" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="436" cy="295" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="445" cy="291" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="454" cy="286" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="462" cy="282" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="471" cy="277" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="479" cy="272" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="488" cy="269" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="496" cy="262" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="505" cy="258" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="513" cy="253" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="522" cy="249" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="530" cy="245" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="539" cy="239" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="547" cy="236" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="556" cy="236" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="564" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="573" cy="231" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="582" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="590" cy="222" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="599" cy="219" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="607" cy="212" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="616" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="624" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="633" cy="201" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="641" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="650" cy="191" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="658" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="667" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="675" cy="177" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="684" cy="174" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="693" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="701" cy="165" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="710" cy="160" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="727" cy="155" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="735" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="744" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="752" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="761" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="769" cy="131" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="778" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="786" cy="122" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="795" cy="122" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="803" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="812" cy="110" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="821" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="829" cy="97" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="838" cy="98" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="846" cy="96" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="855" cy="92" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="863" cy="85" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="872" cy="81" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="880" cy="76" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="889" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="897" cy="70" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="906" cy="65" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="914" cy="59" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="923" cy="58" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="932" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,473 932,53 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="87,473 932,53 932,53 "/>
|
||||
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Sample
|
||||
</text>
|
||||
<text x="132" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Linear regression
|
||||
</text>
|
||||
<text x="132" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="102,88 122,88 "/>
|
||||
<rect x="102" y="98" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,207 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="109" y1="244" x2="109" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="147" y1="244" x2="147" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="185" y1="244" x2="185" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="224" y1="244" x2="224" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="262" y1="244" x2="262" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="300" y1="244" x2="300" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="338" y1="244" x2="338" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="376" y1="244" x2="376" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="414" y1="244" x2="414" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="224" x2="434" y2="224"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="201" x2="434" y2="201"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="178" x2="434" y2="178"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="154" x2="434" y2="154"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="131" x2="434" y2="131"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="108" x2="434" y2="108"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="85" x2="434" y2="85"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="62" x2="434" y2="62"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="39" x2="434" y2="39"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="16" x2="434" y2="16"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="224" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,224 74,224 "/>
|
||||
<text x="65" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,201 74,201 "/>
|
||||
<text x="65" y="178" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,178 74,178 "/>
|
||||
<text x="65" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,154 74,154 "/>
|
||||
<text x="65" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,131 74,131 "/>
|
||||
<text x="65" y="108" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,108 74,108 "/>
|
||||
<text x="65" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,85 74,85 "/>
|
||||
<text x="65" y="62" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,62 74,62 "/>
|
||||
<text x="65" y="39" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,39 74,39 "/>
|
||||
<text x="65" y="16" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,16 74,16 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="109" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="109,245 109,250 "/>
|
||||
<text x="147" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="147,245 147,250 "/>
|
||||
<text x="185" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="185,245 185,250 "/>
|
||||
<text x="224" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="224,245 224,250 "/>
|
||||
<text x="262" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="262,245 262,250 "/>
|
||||
<text x="300" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="300,245 300,250 "/>
|
||||
<text x="338" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="338,245 338,250 "/>
|
||||
<text x="376" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="376,245 376,250 "/>
|
||||
<text x="414" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="414,245 414,250 "/>
|
||||
<circle cx="75" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="78" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="82" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="85" cy="237" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="89" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="93" cy="233" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="96" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="100" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="226" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="107" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="111" cy="221" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="114" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="118" cy="216" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="122" cy="213" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="125" cy="211" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="133" cy="206" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="136" cy="204" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="140" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="143" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="147" cy="197" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="151" cy="195" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="154" cy="193" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="158" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="162" cy="187" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="165" cy="186" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="169" cy="183" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="180" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="176" cy="177" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="176" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="183" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="187" cy="171" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="191" cy="168" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="194" cy="165" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="198" cy="163" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="201" cy="161" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="205" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="209" cy="156" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="212" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="216" cy="149" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="220" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="227" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="230" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="234" cy="140" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="238" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="241" cy="135" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="245" cy="133" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="252" cy="127" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="256" cy="124" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="259" cy="122" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="263" cy="120" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="267" cy="117" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="270" cy="115" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="115" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="278" cy="115" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="281" cy="113" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="285" cy="108" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="288" cy="107" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="292" cy="106" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="296" cy="102" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="299" cy="102" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="303" cy="98" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="307" cy="96" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="310" cy="95" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="314" cy="90" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="89" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="321" cy="85" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="83" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="328" cy="82" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="332" cy="81" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="336" cy="77" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="339" cy="74" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="72" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="346" cy="71" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="350" cy="68" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="354" cy="66" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="357" cy="64" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="361" cy="62" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="365" cy="58" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="51" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="372" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="375" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="379" cy="50" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="383" cy="46" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="386" cy="43" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="390" cy="39" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="40" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="397" cy="39" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="401" cy="37" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="404" cy="33" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="408" cy="31" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="412" cy="28" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="415" cy="26" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="25" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="423" cy="22" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="426" cy="19" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="430" cy="18" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="434" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="75,245 434,15 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,245 434,15 434,15 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,331 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L81.53,242.40 '/> <g transform="translate(64.14,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,219.96 L81.53,219.96 '/> <g transform="translate(64.14,223.86)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,197.52 L81.53,197.52 '/> <g transform="translate(64.14,201.42)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,175.08 L81.53,175.08 '/> <g transform="translate(64.14,178.98)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 1.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,152.64 L81.53,152.64 '/> <g transform="translate(64.14,156.54)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,130.20 L81.53,130.20 '/> <g transform="translate(64.14,134.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 2.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,107.77 L81.53,107.77 '/> <g transform="translate(64.14,111.67)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,85.33 L81.53,85.33 '/> <g transform="translate(64.14,89.23)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 3.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,62.89 L81.53,62.89 '/> <g transform="translate(64.14,66.79)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,40.45 L81.53,40.45 '/> <g transform="translate(64.14,44.35)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 4.5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L72.53,233.40 '/> <g transform="translate(72.53,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M107.76,242.40 L107.76,233.40 '/> <g transform="translate(107.76,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 55</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M142.99,242.40 L142.99,233.40 '/> <g transform="translate(142.99,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M178.22,242.40 L178.22,233.40 '/> <g transform="translate(178.22,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 65</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M213.45,242.40 L213.45,233.40 '/> <g transform="translate(213.45,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M248.68,242.40 L248.68,233.40 '/> <g transform="translate(248.68,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 75</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M283.90,242.40 L283.90,233.40 '/> <g transform="translate(283.90,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M319.13,242.40 L319.13,233.40 '/> <g transform="translate(319.13,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 85</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M354.36,242.40 L354.36,233.40 '/> <g transform="translate(354.36,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M389.59,242.40 L389.59,233.40 '/> <g transform="translate(389.59,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,242.40 L424.82,233.40 '/> <g transform="translate(424.82,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '396.92,242.38 396.97,242.38 397.01,242.38 397.05,242.37 397.09,242.37 397.14,242.37 397.18,242.36 397.22,242.35 397.26,242.35 397.31,242.34 397.35,242.33 397.39,242.32 397.44,242.31 397.48,242.30 397.52,242.29 397.56,242.27
|
||||
397.61,242.25 397.65,242.24 397.69,242.22 397.73,242.19 397.78,242.17 397.82,242.14 397.86,242.11 397.90,242.07 397.95,242.03 397.99,241.99 398.03,241.94 398.07,241.89 398.12,241.83 398.16,241.77 398.20,241.70 398.24,241.62
|
||||
398.29,241.54 398.33,241.45 398.37,241.34 398.42,241.23 398.46,241.11 398.50,240.97 398.54,240.82 398.59,240.66 398.63,240.48 398.67,240.29 398.71,240.08 398.76,239.85 398.80,239.60 398.84,239.32 398.88,239.02 398.93,238.70
|
||||
398.97,238.35 399.01,237.97 399.05,237.55 399.10,237.10 399.14,236.62 399.18,236.10 399.23,235.54 399.27,234.93 399.31,234.29 399.35,233.59 399.40,232.84 399.44,232.05 399.48,231.20 399.52,230.29 399.57,229.33 399.61,228.30
|
||||
399.65,227.22 399.69,226.07 399.74,224.86 399.78,223.58 399.82,222.24 399.86,220.83 399.91,219.35 399.95,217.81 399.99,216.20 400.03,214.52 400.08,212.78 400.12,210.98 400.16,209.11 400.21,207.19 400.25,205.21 400.29,203.18
|
||||
400.33,201.10 400.38,198.97 400.42,196.80 400.46,194.60 400.50,192.37 400.55,190.12 400.59,187.84 400.63,185.56 400.67,183.27 400.72,180.98 400.76,178.70 400.80,176.43 400.84,174.19 400.89,171.99 400.93,169.82 400.97,167.69
|
||||
401.02,165.62 401.06,163.62 401.10,161.68 401.14,159.81 401.19,158.03 401.23,156.34 401.27,154.74 401.31,153.24 401.36,151.85 401.40,150.57 401.44,149.40 401.48,148.35 401.53,147.42 401.57,146.62 401.61,145.95 401.65,145.40
|
||||
401.70,144.98 401.74,144.69 401.78,144.53 401.82,144.50 401.87,144.60 401.91,144.83 401.95,145.18 402.00,145.65 402.04,146.24 402.08,146.94 402.12,147.76 402.17,148.68 402.21,149.71 402.25,150.84 402.29,152.06 402.34,153.37
|
||||
402.38,154.77 402.42,156.24 402.46,157.79 402.51,159.40 402.55,161.08 402.59,162.81 402.63,164.59 402.68,166.42 402.72,168.29 402.76,170.20 402.80,172.13 402.85,174.09 402.89,176.06 402.93,178.05 402.98,180.05 403.02,182.06
|
||||
403.06,184.06 403.10,186.06 403.15,188.05 403.19,190.03 403.23,191.98 403.27,193.92 403.32,195.84 403.36,197.73 403.40,199.58 403.44,201.40 403.49,203.19 403.53,204.94 403.57,206.64 403.61,208.30 403.66,209.92 403.70,211.48
|
||||
403.74,213.00 403.79,214.47 403.83,215.89 403.87,217.25 403.91,218.56 403.96,219.82 404.00,221.02 404.04,222.17 404.08,223.27 404.13,224.31 404.17,225.30 404.21,226.23 404.25,227.12 404.30,227.95 404.34,228.74 404.38,229.47
|
||||
404.42,230.16 404.47,230.80 404.51,231.40 404.55,231.95 404.59,232.47 404.64,232.94 404.68,233.38 404.72,233.78 404.77,234.14 404.81,234.48 404.85,234.78 404.89,235.06 404.94,235.31 404.98,235.53 405.02,235.73 405.06,235.91
|
||||
405.11,236.06 405.15,236.20 405.19,236.32 405.23,236.43 405.28,236.52 405.32,236.60 405.36,236.66 405.40,236.71 405.45,236.76 405.49,236.79 405.53,236.82 405.57,236.84 405.62,236.86 405.66,236.86 405.70,236.87 405.75,236.87
|
||||
405.79,236.86 405.83,236.86 405.87,236.85 405.92,236.83 405.96,236.82 406.00,236.81 406.04,236.79 406.09,236.78 406.13,236.76 406.17,236.75 406.21,236.74 406.26,236.73 406.30,236.71 406.34,236.71 406.38,236.70 406.43,236.69
|
||||
406.47,236.69 406.51,236.69 406.56,236.70 406.60,236.70 406.64,236.72 406.68,236.73 406.73,236.75 406.77,236.77 406.81,236.79 406.85,236.82 406.90,236.85 406.94,236.89 406.98,236.93 407.02,236.98 407.07,237.03 407.11,237.08
|
||||
407.15,237.13 407.19,237.19 407.24,237.26 407.28,237.32 407.32,237.39 407.36,237.47 407.41,237.54 407.45,237.62 407.49,237.70 407.54,237.78 407.58,237.87 407.62,237.96 407.66,238.04 407.71,238.13 407.75,238.23 407.79,238.32
|
||||
407.83,238.41 407.88,238.51 407.92,238.60 407.96,238.69 408.00,238.79 408.05,238.88 408.09,238.98 408.13,239.07 408.17,239.17 408.22,239.26 408.26,239.36 408.30,239.45 408.35,239.54 408.39,239.63 408.43,239.72 408.47,239.81
|
||||
408.52,239.90 408.56,239.99 408.60,240.08 408.64,240.16 408.69,240.25 408.73,240.33 408.77,240.41 408.81,240.49 408.86,240.57 408.90,240.65 408.94,240.72 408.98,240.79 409.03,240.87 409.07,240.93 409.11,241.00 409.15,241.07
|
||||
409.20,241.13 409.24,241.19 409.28,241.25 409.33,241.31 409.37,241.36 409.41,241.41 409.45,241.46 409.50,241.50 409.54,241.54 409.58,241.58 409.62,241.62 409.67,241.65 409.71,241.68 409.75,241.71 409.79,241.73 409.84,241.75
|
||||
409.88,241.76 409.92,241.78 409.96,241.79 410.01,241.79 410.05,241.80 410.09,241.80 410.13,241.80 410.18,241.79 410.22,241.78 410.26,241.77 410.31,241.76 410.35,241.74 410.39,241.72 410.43,241.70 410.48,241.67 410.52,241.65
|
||||
410.56,241.62 410.60,241.59 410.65,241.56 410.69,241.53 410.73,241.50 410.77,241.46 410.82,241.43 410.86,241.40 410.90,241.36 410.94,241.33 410.99,241.30 411.03,241.26 411.07,241.23 411.12,241.20 411.16,241.17 411.20,241.15
|
||||
411.24,241.12 411.29,241.10 411.33,241.08 411.37,241.06 411.41,241.04 411.46,241.03 411.50,241.02 411.54,241.01 411.58,241.01 411.63,241.00 411.67,241.01 411.71,241.01 411.75,241.02 411.80,241.03 411.84,241.04 411.88,241.06
|
||||
411.92,241.08 411.97,241.10 412.01,241.12 412.05,241.15 412.10,241.17 412.14,241.20 412.18,241.24 412.22,241.27 412.27,241.30 412.31,241.34 412.35,241.38 412.39,241.41 412.44,241.45 412.48,241.49 412.52,241.53 412.56,241.57
|
||||
412.61,241.61 412.65,241.64 412.69,241.68 412.73,241.72 412.78,241.75 412.82,241.79 412.86,241.82 412.90,241.85 412.95,241.88 412.99,241.91 413.03,241.94 413.08,241.96 413.12,241.99 413.16,242.01 413.20,242.03 413.25,242.05
|
||||
413.29,242.06 413.33,242.07 413.37,242.08 413.42,242.09 413.46,242.10 413.50,242.10 413.54,242.10 413.59,242.10 413.63,242.10 413.67,242.10 413.71,242.09 413.76,242.08 413.80,242.07 413.84,242.05 413.89,242.04 413.93,242.02
|
||||
413.97,242.00 414.01,241.98 414.06,241.95 414.10,241.92 414.14,241.90 414.18,241.87 414.23,241.84 414.27,241.80 414.31,241.77 414.35,241.73 414.40,241.70 414.44,241.66 414.48,241.62 414.52,241.59 414.57,241.55 414.61,241.51
|
||||
414.65,241.47 414.69,241.43 414.74,241.39 414.78,241.36 414.82,241.32 414.87,241.28 414.91,241.25 414.95,241.22 414.99,241.19 415.04,241.16 415.08,241.13 415.12,241.11 415.16,241.09 415.21,241.07 415.25,241.05 415.29,241.03
|
||||
415.33,241.02 415.38,241.01 415.42,241.01 415.46,241.01 415.50,241.01 415.55,241.01 415.59,241.02 415.63,241.03 415.68,241.04 415.72,241.06 415.76,241.08 415.80,241.10 415.85,241.12 415.89,241.15 415.93,241.17 415.97,241.20
|
||||
416.02,241.24 416.06,241.27 416.10,241.31 416.14,241.34 416.19,241.38 416.23,241.42 416.27,241.46 416.31,241.50 416.36,241.54 416.40,241.58 416.44,241.61 416.48,241.65 416.53,241.69 416.57,241.73 416.61,241.77 416.66,241.81
|
||||
416.70,241.84 416.74,241.88 416.78,241.91 416.83,241.94 416.87,241.98 416.91,242.01 416.95,242.03 417.00,242.06 417.04,242.09 417.08,242.11 417.12,242.14 417.17,242.16 417.21,242.18 417.25,242.20 417.29,242.22 417.34,242.23
|
||||
417.38,242.25 417.42,242.26 417.46,242.28 417.51,242.29 417.55,242.30 417.59,242.31 417.64,242.32 417.68,242.33 417.72,242.34 417.76,242.34 417.81,242.35 417.85,242.36 417.89,242.36 417.93,242.37 417.98,242.37 418.02,242.37
|
||||
418.06,242.38 418.10,242.38 418.15,242.38 418.19,242.38 418.19,242.40 418.15,242.40 418.10,242.40 418.06,242.40 418.02,242.40 417.98,242.40 417.93,242.40 417.89,242.40 417.85,242.40 417.81,242.40 417.76,242.40 417.72,242.40
|
||||
417.68,242.40 417.64,242.40 417.59,242.40 417.55,242.40 417.51,242.40 417.46,242.40 417.42,242.40 417.38,242.40 417.34,242.40 417.29,242.40 417.25,242.40 417.21,242.40 417.17,242.40 417.12,242.40 417.08,242.40 417.04,242.40
|
||||
417.00,242.40 416.95,242.40 416.91,242.40 416.87,242.40 416.83,242.40 416.78,242.40 416.74,242.40 416.70,242.40 416.66,242.40 416.61,242.40 416.57,242.40 416.53,242.40 416.48,242.40 416.44,242.40 416.40,242.40 416.36,242.40
|
||||
416.31,242.40 416.27,242.40 416.23,242.40 416.19,242.40 416.14,242.40 416.10,242.40 416.06,242.40 416.02,242.40 415.97,242.40 415.93,242.40 415.89,242.40 415.85,242.40 415.80,242.40 415.76,242.40 415.72,242.40 415.68,242.40
|
||||
415.63,242.40 415.59,242.40 415.55,242.40 415.50,242.40 415.46,242.40 415.42,242.40 415.38,242.40 415.33,242.40 415.29,242.40 415.25,242.40 415.21,242.40 415.16,242.40 415.12,242.40 415.08,242.40 415.04,242.40 414.99,242.40
|
||||
414.95,242.40 414.91,242.40 414.87,242.40 414.82,242.40 414.78,242.40 414.74,242.40 414.69,242.40 414.65,242.40 414.61,242.40 414.57,242.40 414.52,242.40 414.48,242.40 414.44,242.40 414.40,242.40 414.35,242.40 414.31,242.40
|
||||
414.27,242.40 414.23,242.40 414.18,242.40 414.14,242.40 414.10,242.40 414.06,242.40 414.01,242.40 413.97,242.40 413.93,242.40 413.89,242.40 413.84,242.40 413.80,242.40 413.76,242.40 413.71,242.40 413.67,242.40 413.63,242.40
|
||||
413.59,242.40 413.54,242.40 413.50,242.40 413.46,242.40 413.42,242.40 413.37,242.40 413.33,242.40 413.29,242.40 413.25,242.40 413.20,242.40 413.16,242.40 413.12,242.40 413.08,242.40 413.03,242.40 412.99,242.40 412.95,242.40
|
||||
412.90,242.40 412.86,242.40 412.82,242.40 412.78,242.40 412.73,242.40 412.69,242.40 412.65,242.40 412.61,242.40 412.56,242.40 412.52,242.40 412.48,242.40 412.44,242.40 412.39,242.40 412.35,242.40 412.31,242.40 412.27,242.40
|
||||
412.22,242.40 412.18,242.40 412.14,242.40 412.10,242.40 412.05,242.40 412.01,242.40 411.97,242.40 411.92,242.40 411.88,242.40 411.84,242.40 411.80,242.40 411.75,242.40 411.71,242.40 411.67,242.40 411.63,242.40 411.58,242.40
|
||||
411.54,242.40 411.50,242.40 411.46,242.40 411.41,242.40 411.37,242.40 411.33,242.40 411.29,242.40 411.24,242.40 411.20,242.40 411.16,242.40 411.12,242.40 411.07,242.40 411.03,242.40 410.99,242.40 410.94,242.40 410.90,242.40
|
||||
410.86,242.40 410.82,242.40 410.77,242.40 410.73,242.40 410.69,242.40 410.65,242.40 410.60,242.40 410.56,242.40 410.52,242.40 410.48,242.40 410.43,242.40 410.39,242.40 410.35,242.40 410.31,242.40 410.26,242.40 410.22,242.40
|
||||
410.18,242.40 410.13,242.40 410.09,242.40 410.05,242.40 410.01,242.40 409.96,242.40 409.92,242.40 409.88,242.40 409.84,242.40 409.79,242.40 409.75,242.40 409.71,242.40 409.67,242.40 409.62,242.40 409.58,242.40 409.54,242.40
|
||||
409.50,242.40 409.45,242.40 409.41,242.40 409.37,242.40 409.33,242.40 409.28,242.40 409.24,242.40 409.20,242.40 409.15,242.40 409.11,242.40 409.07,242.40 409.03,242.40 408.98,242.40 408.94,242.40 408.90,242.40 408.86,242.40
|
||||
408.81,242.40 408.77,242.40 408.73,242.40 408.69,242.40 408.64,242.40 408.60,242.40 408.56,242.40 408.52,242.40 408.47,242.40 408.43,242.40 408.39,242.40 408.35,242.40 408.30,242.40 408.26,242.40 408.22,242.40 408.17,242.40
|
||||
408.13,242.40 408.09,242.40 408.05,242.40 408.00,242.40 407.96,242.40 407.92,242.40 407.88,242.40 407.83,242.40 407.79,242.40 407.75,242.40 407.71,242.40 407.66,242.40 407.62,242.40 407.58,242.40 407.54,242.40 407.49,242.40
|
||||
407.45,242.40 407.41,242.40 407.36,242.40 407.32,242.40 407.28,242.40 407.24,242.40 407.19,242.40 407.15,242.40 407.11,242.40 407.07,242.40 407.02,242.40 406.98,242.40 406.94,242.40 406.90,242.40 406.85,242.40 406.81,242.40
|
||||
406.77,242.40 406.73,242.40 406.68,242.40 406.64,242.40 406.60,242.40 406.56,242.40 406.51,242.40 406.47,242.40 406.43,242.40 406.38,242.40 406.34,242.40 406.30,242.40 406.26,242.40 406.21,242.40 406.17,242.40 406.13,242.40
|
||||
406.09,242.40 406.04,242.40 406.00,242.40 405.96,242.40 405.92,242.40 405.87,242.40 405.83,242.40 405.79,242.40 405.75,242.40 405.70,242.40 405.66,242.40 405.62,242.40 405.57,242.40 405.53,242.40 405.49,242.40 405.45,242.40
|
||||
405.40,242.40 405.36,242.40 405.32,242.40 405.28,242.40 405.23,242.40 405.19,242.40 405.15,242.40 405.11,242.40 405.06,242.40 405.02,242.40 404.98,242.40 404.94,242.40 404.89,242.40 404.85,242.40 404.81,242.40 404.77,242.40
|
||||
404.72,242.40 404.68,242.40 404.64,242.40 404.59,242.40 404.55,242.40 404.51,242.40 404.47,242.40 404.42,242.40 404.38,242.40 404.34,242.40 404.30,242.40 404.25,242.40 404.21,242.40 404.17,242.40 404.13,242.40 404.08,242.40
|
||||
404.04,242.40 404.00,242.40 403.96,242.40 403.91,242.40 403.87,242.40 403.83,242.40 403.79,242.40 403.74,242.40 403.70,242.40 403.66,242.40 403.61,242.40 403.57,242.40 403.53,242.40 403.49,242.40 403.44,242.40 403.40,242.40
|
||||
403.36,242.40 403.32,242.40 403.27,242.40 403.23,242.40 403.19,242.40 403.15,242.40 403.10,242.40 403.06,242.40 403.02,242.40 402.98,242.40 402.93,242.40 402.89,242.40 402.85,242.40 402.80,242.40 402.76,242.40 402.72,242.40
|
||||
402.68,242.40 402.63,242.40 402.59,242.40 402.55,242.40 402.51,242.40 402.46,242.40 402.42,242.40 402.38,242.40 402.34,242.40 402.29,242.40 402.25,242.40 402.21,242.40 402.17,242.40 402.12,242.40 402.08,242.40 402.04,242.40
|
||||
402.00,242.40 401.95,242.40 401.91,242.40 401.87,242.40 401.82,242.40 401.78,242.40 401.74,242.40 401.70,242.40 401.65,242.40 401.61,242.40 401.57,242.40 401.53,242.40 401.48,242.40 401.44,242.40 401.40,242.40 401.36,242.40
|
||||
401.31,242.40 401.27,242.40 401.23,242.40 401.19,242.40 401.14,242.40 401.10,242.40 401.06,242.40 401.02,242.40 400.97,242.40 400.93,242.40 400.89,242.40 400.84,242.40 400.80,242.40 400.76,242.40 400.72,242.40 400.67,242.40
|
||||
400.63,242.40 400.59,242.40 400.55,242.40 400.50,242.40 400.46,242.40 400.42,242.40 400.38,242.40 400.33,242.40 400.29,242.40 400.25,242.40 400.21,242.40 400.16,242.40 400.12,242.40 400.08,242.40 400.03,242.40 399.99,242.40
|
||||
399.95,242.40 399.91,242.40 399.86,242.40 399.82,242.40 399.78,242.40 399.74,242.40 399.69,242.40 399.65,242.40 399.61,242.40 399.57,242.40 399.52,242.40 399.48,242.40 399.44,242.40 399.40,242.40 399.35,242.40 399.31,242.40
|
||||
399.27,242.40 399.23,242.40 399.18,242.40 399.14,242.40 399.10,242.40 399.05,242.40 399.01,242.40 398.97,242.40 398.93,242.40 398.88,242.40 398.84,242.40 398.80,242.40 398.76,242.40 398.71,242.40 398.67,242.40 398.63,242.40
|
||||
398.59,242.40 398.54,242.40 398.50,242.40 398.46,242.40 398.42,242.40 398.37,242.40 398.33,242.40 398.29,242.40 398.24,242.40 398.20,242.40 398.16,242.40 398.12,242.40 398.07,242.40 398.03,242.40 397.99,242.40 397.95,242.40
|
||||
397.90,242.40 397.86,242.40 397.82,242.40 397.78,242.40 397.73,242.40 397.69,242.40 397.65,242.40 397.61,242.40 397.56,242.40 397.52,242.40 397.48,242.40 397.44,242.40 397.39,242.40 397.35,242.40 397.31,242.40 397.26,242.40
|
||||
397.22,242.40 397.18,242.40 397.14,242.40 397.09,242.40 397.05,242.40 397.01,242.40 396.97,242.40 396.92,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M402.44,242.40 L402.44,156.84 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '93.37,242.36 93.39,242.36 93.41,242.35 93.43,242.34 93.45,242.33 93.47,242.32 93.49,242.31 93.51,242.30 93.53,242.28 93.55,242.26 93.57,242.24 93.59,242.22 93.61,242.20 93.63,242.17 93.65,242.14 93.67,242.10
|
||||
93.69,242.06 93.71,242.02 93.73,241.97 93.75,241.91 93.77,241.85 93.79,241.78 93.81,241.71 93.83,241.62 93.85,241.53 93.87,241.43 93.89,241.31 93.91,241.18 93.93,241.04 93.95,240.89 93.97,240.71 93.99,240.52
|
||||
94.01,240.32 94.03,240.08 94.06,239.83 94.08,239.55 94.10,239.24 94.12,238.91 94.14,238.54 94.16,238.13 94.18,237.69 94.20,237.20 94.22,236.67 94.24,236.08 94.26,235.45 94.28,234.75 94.30,233.99 94.32,233.17
|
||||
94.34,232.28 94.36,231.30 94.38,230.25 94.40,229.11 94.42,227.87 94.44,226.54 94.46,225.10 94.48,223.55 94.50,221.88 94.52,220.10 94.54,218.18 94.56,216.14 94.58,213.95 94.60,211.63 94.62,209.15 94.64,206.52
|
||||
94.66,203.74 94.68,200.80 94.70,197.70 94.72,194.44 94.75,191.02 94.77,187.43 94.79,183.68 94.81,179.76 94.83,175.70 94.85,171.47 94.87,167.10 94.89,162.59 94.91,157.94 94.93,153.17 94.95,148.28 94.97,143.29
|
||||
94.99,138.21 95.01,133.04 95.03,127.82 95.05,122.55 95.07,117.24 95.09,111.92 95.11,106.61 95.13,101.32 95.15,96.07 95.17,90.89 95.19,85.79 95.21,80.80 95.23,75.93 95.25,71.20 95.27,66.64 95.29,62.26
|
||||
95.31,58.09 95.33,54.14 95.35,50.43 95.37,46.97 95.39,43.78 95.42,40.88 95.44,38.27 95.46,35.97 95.48,33.98 95.50,32.32 95.52,30.98 95.54,29.98 95.56,29.31 95.58,28.98 95.60,28.98 95.62,29.31
|
||||
95.64,29.97 95.66,30.94 95.68,32.23 95.70,33.82 95.72,35.70 95.74,37.87 95.76,40.30 95.78,42.97 95.80,45.89 95.82,49.03 95.84,52.37 95.86,55.90 95.88,59.59 95.90,63.44 95.92,67.43 95.94,71.52
|
||||
95.96,75.72 95.98,80.00 96.00,84.34 96.02,88.72 96.04,93.14 96.06,97.57 96.08,102.00 96.11,106.42 96.13,110.81 96.15,115.16 96.17,119.46 96.19,123.70 96.21,127.86 96.23,131.95 96.25,135.95 96.27,139.85
|
||||
96.29,143.66 96.31,147.36 96.33,150.95 96.35,154.42 96.37,157.78 96.39,161.03 96.41,164.16 96.43,167.17 96.45,170.06 96.47,172.84 96.49,175.51 96.51,178.06 96.53,180.50 96.55,182.83 96.57,185.07 96.59,187.20
|
||||
96.61,189.23 96.63,191.18 96.65,193.03 96.67,194.80 96.69,196.49 96.71,198.10 96.73,199.65 96.75,201.12 96.77,202.53 96.80,203.88 96.82,205.18 96.84,206.42 96.86,207.62 96.88,208.76 96.90,209.87 96.92,210.93
|
||||
96.94,211.96 96.96,212.95 96.98,213.91 97.00,214.84 97.02,215.74 97.04,216.61 97.06,217.45 97.08,218.27 97.10,219.06 97.12,219.83 97.14,220.58 97.16,221.30 97.18,222.00 97.20,222.68 97.22,223.33 97.24,223.96
|
||||
97.26,224.58 97.28,225.16 97.30,225.73 97.32,226.27 97.34,226.79 97.36,227.29 97.38,227.77 97.40,228.22 97.42,228.65 97.44,229.06 97.46,229.45 97.49,229.82 97.51,230.17 97.53,230.49 97.55,230.80 97.57,231.09
|
||||
97.59,231.36 97.61,231.61 97.63,231.84 97.65,232.06 97.67,232.27 97.69,232.46 97.71,232.64 97.73,232.81 97.75,232.97 97.77,233.12 97.79,233.26 97.81,233.39 97.83,233.52 97.85,233.64 97.87,233.75 97.89,233.87
|
||||
97.91,233.98 97.93,234.08 97.95,234.19 97.97,234.30 97.99,234.40 98.01,234.50 98.03,234.61 98.05,234.71 98.07,234.82 98.09,234.92 98.11,235.03 98.13,235.14 98.15,235.25 98.18,235.36 98.20,235.47 98.22,235.59
|
||||
98.24,235.70 98.26,235.81 98.28,235.93 98.30,236.05 98.32,236.16 98.34,236.28 98.36,236.40 98.38,236.52 98.40,236.63 98.42,236.75 98.44,236.87 98.46,236.99 98.48,237.11 98.50,237.23 98.52,237.35 98.54,237.47
|
||||
98.56,237.60 98.58,237.72 98.60,237.84 98.62,237.96 98.64,238.09 98.66,238.21 98.68,238.33 98.70,238.46 98.72,238.58 98.74,238.70 98.76,238.83 98.78,238.95 98.80,239.08 98.82,239.20 98.84,239.32 98.87,239.45
|
||||
98.89,239.57 98.91,239.69 98.93,239.81 98.95,239.93 98.97,240.04 98.99,240.15 99.01,240.26 99.03,240.37 99.05,240.48 99.07,240.58 99.09,240.68 99.11,240.77 99.13,240.86 99.15,240.95 99.17,241.03 99.19,241.11
|
||||
99.21,241.18 99.23,241.25 99.25,241.32 99.27,241.37 99.29,241.43 99.31,241.47 99.33,241.52 99.35,241.55 99.37,241.58 99.39,241.61 99.41,241.63 99.43,241.64 99.45,241.65 99.47,241.65 99.49,241.65 99.51,241.64
|
||||
99.54,241.62 99.56,241.60 99.58,241.58 99.60,241.55 99.62,241.51 99.64,241.47 99.66,241.42 99.68,241.37 99.70,241.32 99.72,241.26 99.74,241.19 99.76,241.13 99.78,241.06 99.80,240.98 99.82,240.91 99.84,240.83
|
||||
99.86,240.75 99.88,240.66 99.90,240.58 99.92,240.50 99.94,240.41 99.96,240.33 99.98,240.24 100.00,240.16 100.02,240.08 100.04,240.00 100.06,239.93 100.08,239.86 100.10,239.79 100.12,239.72 100.14,239.66 100.16,239.61
|
||||
100.18,239.56 100.20,239.52 100.23,239.48 100.25,239.45 100.27,239.43 100.29,239.41 100.31,239.40 100.33,239.40 100.35,239.40 100.37,239.41 100.39,239.43 100.41,239.45 100.43,239.48 100.45,239.52 100.47,239.56 100.49,239.61
|
||||
100.51,239.67 100.53,239.73 100.55,239.79 100.57,239.86 100.59,239.93 100.61,240.01 100.63,240.09 100.65,240.17 100.67,240.25 100.69,240.34 100.71,240.42 100.73,240.51 100.75,240.60 100.77,240.68 100.79,240.77 100.81,240.86
|
||||
100.83,240.94 100.85,241.02 100.87,241.10 100.89,241.18 100.92,241.25 100.94,241.32 100.96,241.39 100.98,241.46 101.00,241.52 101.02,241.57 101.04,241.63 101.06,241.68 101.08,241.72 101.10,241.76 101.12,241.80 101.14,241.83
|
||||
101.16,241.86 101.18,241.89 101.20,241.91 101.22,241.92 101.24,241.93 101.26,241.94 101.28,241.94 101.30,241.94 101.32,241.93 101.34,241.92 101.36,241.91 101.38,241.89 101.40,241.86 101.42,241.83 101.44,241.80 101.46,241.76
|
||||
101.48,241.72 101.50,241.67 101.52,241.62 101.54,241.57 101.56,241.51 101.58,241.45 101.61,241.39 101.63,241.32 101.65,241.25 101.67,241.17 101.69,241.09 101.71,241.01 101.73,240.93 101.75,240.85 101.77,240.76 101.79,240.68
|
||||
101.81,240.59 101.83,240.50 101.85,240.42 101.87,240.33 101.89,240.25 101.91,240.16 101.93,240.08 101.95,240.00 101.97,239.93 101.99,239.85 102.01,239.79 102.03,239.72 102.05,239.66 102.07,239.61 102.09,239.56 102.11,239.52
|
||||
102.13,239.48 102.15,239.45 102.17,239.43 102.19,239.41 102.21,239.40 102.23,239.40 102.25,239.40 102.27,239.41 102.30,239.43 102.32,239.45 102.34,239.49 102.36,239.52 102.38,239.57 102.40,239.62 102.42,239.67 102.44,239.73
|
||||
102.46,239.80 102.48,239.87 102.50,239.94 102.52,240.02 102.54,240.10 102.56,240.18 102.58,240.26 102.60,240.35 102.62,240.44 102.64,240.52 102.66,240.61 102.68,240.70 102.70,240.79 102.72,240.87 102.74,240.96 102.76,241.04
|
||||
102.78,241.12 102.80,241.20 102.82,241.28 102.84,241.36 102.86,241.43 102.88,241.50 102.90,241.56 102.92,241.63 102.94,241.69 102.96,241.74 102.99,241.80 103.01,241.85 103.03,241.90 103.05,241.94 103.07,241.98 103.09,242.02
|
||||
103.11,242.06 103.13,242.09 103.15,242.12 103.17,242.15 103.19,242.17 103.21,242.20 103.23,242.22 103.25,242.24 103.27,242.26 103.29,242.27 103.31,242.29 103.33,242.30 103.35,242.31 103.37,242.32 103.39,242.33 103.41,242.34
|
||||
103.43,242.35 103.45,242.36 103.47,242.36 103.49,242.37 103.49,242.40 103.47,242.40 103.45,242.40 103.43,242.40 103.41,242.40 103.39,242.40 103.37,242.40 103.35,242.40 103.33,242.40 103.31,242.40 103.29,242.40 103.27,242.40
|
||||
103.25,242.40 103.23,242.40 103.21,242.40 103.19,242.40 103.17,242.40 103.15,242.40 103.13,242.40 103.11,242.40 103.09,242.40 103.07,242.40 103.05,242.40 103.03,242.40 103.01,242.40 102.99,242.40 102.96,242.40 102.94,242.40
|
||||
102.92,242.40 102.90,242.40 102.88,242.40 102.86,242.40 102.84,242.40 102.82,242.40 102.80,242.40 102.78,242.40 102.76,242.40 102.74,242.40 102.72,242.40 102.70,242.40 102.68,242.40 102.66,242.40 102.64,242.40 102.62,242.40
|
||||
102.60,242.40 102.58,242.40 102.56,242.40 102.54,242.40 102.52,242.40 102.50,242.40 102.48,242.40 102.46,242.40 102.44,242.40 102.42,242.40 102.40,242.40 102.38,242.40 102.36,242.40 102.34,242.40 102.32,242.40 102.30,242.40
|
||||
102.27,242.40 102.25,242.40 102.23,242.40 102.21,242.40 102.19,242.40 102.17,242.40 102.15,242.40 102.13,242.40 102.11,242.40 102.09,242.40 102.07,242.40 102.05,242.40 102.03,242.40 102.01,242.40 101.99,242.40 101.97,242.40
|
||||
101.95,242.40 101.93,242.40 101.91,242.40 101.89,242.40 101.87,242.40 101.85,242.40 101.83,242.40 101.81,242.40 101.79,242.40 101.77,242.40 101.75,242.40 101.73,242.40 101.71,242.40 101.69,242.40 101.67,242.40 101.65,242.40
|
||||
101.63,242.40 101.61,242.40 101.58,242.40 101.56,242.40 101.54,242.40 101.52,242.40 101.50,242.40 101.48,242.40 101.46,242.40 101.44,242.40 101.42,242.40 101.40,242.40 101.38,242.40 101.36,242.40 101.34,242.40 101.32,242.40
|
||||
101.30,242.40 101.28,242.40 101.26,242.40 101.24,242.40 101.22,242.40 101.20,242.40 101.18,242.40 101.16,242.40 101.14,242.40 101.12,242.40 101.10,242.40 101.08,242.40 101.06,242.40 101.04,242.40 101.02,242.40 101.00,242.40
|
||||
100.98,242.40 100.96,242.40 100.94,242.40 100.92,242.40 100.89,242.40 100.87,242.40 100.85,242.40 100.83,242.40 100.81,242.40 100.79,242.40 100.77,242.40 100.75,242.40 100.73,242.40 100.71,242.40 100.69,242.40 100.67,242.40
|
||||
100.65,242.40 100.63,242.40 100.61,242.40 100.59,242.40 100.57,242.40 100.55,242.40 100.53,242.40 100.51,242.40 100.49,242.40 100.47,242.40 100.45,242.40 100.43,242.40 100.41,242.40 100.39,242.40 100.37,242.40 100.35,242.40
|
||||
100.33,242.40 100.31,242.40 100.29,242.40 100.27,242.40 100.25,242.40 100.23,242.40 100.20,242.40 100.18,242.40 100.16,242.40 100.14,242.40 100.12,242.40 100.10,242.40 100.08,242.40 100.06,242.40 100.04,242.40 100.02,242.40
|
||||
100.00,242.40 99.98,242.40 99.96,242.40 99.94,242.40 99.92,242.40 99.90,242.40 99.88,242.40 99.86,242.40 99.84,242.40 99.82,242.40 99.80,242.40 99.78,242.40 99.76,242.40 99.74,242.40 99.72,242.40 99.70,242.40
|
||||
99.68,242.40 99.66,242.40 99.64,242.40 99.62,242.40 99.60,242.40 99.58,242.40 99.56,242.40 99.54,242.40 99.51,242.40 99.49,242.40 99.47,242.40 99.45,242.40 99.43,242.40 99.41,242.40 99.39,242.40 99.37,242.40
|
||||
99.35,242.40 99.33,242.40 99.31,242.40 99.29,242.40 99.27,242.40 99.25,242.40 99.23,242.40 99.21,242.40 99.19,242.40 99.17,242.40 99.15,242.40 99.13,242.40 99.11,242.40 99.09,242.40 99.07,242.40 99.05,242.40
|
||||
99.03,242.40 99.01,242.40 98.99,242.40 98.97,242.40 98.95,242.40 98.93,242.40 98.91,242.40 98.89,242.40 98.87,242.40 98.84,242.40 98.82,242.40 98.80,242.40 98.78,242.40 98.76,242.40 98.74,242.40 98.72,242.40
|
||||
98.70,242.40 98.68,242.40 98.66,242.40 98.64,242.40 98.62,242.40 98.60,242.40 98.58,242.40 98.56,242.40 98.54,242.40 98.52,242.40 98.50,242.40 98.48,242.40 98.46,242.40 98.44,242.40 98.42,242.40 98.40,242.40
|
||||
98.38,242.40 98.36,242.40 98.34,242.40 98.32,242.40 98.30,242.40 98.28,242.40 98.26,242.40 98.24,242.40 98.22,242.40 98.20,242.40 98.18,242.40 98.15,242.40 98.13,242.40 98.11,242.40 98.09,242.40 98.07,242.40
|
||||
98.05,242.40 98.03,242.40 98.01,242.40 97.99,242.40 97.97,242.40 97.95,242.40 97.93,242.40 97.91,242.40 97.89,242.40 97.87,242.40 97.85,242.40 97.83,242.40 97.81,242.40 97.79,242.40 97.77,242.40 97.75,242.40
|
||||
97.73,242.40 97.71,242.40 97.69,242.40 97.67,242.40 97.65,242.40 97.63,242.40 97.61,242.40 97.59,242.40 97.57,242.40 97.55,242.40 97.53,242.40 97.51,242.40 97.49,242.40 97.46,242.40 97.44,242.40 97.42,242.40
|
||||
97.40,242.40 97.38,242.40 97.36,242.40 97.34,242.40 97.32,242.40 97.30,242.40 97.28,242.40 97.26,242.40 97.24,242.40 97.22,242.40 97.20,242.40 97.18,242.40 97.16,242.40 97.14,242.40 97.12,242.40 97.10,242.40
|
||||
97.08,242.40 97.06,242.40 97.04,242.40 97.02,242.40 97.00,242.40 96.98,242.40 96.96,242.40 96.94,242.40 96.92,242.40 96.90,242.40 96.88,242.40 96.86,242.40 96.84,242.40 96.82,242.40 96.80,242.40 96.77,242.40
|
||||
96.75,242.40 96.73,242.40 96.71,242.40 96.69,242.40 96.67,242.40 96.65,242.40 96.63,242.40 96.61,242.40 96.59,242.40 96.57,242.40 96.55,242.40 96.53,242.40 96.51,242.40 96.49,242.40 96.47,242.40 96.45,242.40
|
||||
96.43,242.40 96.41,242.40 96.39,242.40 96.37,242.40 96.35,242.40 96.33,242.40 96.31,242.40 96.29,242.40 96.27,242.40 96.25,242.40 96.23,242.40 96.21,242.40 96.19,242.40 96.17,242.40 96.15,242.40 96.13,242.40
|
||||
96.11,242.40 96.08,242.40 96.06,242.40 96.04,242.40 96.02,242.40 96.00,242.40 95.98,242.40 95.96,242.40 95.94,242.40 95.92,242.40 95.90,242.40 95.88,242.40 95.86,242.40 95.84,242.40 95.82,242.40 95.80,242.40
|
||||
95.78,242.40 95.76,242.40 95.74,242.40 95.72,242.40 95.70,242.40 95.68,242.40 95.66,242.40 95.64,242.40 95.62,242.40 95.60,242.40 95.58,242.40 95.56,242.40 95.54,242.40 95.52,242.40 95.50,242.40 95.48,242.40
|
||||
95.46,242.40 95.44,242.40 95.42,242.40 95.39,242.40 95.37,242.40 95.35,242.40 95.33,242.40 95.31,242.40 95.29,242.40 95.27,242.40 95.25,242.40 95.23,242.40 95.21,242.40 95.19,242.40 95.17,242.40 95.15,242.40
|
||||
95.13,242.40 95.11,242.40 95.09,242.40 95.07,242.40 95.05,242.40 95.03,242.40 95.01,242.40 94.99,242.40 94.97,242.40 94.95,242.40 94.93,242.40 94.91,242.40 94.89,242.40 94.87,242.40 94.85,242.40 94.83,242.40
|
||||
94.81,242.40 94.79,242.40 94.77,242.40 94.75,242.40 94.72,242.40 94.70,242.40 94.68,242.40 94.66,242.40 94.64,242.40 94.62,242.40 94.60,242.40 94.58,242.40 94.56,242.40 94.54,242.40 94.52,242.40 94.50,242.40
|
||||
94.48,242.40 94.46,242.40 94.44,242.40 94.42,242.40 94.40,242.40 94.38,242.40 94.36,242.40 94.34,242.40 94.32,242.40 94.30,242.40 94.28,242.40 94.26,242.40 94.24,242.40 94.22,242.40 94.20,242.40 94.18,242.40
|
||||
94.16,242.40 94.14,242.40 94.12,242.40 94.10,242.40 94.08,242.40 94.06,242.40 94.03,242.40 94.01,242.40 93.99,242.40 93.97,242.40 93.95,242.40 93.93,242.40 93.91,242.40 93.89,242.40 93.87,242.40 93.85,242.40
|
||||
93.83,242.40 93.81,242.40 93.79,242.40 93.77,242.40 93.75,242.40 93.73,242.40 93.71,242.40 93.69,242.40 93.67,242.40 93.65,242.40 93.63,242.40 93.61,242.40 93.59,242.40 93.57,242.40 93.55,242.40 93.53,242.40
|
||||
93.51,242.40 93.49,242.40 93.47,242.40 93.45,242.40 93.43,242.40 93.41,242.40 93.39,242.40 93.37,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M95.90,242.40 L95.90,62.56 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,130.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,291.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 40 KiB |
@@ -0,0 +1,381 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L424.82,224.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L81.53,224.40 '/> <g transform="translate(64.14,228.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,203.76 L424.82,203.76 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,203.76 L81.53,203.76 '/> <g transform="translate(64.14,207.66)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,183.12 L424.82,183.12 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,183.12 L81.53,183.12 '/> <g transform="translate(64.14,187.02)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,162.48 L424.82,162.48 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,162.48 L81.53,162.48 '/> <g transform="translate(64.14,166.38)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,141.84 L424.82,141.84 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,141.84 L81.53,141.84 '/> <g transform="translate(64.14,145.74)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,121.20 L424.82,121.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,121.20 L81.53,121.20 '/> <g transform="translate(64.14,125.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,100.57 L424.82,100.57 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,100.57 L81.53,100.57 '/> <g transform="translate(64.14,104.47)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,79.93 L424.82,79.93 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,79.93 L81.53,79.93 '/> <g transform="translate(64.14,83.83)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 140</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,59.29 L424.82,59.29 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,59.29 L81.53,59.29 '/> <g transform="translate(64.14,63.19)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 160</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,38.65 L424.82,38.65 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,38.65 L81.53,38.65 '/> <g transform="translate(64.14,42.55)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 180</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,18.01 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L72.53,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L72.53,215.40 '/> <g transform="translate(72.53,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M107.76,224.40 L107.76,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M107.76,224.40 L107.76,215.40 '/> <g transform="translate(107.76,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M142.99,224.40 L142.99,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M142.99,224.40 L142.99,215.40 '/> <g transform="translate(142.99,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M178.22,224.40 L178.22,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M178.22,224.40 L178.22,215.40 '/> <g transform="translate(178.22,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M213.45,224.40 L213.45,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M213.45,224.40 L213.45,215.40 '/> <g transform="translate(213.45,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M248.68,224.40 L248.68,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M248.68,224.40 L248.68,215.40 '/> <g transform="translate(248.68,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M283.90,224.40 L283.90,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M283.90,224.40 L283.90,215.40 '/> <g transform="translate(283.90,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M319.13,224.40 L319.13,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M319.13,224.40 L319.13,215.40 '/> <g transform="translate(319.13,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M354.36,224.40 L354.36,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M354.36,224.40 L354.36,215.40 '/> <g transform="translate(354.36,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.6</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M389.59,224.40 L389.59,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M389.59,224.40 L389.59,215.40 '/> <g transform="translate(389.59,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.8</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M424.82,224.40 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,224.40 L424.82,215.40 '/> <g transform="translate(424.82,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,34.78 407.21,34.69 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,119.95 407.21,119.92 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M72.53,224.40 L407.21,34.73 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M72.53,224.40 L407.21,119.94 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,121.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,273.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 26 KiB |
80
benchmarks/babyjubjub/derive_public_key/report/slope.svg
Normal file
@@ -0,0 +1,80 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:slope
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="424" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,424 86,424 "/>
|
||||
<text x="77" y="353" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,353 86,353 "/>
|
||||
<text x="77" y="282" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,282 86,282 "/>
|
||||
<text x="77" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,211 86,211 "/>
|
||||
<text x="77" y="141" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,141 86,141 "/>
|
||||
<text x="77" y="70" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,70 86,70 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="135" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="135,473 135,478 "/>
|
||||
<text x="259" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="259,473 259,478 "/>
|
||||
<text x="383" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="383,473 383,478 "/>
|
||||
<text x="508" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="508,473 508,478 "/>
|
||||
<text x="632" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="632,473 632,478 "/>
|
||||
<text x="756" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="756,473 756,478 "/>
|
||||
<text x="881" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.35
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="881,473 881,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,470 92,469 93,469 95,468 97,467 98,466 100,466 102,465 103,464 105,463 107,462 109,462 110,461 112,460 114,459 115,458 117,457 119,456 120,455 122,454 124,453 125,452 127,451 129,450 131,449 132,448 134,447 136,446 137,444 139,443 141,442 142,441 144,439 146,438 147,437 149,435 151,434 153,432 154,431 156,430 158,428 159,427 161,425 163,424 164,422 166,421 168,419 169,418 171,416 173,415 175,413 176,412 178,410 180,408 181,407 183,405 185,403 186,401 188,399 190,398 191,396 193,394 195,392 197,390 198,388 200,385 202,383 203,381 205,379 207,377 208,374 210,372 212,370 214,367 215,365 217,363 219,360 220,358 222,356 224,353 225,351 227,348 229,346 230,344 232,341 234,339 236,337 237,334 239,332 241,330 242,327 244,325 246,322 247,320 249,317 251,315 252,312 254,309 256,307 258,304 259,302 261,299 263,296 264,294 266,291 268,288 269,286 271,283 273,280 274,278 276,275 278,272 280,270 281,267 283,265 285,262 286,260 288,257 290,255 291,252 293,250 295,248 296,245 298,243 300,241 302,238 303,236 305,233 307,231 308,229 310,226 312,224 313,222 315,219 317,217 318,214 320,212 322,209 324,207 325,204 327,202 329,199 330,197 332,195 334,192 335,190 337,188 339,185 341,183 342,181 344,179 346,177 347,175 349,173 351,171 352,169 354,167 356,165 357,163 359,161 361,159 363,158 364,156 366,154 368,152 369,150 371,148 373,147 374,145 376,143 378,141 379,140 381,138 383,136 385,134 386,132 388,131 390,129 391,127 393,125 395,123 396,122 398,120 400,118 401,117 403,115 405,113 407,112 408,110 410,109 412,108 413,106 415,105 417,104 418,103 420,102 422,102 423,101 425,100 427,100 429,99 430,99 432,98 434,98 435,98 437,97 439,97 440,97 442,96 444,96 445,96 447,96 449,95 451,95 452,95 454,95 456,94 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,95 479,95 481,96 483,96 484,97 486,97 488,98 490,99 491,100 493,100 495,101 496,102 498,103 500,104 501,105 503,106 505,107 506,108 508,109 510,110 512,112 513,113 515,114 517,115 518,116 520,118 522,119 523,120 525,121 527,123 528,124 530,125 532,127 534,128 535,129 537,130 539,132 540,133 542,134 544,136 545,137 547,139 549,140 550,141 552,143 554,145 556,146 557,148 559,149 561,151 562,153 564,154 566,156 567,158 569,160 571,162 573,164 574,166 576,168 578,170 579,172 581,174 583,176 584,178 586,181 588,183 589,185 591,188 593,190 595,192 596,195 598,197 600,199 601,202 603,204 605,206 606,208 608,211 610,213 611,215 613,217 615,219 617,221 618,223 620,225 622,227 623,229 625,231 627,233 628,235 630,237 632,239 633,241 635,243 637,245 639,247 640,249 642,251 644,253 645,255 647,257 649,260 650,262 652,264 654,266 655,268 657,270 659,273 661,275 662,277 664,279 666,281 667,283 669,285 671,287 672,289 674,291 676,293 677,295 679,297 681,299 683,301 684,303 686,305 688,307 689,309 691,310 693,312 694,314 696,316 698,318 700,320 701,322 703,323 705,325 706,327 708,329 710,331 711,332 713,334 715,336 716,338 718,339 720,341 722,343 723,344 725,346 727,348 728,349 730,351 732,352 733,354 735,356 737,357 738,359 740,361 742,362 744,364 745,365 747,367 749,369 750,370 752,372 754,373 755,375 757,376 759,378 760,379 762,381 764,383 766,384 767,386 769,387 771,389 772,390 774,392 776,393 777,395 779,396 781,398 782,399 784,401 786,403 788,404 789,406 791,407 793,409 794,410 796,412 798,413 799,415 801,416 803,417 804,419 806,420 808,421 810,423 811,424 813,425 815,426 816,427 818,429 820,430 821,431 823,432 825,433 827,434 828,435 830,436 832,437 833,438 835,439 837,439 838,440 840,441 842,442 843,443 845,444 847,444 849,445 850,446 852,447 854,447 855,448 857,449 859,450 860,450 862,451 864,452 865,452 867,453 869,453 871,454 872,455 874,455 876,456 877,456 879,457 881,458 882,458 884,459 886,459 887,460 889,460 891,461 893,461 894,462 896,462 898,463 899,463 901,464 903,464 904,465 906,465 908,466 909,466 911,467 913,467 915,468 916,468 918,469 920,469 921,470 923,470 925,471 926,471 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,422 166,421 168,419 169,418 171,416 173,415 175,413 176,412 178,410 180,408 181,407 183,405 185,403 186,401 188,399 190,398 191,396 193,394 195,392 197,390 198,388 200,385 202,383 203,381 205,379 207,377 208,374 210,372 212,370 214,367 215,365 217,363 219,360 220,358 222,356 224,353 225,351 227,348 229,346 230,344 232,341 234,339 236,337 237,334 239,332 241,330 242,327 244,325 246,322 247,320 249,317 251,315 252,312 254,309 256,307 258,304 259,302 261,299 263,296 264,294 266,291 268,288 269,286 271,283 273,280 274,278 276,275 278,272 280,270 281,267 283,265 285,262 286,260 288,257 290,255 291,252 293,250 295,248 296,245 298,243 300,241 302,238 303,236 305,233 307,231 308,229 310,226 312,224 313,222 315,219 317,217 318,214 320,212 322,209 324,207 325,204 327,202 329,199 330,197 332,195 334,192 335,190 337,188 339,185 341,183 342,181 344,179 346,177 347,175 349,173 351,171 352,169 354,167 356,165 357,163 359,161 361,159 363,158 364,156 366,154 368,152 369,150 371,148 373,147 374,145 376,143 378,141 379,140 381,138 383,136 385,134 386,132 388,131 390,129 391,127 393,125 395,123 396,122 398,120 400,118 401,117 403,115 405,113 407,112 408,110 410,109 412,108 413,106 415,105 417,104 418,103 420,102 422,102 423,101 425,100 427,100 429,99 430,99 432,98 434,98 435,98 437,97 439,97 440,97 442,96 444,96 445,96 447,96 449,95 451,95 452,95 454,95 456,94 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,95 479,95 481,96 483,96 484,97 486,97 488,98 490,99 491,100 493,100 495,101 496,102 498,103 500,104 501,105 503,106 505,107 506,108 508,109 510,110 512,112 513,113 515,114 517,115 518,116 520,118 522,119 523,120 525,121 527,123 528,124 530,125 532,127 534,128 535,129 537,130 539,132 540,133 542,134 544,136 545,137 547,139 549,140 550,141 552,143 554,145 556,146 557,148 559,149 561,151 562,153 564,154 566,156 567,158 569,160 571,162 573,164 574,166 576,168 578,170 579,172 581,174 583,176 584,178 586,181 588,183 589,185 591,188 593,190 595,192 596,195 598,197 600,199 601,202 603,204 605,206 606,208 608,211 610,213 611,215 613,217 615,219 617,221 618,223 620,225 622,227 623,229 625,231 627,233 628,235 630,237 632,239 633,241 635,243 637,245 639,247 640,249 642,251 644,253 645,255 647,257 649,260 650,262 652,264 654,266 655,268 657,270 659,273 661,275 662,277 664,279 666,281 667,283 669,285 671,287 672,289 674,291 676,293 677,295 679,297 681,299 683,301 684,303 686,305 688,307 689,309 691,310 693,312 694,314 696,316 698,318 700,320 701,322 703,323 705,325 706,327 708,329 710,331 711,332 713,334 715,336 716,338 718,339 720,341 722,343 723,344 725,346 727,348 728,349 730,351 732,352 733,354 735,356 737,357 738,359 740,361 742,362 744,364 745,365 747,367 749,369 750,370 752,372 754,373 755,375 757,376 759,378 760,379 762,381 764,383 766,384 767,386 769,387 771,389 772,390 774,392 776,393 777,395 779,396 781,398 782,399 784,401 786,403 788,404 789,406 791,407 793,409 794,410 796,412 798,413 799,415 801,416 803,417 804,419 806,420 808,421 810,423 811,424 813,425 815,426 816,427 818,429 820,430 821,431 823,432 825,433 827,434 828,435 830,436 832,437 833,438 835,439 837,439 838,440 840,441 842,442 843,443 845,444 847,444 849,445 850,446 852,447 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="477,473 477,95 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
80
benchmarks/babyjubjub/derive_public_key/report/typical.svg
Normal file
@@ -0,0 +1,80 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/derive_public_key:typical
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="424" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,424 86,424 "/>
|
||||
<text x="77" y="353" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,353 86,353 "/>
|
||||
<text x="77" y="282" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,282 86,282 "/>
|
||||
<text x="77" y="211" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,211 86,211 "/>
|
||||
<text x="77" y="141" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
5
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,141 86,141 "/>
|
||||
<text x="77" y="70" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,70 86,70 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="135" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="135,473 135,478 "/>
|
||||
<text x="259" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="259,473 259,478 "/>
|
||||
<text x="383" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="383,473 383,478 "/>
|
||||
<text x="508" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="508,473 508,478 "/>
|
||||
<text x="632" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="632,473 632,478 "/>
|
||||
<text x="756" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="756,473 756,478 "/>
|
||||
<text x="881" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
53.35
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="881,473 881,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,470 92,469 93,469 95,468 97,467 98,466 100,466 102,465 103,464 105,463 107,462 109,462 110,461 112,460 114,459 115,458 117,457 119,456 120,455 122,454 124,453 125,452 127,451 129,450 131,449 132,448 134,447 136,446 137,444 139,443 141,442 142,441 144,439 146,438 147,437 149,435 151,434 153,432 154,431 156,430 158,428 159,427 161,425 163,424 164,422 166,421 168,419 169,418 171,416 173,415 175,413 176,412 178,410 180,408 181,407 183,405 185,403 186,401 188,399 190,398 191,396 193,394 195,392 197,390 198,388 200,385 202,383 203,381 205,379 207,377 208,374 210,372 212,370 214,367 215,365 217,363 219,360 220,358 222,356 224,353 225,351 227,348 229,346 230,344 232,341 234,339 236,337 237,334 239,332 241,330 242,327 244,325 246,322 247,320 249,317 251,315 252,312 254,309 256,307 258,304 259,302 261,299 263,296 264,294 266,291 268,288 269,286 271,283 273,280 274,278 276,275 278,272 280,270 281,267 283,265 285,262 286,260 288,257 290,255 291,252 293,250 295,248 296,245 298,243 300,241 302,238 303,236 305,233 307,231 308,229 310,226 312,224 313,222 315,219 317,217 318,214 320,212 322,209 324,207 325,204 327,202 329,199 330,197 332,195 334,192 335,190 337,188 339,185 341,183 342,181 344,179 346,177 347,175 349,173 351,171 352,169 354,167 356,165 357,163 359,161 361,159 363,158 364,156 366,154 368,152 369,150 371,148 373,147 374,145 376,143 378,141 379,140 381,138 383,136 385,134 386,132 388,131 390,129 391,127 393,125 395,123 396,122 398,120 400,118 401,117 403,115 405,113 407,112 408,110 410,109 412,108 413,106 415,105 417,104 418,103 420,102 422,102 423,101 425,100 427,100 429,99 430,99 432,98 434,98 435,98 437,97 439,97 440,97 442,96 444,96 445,96 447,96 449,95 451,95 452,95 454,95 456,94 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,95 479,95 481,96 483,96 484,97 486,97 488,98 490,99 491,100 493,100 495,101 496,102 498,103 500,104 501,105 503,106 505,107 506,108 508,109 510,110 512,112 513,113 515,114 517,115 518,116 520,118 522,119 523,120 525,121 527,123 528,124 530,125 532,127 534,128 535,129 537,130 539,132 540,133 542,134 544,136 545,137 547,139 549,140 550,141 552,143 554,145 556,146 557,148 559,149 561,151 562,153 564,154 566,156 567,158 569,160 571,162 573,164 574,166 576,168 578,170 579,172 581,174 583,176 584,178 586,181 588,183 589,185 591,188 593,190 595,192 596,195 598,197 600,199 601,202 603,204 605,206 606,208 608,211 610,213 611,215 613,217 615,219 617,221 618,223 620,225 622,227 623,229 625,231 627,233 628,235 630,237 632,239 633,241 635,243 637,245 639,247 640,249 642,251 644,253 645,255 647,257 649,260 650,262 652,264 654,266 655,268 657,270 659,273 661,275 662,277 664,279 666,281 667,283 669,285 671,287 672,289 674,291 676,293 677,295 679,297 681,299 683,301 684,303 686,305 688,307 689,309 691,310 693,312 694,314 696,316 698,318 700,320 701,322 703,323 705,325 706,327 708,329 710,331 711,332 713,334 715,336 716,338 718,339 720,341 722,343 723,344 725,346 727,348 728,349 730,351 732,352 733,354 735,356 737,357 738,359 740,361 742,362 744,364 745,365 747,367 749,369 750,370 752,372 754,373 755,375 757,376 759,378 760,379 762,381 764,383 766,384 767,386 769,387 771,389 772,390 774,392 776,393 777,395 779,396 781,398 782,399 784,401 786,403 788,404 789,406 791,407 793,409 794,410 796,412 798,413 799,415 801,416 803,417 804,419 806,420 808,421 810,423 811,424 813,425 815,426 816,427 818,429 820,430 821,431 823,432 825,433 827,434 828,435 830,436 832,437 833,438 835,439 837,439 838,440 840,441 842,442 843,443 845,444 847,444 849,445 850,446 852,447 854,447 855,448 857,449 859,450 860,450 862,451 864,452 865,452 867,453 869,453 871,454 872,455 874,455 876,456 877,456 879,457 881,458 882,458 884,459 886,459 887,460 889,460 891,461 893,461 894,462 896,462 898,463 899,463 901,464 903,464 904,465 906,465 908,466 909,466 911,467 913,467 915,468 916,468 918,469 920,469 921,470 923,470 925,471 926,471 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,422 166,421 168,419 169,418 171,416 173,415 175,413 176,412 178,410 180,408 181,407 183,405 185,403 186,401 188,399 190,398 191,396 193,394 195,392 197,390 198,388 200,385 202,383 203,381 205,379 207,377 208,374 210,372 212,370 214,367 215,365 217,363 219,360 220,358 222,356 224,353 225,351 227,348 229,346 230,344 232,341 234,339 236,337 237,334 239,332 241,330 242,327 244,325 246,322 247,320 249,317 251,315 252,312 254,309 256,307 258,304 259,302 261,299 263,296 264,294 266,291 268,288 269,286 271,283 273,280 274,278 276,275 278,272 280,270 281,267 283,265 285,262 286,260 288,257 290,255 291,252 293,250 295,248 296,245 298,243 300,241 302,238 303,236 305,233 307,231 308,229 310,226 312,224 313,222 315,219 317,217 318,214 320,212 322,209 324,207 325,204 327,202 329,199 330,197 332,195 334,192 335,190 337,188 339,185 341,183 342,181 344,179 346,177 347,175 349,173 351,171 352,169 354,167 356,165 357,163 359,161 361,159 363,158 364,156 366,154 368,152 369,150 371,148 373,147 374,145 376,143 378,141 379,140 381,138 383,136 385,134 386,132 388,131 390,129 391,127 393,125 395,123 396,122 398,120 400,118 401,117 403,115 405,113 407,112 408,110 410,109 412,108 413,106 415,105 417,104 418,103 420,102 422,102 423,101 425,100 427,100 429,99 430,99 432,98 434,98 435,98 437,97 439,97 440,97 442,96 444,96 445,96 447,96 449,95 451,95 452,95 454,95 456,94 457,94 459,94 461,94 462,94 464,94 466,94 468,94 469,94 471,94 473,94 474,94 476,94 478,95 479,95 481,96 483,96 484,97 486,97 488,98 490,99 491,100 493,100 495,101 496,102 498,103 500,104 501,105 503,106 505,107 506,108 508,109 510,110 512,112 513,113 515,114 517,115 518,116 520,118 522,119 523,120 525,121 527,123 528,124 530,125 532,127 534,128 535,129 537,130 539,132 540,133 542,134 544,136 545,137 547,139 549,140 550,141 552,143 554,145 556,146 557,148 559,149 561,151 562,153 564,154 566,156 567,158 569,160 571,162 573,164 574,166 576,168 578,170 579,172 581,174 583,176 584,178 586,181 588,183 589,185 591,188 593,190 595,192 596,195 598,197 600,199 601,202 603,204 605,206 606,208 608,211 610,213 611,215 613,217 615,219 617,221 618,223 620,225 622,227 623,229 625,231 627,233 628,235 630,237 632,239 633,241 635,243 637,245 639,247 640,249 642,251 644,253 645,255 647,257 649,260 650,262 652,264 654,266 655,268 657,270 659,273 661,275 662,277 664,279 666,281 667,283 669,285 671,287 672,289 674,291 676,293 677,295 679,297 681,299 683,301 684,303 686,305 688,307 689,309 691,310 693,312 694,314 696,316 698,318 700,320 701,322 703,323 705,325 706,327 708,329 710,331 711,332 713,334 715,336 716,338 718,339 720,341 722,343 723,344 725,346 727,348 728,349 730,351 732,352 733,354 735,356 737,357 738,359 740,361 742,362 744,364 745,365 747,367 749,369 750,370 752,372 754,373 755,375 757,376 759,378 760,379 762,381 764,383 766,384 767,386 769,387 771,389 772,390 774,392 776,393 777,395 779,396 781,398 782,399 784,401 786,403 788,404 789,406 791,407 793,409 794,410 796,412 798,413 799,415 801,416 803,417 804,419 806,420 808,421 810,423 811,424 813,425 815,426 816,427 818,429 820,430 821,431 823,432 825,433 827,434 828,435 830,436 832,437 833,438 835,439 837,439 838,440 840,441 842,442 843,443 845,444 847,444 849,445 850,446 852,447 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="477,473 477,95 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"generate_random_fr","value_str":null,"throughput":null,"full_id":"babyjubjub/generate_random_fr","directory_name":"babyjubjub/generate_random_fr","title":"babyjubjub/generate_random_fr"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1305.796627033672,"upper_bound":1314.2441349160058},"point_estimate":1310.0241256938102,"standard_error":2.153993826903726},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1301.9671087533156,"upper_bound":1318.1376710699085},"point_estimate":1313.976960923996,"standard_error":4.159680379386309},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.329928075265055,"upper_bound":32.39869442218157},"point_estimate":26.533703627904664,"standard_error":3.0658769037134173},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1317.2951581572172,"upper_bound":1326.4361683562267},"point_estimate":1322.1240152652188,"standard_error":2.3299488682194034},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.067922388863856,"upper_bound":23.981738317708054},"point_estimate":21.60616062716758,"standard_error":1.2593645139742669}}
|
||||
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[754.0,1508.0,2262.0,3016.0,3770.0,4524.0,5278.0,6032.0,6786.0,7540.0,8294.0,9048.0,9802.0,10556.0,11310.0,12064.0,12818.0,13572.0,14326.0,15080.0,15834.0,16588.0,17342.0,18096.0,18850.0,19604.0,20358.0,21112.0,21866.0,22620.0,23374.0,24128.0,24882.0,25636.0,26390.0,27144.0,27898.0,28652.0,29406.0,30160.0,30914.0,31668.0,32422.0,33176.0,33930.0,34684.0,35438.0,36192.0,36946.0,37700.0,38454.0,39208.0,39962.0,40716.0,41470.0,42224.0,42978.0,43732.0,44486.0,45240.0,45994.0,46748.0,47502.0,48256.0,49010.0,49764.0,50518.0,51272.0,52026.0,52780.0,53534.0,54288.0,55042.0,55796.0,56550.0,57304.0,58058.0,58812.0,59566.0,60320.0,61074.0,61828.0,62582.0,63336.0,64090.0,64844.0,65598.0,66352.0,67106.0,67860.0,68614.0,69368.0,70122.0,70876.0,71630.0,72384.0,73138.0,73892.0,74646.0,75400.0],"times":[977408.0,1883317.0,2977058.0,3915216.0,4908416.0,5848574.0,6763942.0,7797725.0,8680008.0,9965497.0,10964988.0,11662358.0,12601141.0,13592716.0,14687707.0,15773239.0,16467649.0,17961471.0,18440591.0,19377083.0,20254325.0,21345983.0,22733804.0,23236050.0,24838661.0,25083992.0,26453522.0,27408972.0,28713711.0,29415246.0,31767060.0,32140681.0,33280213.0,33904791.0,34160788.0,35804441.0,35880274.0,36932099.0,37639675.0,38916706.0,41065062.0,40880814.0,41865139.0,44067120.0,43699249.0,44696989.0,45611607.0,46923220.0,47365092.0,48465582.0,50412899.0,51539181.0,51347515.0,54470363.0,54695987.0,55665520.0,55184191.0,57494546.0,58516954.0,58992616.0,60016607.0,61049182.0,62604876.0,61937174.0,63689951.0,65111438.0,64935065.0,65690392.0,68444368.0,69385401.0,71984338.0,71610049.0,72900746.0,73760947.0,75010895.0,76534423.0,77058835.0,78168451.0,78990569.0,80035309.0,80415849.0,81595296.0,83831860.0,84971475.0,84812477.0,85460304.0,86159507.0,87527745.0,89568644.0,90745467.0,91404878.0,92646909.0,93297529.0,94750141.0,96274336.0,96718791.0,98769982.0,100225219.0,100147720.0,100051470.0]}
|
||||
1
benchmarks/babyjubjub/generate_random_fr/base/tukey.json
Normal file
@@ -0,0 +1 @@
|
||||
[1176.2563940417187,1232.6167900219298,1382.9111793024922,1439.271575282703]
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.03172602850891788,"upper_bound":-0.029057305489292494},"point_estimate":-0.03036901129488967,"standard_error":0.0006785909729568483},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.03153596793764955,"upper_bound":-0.02928738062275782},"point_estimate":-0.030353073299747346,"standard_error":0.0005480977232473978}}
|
||||
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"generate_random_fr","value_str":null,"throughput":null,"full_id":"babyjubjub/generate_random_fr","directory_name":"babyjubjub/generate_random_fr","title":"babyjubjub/generate_random_fr"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1305.796627033672,"upper_bound":1314.2441349160058},"point_estimate":1310.0241256938102,"standard_error":2.153993826903726},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1301.9671087533156,"upper_bound":1318.1376710699085},"point_estimate":1313.976960923996,"standard_error":4.159680379386309},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":20.329928075265055,"upper_bound":32.39869442218157},"point_estimate":26.533703627904664,"standard_error":3.0658769037134173},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1317.2951581572172,"upper_bound":1326.4361683562267},"point_estimate":1322.1240152652188,"standard_error":2.3299488682194034},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":19.067922388863856,"upper_bound":23.981738317708054},"point_estimate":21.60616062716758,"standard_error":1.2593645139742669}}
|
||||
1
benchmarks/babyjubjub/generate_random_fr/new/sample.json
Normal file
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[754.0,1508.0,2262.0,3016.0,3770.0,4524.0,5278.0,6032.0,6786.0,7540.0,8294.0,9048.0,9802.0,10556.0,11310.0,12064.0,12818.0,13572.0,14326.0,15080.0,15834.0,16588.0,17342.0,18096.0,18850.0,19604.0,20358.0,21112.0,21866.0,22620.0,23374.0,24128.0,24882.0,25636.0,26390.0,27144.0,27898.0,28652.0,29406.0,30160.0,30914.0,31668.0,32422.0,33176.0,33930.0,34684.0,35438.0,36192.0,36946.0,37700.0,38454.0,39208.0,39962.0,40716.0,41470.0,42224.0,42978.0,43732.0,44486.0,45240.0,45994.0,46748.0,47502.0,48256.0,49010.0,49764.0,50518.0,51272.0,52026.0,52780.0,53534.0,54288.0,55042.0,55796.0,56550.0,57304.0,58058.0,58812.0,59566.0,60320.0,61074.0,61828.0,62582.0,63336.0,64090.0,64844.0,65598.0,66352.0,67106.0,67860.0,68614.0,69368.0,70122.0,70876.0,71630.0,72384.0,73138.0,73892.0,74646.0,75400.0],"times":[977408.0,1883317.0,2977058.0,3915216.0,4908416.0,5848574.0,6763942.0,7797725.0,8680008.0,9965497.0,10964988.0,11662358.0,12601141.0,13592716.0,14687707.0,15773239.0,16467649.0,17961471.0,18440591.0,19377083.0,20254325.0,21345983.0,22733804.0,23236050.0,24838661.0,25083992.0,26453522.0,27408972.0,28713711.0,29415246.0,31767060.0,32140681.0,33280213.0,33904791.0,34160788.0,35804441.0,35880274.0,36932099.0,37639675.0,38916706.0,41065062.0,40880814.0,41865139.0,44067120.0,43699249.0,44696989.0,45611607.0,46923220.0,47365092.0,48465582.0,50412899.0,51539181.0,51347515.0,54470363.0,54695987.0,55665520.0,55184191.0,57494546.0,58516954.0,58992616.0,60016607.0,61049182.0,62604876.0,61937174.0,63689951.0,65111438.0,64935065.0,65690392.0,68444368.0,69385401.0,71984338.0,71610049.0,72900746.0,73760947.0,75010895.0,76534423.0,77058835.0,78168451.0,78990569.0,80035309.0,80415849.0,81595296.0,83831860.0,84971475.0,84812477.0,85460304.0,86159507.0,87527745.0,89568644.0,90745467.0,91404878.0,92646909.0,93297529.0,94750141.0,96274336.0,96718791.0,98769982.0,100225219.0,100147720.0,100051470.0]}
|
||||
1
benchmarks/babyjubjub/generate_random_fr/new/tukey.json
Normal file
@@ -0,0 +1 @@
|
||||
[1176.2563940417187,1232.6167900219298,1382.9111793024922,1439.271575282703]
|
||||
84
benchmarks/babyjubjub/generate_random_fr/report/MAD.svg
Normal file
@@ -0,0 +1,84 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:MAD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (ns)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="434" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.02
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,434 86,434 "/>
|
||||
<text x="77" y="376" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.04
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,376 86,376 "/>
|
||||
<text x="77" y="317" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.06
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,317 86,317 "/>
|
||||
<text x="77" y="259" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.08
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,259 86,259 "/>
|
||||
<text x="77" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,201 86,201 "/>
|
||||
<text x="77" y="143" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.12
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,143 86,143 "/>
|
||||
<text x="77" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.14
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,84 86,84 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="144" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="144,473 144,478 "/>
|
||||
<text x="259" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
22
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="259,473 259,478 "/>
|
||||
<text x="374" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
24
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="374,473 374,478 "/>
|
||||
<text x="488" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
26
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="488,473 488,478 "/>
|
||||
<text x="603" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
28
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="603,473 603,478 "/>
|
||||
<text x="717" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="717,473 717,478 "/>
|
||||
<text x="832" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
32
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="832,473 832,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,470 90,470 92,470 93,470 95,470 97,469 98,469 100,469 102,468 103,468 105,468 107,467 109,467 110,466 112,466 114,465 115,465 117,464 119,464 120,463 122,463 124,462 125,462 127,461 129,461 131,460 132,459 134,459 136,458 137,458 139,457 141,456 142,455 144,455 146,454 147,453 149,452 151,451 153,451 154,450 156,449 158,448 159,447 161,447 163,446 164,445 166,444 168,443 169,442 171,441 173,440 175,439 176,438 178,437 180,436 181,435 183,433 185,432 186,430 188,429 190,427 191,426 193,424 195,422 197,421 198,419 200,418 202,416 203,414 205,413 207,412 208,410 210,409 212,408 214,407 215,406 217,405 219,404 220,404 222,403 224,403 225,402 227,401 229,401 230,400 232,399 234,399 236,398 237,396 239,395 241,393 242,391 244,389 246,386 247,383 249,380 251,376 252,373 254,369 256,364 258,360 259,355 261,351 263,346 264,341 266,337 268,332 269,328 271,324 273,320 274,317 276,314 278,311 280,308 281,306 283,304 285,303 286,302 288,301 290,300 291,299 293,299 295,298 296,298 298,297 300,296 302,296 303,295 305,294 307,293 308,291 310,290 312,288 313,286 315,284 317,282 318,280 320,277 322,275 324,272 325,269 327,266 329,263 330,259 332,256 334,252 335,248 337,244 339,240 341,236 342,232 344,228 346,223 347,219 349,215 351,211 352,207 354,203 356,199 357,196 359,192 361,189 363,185 364,182 366,179 368,176 369,174 371,171 373,169 374,166 376,165 378,163 379,161 381,160 383,159 385,159 386,158 388,158 390,158 391,159 393,159 395,160 396,160 398,161 400,161 401,161 403,161 405,161 407,160 408,159 410,158 412,156 413,154 415,151 417,148 418,144 420,141 422,137 423,132 425,128 427,124 429,120 430,116 432,112 434,109 435,106 437,104 439,102 440,101 442,101 444,101 445,101 447,103 449,104 451,106 452,109 454,111 456,114 457,117 459,120 461,123 462,125 464,128 466,130 468,132 469,134 471,135 473,135 474,136 476,136 478,136 479,135 481,134 483,133 484,131 486,129 488,127 490,125 491,123 493,121 495,119 496,116 498,114 500,111 501,109 503,107 505,105 506,103 508,101 510,100 512,98 513,97 515,96 517,95 518,94 520,94 522,93 523,93 525,94 527,94 528,95 530,96 532,98 534,99 535,101 537,104 539,107 540,110 542,114 544,118 545,122 547,126 549,131 550,136 552,141 554,146 556,151 557,156 559,161 561,166 562,170 564,174 566,178 567,181 569,183 571,185 573,187 574,188 576,189 578,189 579,189 581,188 583,187 584,186 586,185 588,183 589,182 591,181 593,180 595,179 596,178 598,178 600,178 601,178 603,179 605,180 606,182 608,184 610,186 611,188 613,191 615,194 617,197 618,201 620,204 622,208 623,211 625,215 627,218 628,221 630,225 632,228 633,231 635,234 637,236 639,239 640,241 642,243 644,245 645,246 647,248 649,249 650,251 652,252 654,253 655,254 657,256 659,257 661,259 662,260 664,262 666,264 667,266 669,268 671,271 672,273 674,276 676,278 677,281 679,283 681,285 683,288 684,290 686,292 688,294 689,296 691,297 693,299 694,300 696,301 698,303 700,304 701,305 703,306 705,307 706,309 708,310 710,312 711,313 713,315 715,317 716,319 718,320 720,322 722,324 723,326 725,327 727,329 728,330 730,332 732,333 733,334 735,335 737,336 738,337 740,338 742,338 744,339 745,340 747,341 749,341 750,342 752,343 754,344 755,345 757,346 759,347 760,348 762,349 764,350 766,351 767,352 769,353 771,355 772,356 774,357 776,358 777,360 779,361 781,362 782,364 784,366 786,367 788,369 789,371 791,373 793,375 794,377 796,379 798,381 799,383 801,385 803,387 804,389 806,391 808,393 810,394 811,396 813,398 815,400 816,401 818,403 820,404 821,406 823,407 825,408 827,409 828,411 830,412 832,413 833,414 835,415 837,416 838,417 840,418 842,419 843,420 845,421 847,422 849,423 850,424 852,425 854,426 855,427 857,428 859,429 860,430 862,430 864,431 865,432 867,433 869,434 871,435 872,436 874,437 876,438 877,439 879,440 881,441 882,442 884,443 886,444 887,445 889,447 891,448 893,449 894,450 896,452 898,453 899,454 901,456 903,457 904,458 906,459 908,461 909,462 911,463 913,464 915,465 916,466 918,467 920,468 921,468 923,469 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,445 166,444 168,443 169,442 171,441 173,440 175,439 176,438 178,437 180,436 181,435 183,433 185,432 186,430 188,429 190,427 191,426 193,424 195,422 197,421 198,419 200,418 202,416 203,414 205,413 207,412 208,410 210,409 212,408 214,407 215,406 217,405 219,404 220,404 222,403 224,403 225,402 227,401 229,401 230,400 232,399 234,399 236,398 237,396 239,395 241,393 242,391 244,389 246,386 247,383 249,380 251,376 252,373 254,369 256,364 258,360 259,355 261,351 263,346 264,341 266,337 268,332 269,328 271,324 273,320 274,317 276,314 278,311 280,308 281,306 283,304 285,303 286,302 288,301 290,300 291,299 293,299 295,298 296,298 298,297 300,296 302,296 303,295 305,294 307,293 308,291 310,290 312,288 313,286 315,284 317,282 318,280 320,277 322,275 324,272 325,269 327,266 329,263 330,259 332,256 334,252 335,248 337,244 339,240 341,236 342,232 344,228 346,223 347,219 349,215 351,211 352,207 354,203 356,199 357,196 359,192 361,189 363,185 364,182 366,179 368,176 369,174 371,171 373,169 374,166 376,165 378,163 379,161 381,160 383,159 385,159 386,158 388,158 390,158 391,159 393,159 395,160 396,160 398,161 400,161 401,161 403,161 405,161 407,160 408,159 410,158 412,156 413,154 415,151 417,148 418,144 420,141 422,137 423,132 425,128 427,124 429,120 430,116 432,112 434,109 435,106 437,104 439,102 440,101 442,101 444,101 445,101 447,103 449,104 451,106 452,109 454,111 456,114 457,117 459,120 461,123 462,125 464,128 466,130 468,132 469,134 471,135 473,135 474,136 476,136 478,136 479,135 481,134 483,133 484,131 486,129 488,127 490,125 491,123 493,121 495,119 496,116 498,114 500,111 501,109 503,107 505,105 506,103 508,101 510,100 512,98 513,97 515,96 517,95 518,94 520,94 522,93 523,93 525,94 527,94 528,95 530,96 532,98 534,99 535,101 537,104 539,107 540,110 542,114 544,118 545,122 547,126 549,131 550,136 552,141 554,146 556,151 557,156 559,161 561,166 562,170 564,174 566,178 567,181 569,183 571,185 573,187 574,188 576,189 578,189 579,189 581,188 583,187 584,186 586,185 588,183 589,182 591,181 593,180 595,179 596,178 598,178 600,178 601,178 603,179 605,180 606,182 608,184 610,186 611,188 613,191 615,194 617,197 618,201 620,204 622,208 623,211 625,215 627,218 628,221 630,225 632,228 633,231 635,234 637,236 639,239 640,241 642,243 644,245 645,246 647,248 649,249 650,251 652,252 654,253 655,254 657,256 659,257 661,259 662,260 664,262 666,264 667,266 669,268 671,271 672,273 674,276 676,278 677,281 679,283 681,285 683,288 684,290 686,292 688,294 689,296 691,297 693,299 694,300 696,301 698,303 700,304 701,305 703,306 705,307 706,309 708,310 710,312 711,313 713,315 715,317 716,319 718,320 720,322 722,324 723,326 725,327 727,329 728,330 730,332 732,333 733,334 735,335 737,336 738,337 740,338 742,338 744,339 745,340 747,341 749,341 750,342 752,343 754,344 755,345 757,346 759,347 760,348 762,349 764,350 766,351 767,352 769,353 771,355 772,356 774,357 776,358 777,360 779,361 781,362 782,364 784,366 786,367 788,369 789,371 791,373 793,375 794,377 796,379 798,381 799,383 801,385 803,387 804,389 806,391 808,393 810,394 811,396 813,398 815,400 816,401 818,403 820,404 821,406 823,407 825,408 827,409 828,411 830,412 832,413 833,414 835,415 837,416 838,417 840,418 842,419 843,420 845,421 847,422 849,423 850,424 852,425 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="519,473 519,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
76
benchmarks/babyjubjub/generate_random_fr/report/SD.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:SD
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (ns)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="432" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.05
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,432 86,432 "/>
|
||||
<text x="77" y="368" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.1
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,368 86,368 "/>
|
||||
<text x="77" y="304" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.15
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,304 86,304 "/>
|
||||
<text x="77" y="240" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,240 86,240 "/>
|
||||
<text x="77" y="176" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,176 86,176 "/>
|
||||
<text x="77" y="112" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,112 86,112 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="154" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
19
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="154,473 154,478 "/>
|
||||
<text x="294" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="294,473 294,478 "/>
|
||||
<text x="435" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
21
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="435,473 435,478 "/>
|
||||
<text x="576" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
22
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="576,473 576,478 "/>
|
||||
<text x="717" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
23
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="717,473 717,478 "/>
|
||||
<text x="857" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
24
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="857,473 857,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,471 90,471 92,470 93,469 95,469 97,468 98,467 100,467 102,466 103,465 105,464 107,463 109,463 110,462 112,461 114,460 115,460 117,459 119,458 120,457 122,456 124,455 125,454 127,453 129,453 131,452 132,451 134,450 136,449 137,448 139,446 141,445 142,444 144,443 146,442 147,441 149,439 151,438 153,437 154,436 156,434 158,433 159,431 161,430 163,429 164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,408 188,406 190,405 191,403 193,402 195,400 197,399 198,397 200,395 202,394 203,392 205,390 207,389 208,387 210,385 212,383 214,381 215,380 217,378 219,376 220,374 222,372 224,370 225,369 227,367 229,365 230,363 232,361 234,359 236,357 237,355 239,353 241,352 242,350 244,348 246,346 247,344 249,342 251,340 252,338 254,336 256,334 258,332 259,330 261,328 263,326 264,323 266,321 268,319 269,317 271,315 273,312 274,310 276,308 278,305 280,303 281,301 283,298 285,296 286,293 288,291 290,288 291,286 293,284 295,281 296,278 298,276 300,273 302,271 303,268 305,266 307,263 308,261 310,258 312,255 313,253 315,250 317,248 318,245 320,243 322,240 324,238 325,235 327,233 329,230 330,227 332,225 334,222 335,220 337,217 339,215 341,213 342,210 344,208 346,205 347,203 349,200 351,198 352,196 354,193 356,191 357,189 359,186 361,184 363,182 364,180 366,177 368,175 369,173 371,171 373,169 374,166 376,164 378,162 379,160 381,158 383,156 385,154 386,152 388,149 390,147 391,145 393,143 395,141 396,139 398,137 400,135 401,133 403,132 405,130 407,128 408,126 410,125 412,123 413,121 415,120 417,118 418,117 420,116 422,115 423,113 425,112 427,111 429,110 430,109 432,109 434,108 435,107 437,106 439,105 440,105 442,104 444,103 445,103 447,102 449,102 451,101 452,101 454,100 456,99 457,99 459,98 461,98 462,97 464,97 466,96 468,96 469,96 471,95 473,95 474,95 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,94 491,94 493,94 495,95 496,95 498,95 500,96 501,96 503,96 505,97 506,97 508,98 510,99 512,99 513,100 515,100 517,101 518,102 520,102 522,103 523,104 525,104 527,105 528,106 530,107 532,107 534,108 535,109 537,110 539,110 540,111 542,112 544,113 545,114 547,115 549,116 550,117 552,118 554,119 556,120 557,121 559,122 561,124 562,125 564,126 566,128 567,129 569,131 571,132 573,134 574,136 576,137 578,139 579,141 581,143 583,145 584,146 586,148 588,150 589,152 591,154 593,156 595,158 596,160 598,162 600,164 601,166 603,168 605,170 606,172 608,174 610,176 611,178 613,180 615,182 617,185 618,187 620,189 622,191 623,193 625,195 627,198 628,200 630,202 632,204 633,206 635,208 637,211 639,213 640,215 642,217 644,219 645,221 647,223 649,225 650,227 652,229 654,231 655,233 657,235 659,237 661,239 662,242 664,244 666,246 667,248 669,250 671,252 672,255 674,257 676,259 677,261 679,263 681,266 683,268 684,270 686,272 688,274 689,276 691,279 693,281 694,283 696,285 698,287 700,289 701,291 703,293 705,295 706,296 708,298 710,300 711,302 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,325 732,327 733,329 735,331 737,333 738,335 740,337 742,339 744,341 745,343 747,345 749,347 750,349 752,351 754,353 755,354 757,356 759,358 760,360 762,362 764,363 766,365 767,367 769,369 771,370 772,372 774,374 776,375 777,377 779,379 781,380 782,382 784,383 786,385 788,387 789,388 791,390 793,391 794,393 796,394 798,396 799,397 801,399 803,400 804,402 806,403 808,405 810,406 811,408 813,409 815,410 816,412 818,413 820,414 821,415 823,417 825,418 827,419 828,420 830,421 832,423 833,424 835,425 837,426 838,427 840,428 842,429 843,431 845,432 847,433 849,434 850,435 852,436 854,437 855,438 857,440 859,441 860,442 862,443 864,444 865,445 867,446 869,447 871,448 872,449 874,450 876,451 877,452 879,452 881,453 882,454 884,455 886,456 887,456 889,457 891,458 893,459 894,459 896,460 898,461 899,461 901,462 903,463 904,463 906,464 908,464 909,465 911,466 913,466 915,467 916,467 918,468 920,469 921,469 923,470 925,470 926,471 928,471 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,427 166,426 168,424 169,423 171,421 173,420 175,418 176,417 178,415 180,414 181,412 183,411 185,409 186,408 188,406 190,405 191,403 193,402 195,400 197,399 198,397 200,395 202,394 203,392 205,390 207,389 208,387 210,385 212,383 214,381 215,380 217,378 219,376 220,374 222,372 224,370 225,369 227,367 229,365 230,363 232,361 234,359 236,357 237,355 239,353 241,352 242,350 244,348 246,346 247,344 249,342 251,340 252,338 254,336 256,334 258,332 259,330 261,328 263,326 264,323 266,321 268,319 269,317 271,315 273,312 274,310 276,308 278,305 280,303 281,301 283,298 285,296 286,293 288,291 290,288 291,286 293,284 295,281 296,278 298,276 300,273 302,271 303,268 305,266 307,263 308,261 310,258 312,255 313,253 315,250 317,248 318,245 320,243 322,240 324,238 325,235 327,233 329,230 330,227 332,225 334,222 335,220 337,217 339,215 341,213 342,210 344,208 346,205 347,203 349,200 351,198 352,196 354,193 356,191 357,189 359,186 361,184 363,182 364,180 366,177 368,175 369,173 371,171 373,169 374,166 376,164 378,162 379,160 381,158 383,156 385,154 386,152 388,149 390,147 391,145 393,143 395,141 396,139 398,137 400,135 401,133 403,132 405,130 407,128 408,126 410,125 412,123 413,121 415,120 417,118 418,117 420,116 422,115 423,113 425,112 427,111 429,110 430,109 432,109 434,108 435,107 437,106 439,105 440,105 442,104 444,103 445,103 447,102 449,102 451,101 452,101 454,100 456,99 457,99 459,98 461,98 462,97 464,97 466,96 468,96 469,96 471,95 473,95 474,95 476,94 478,94 479,94 481,94 483,94 484,94 486,94 488,94 490,94 491,94 493,94 495,95 496,95 498,95 500,96 501,96 503,96 505,97 506,97 508,98 510,99 512,99 513,100 515,100 517,101 518,102 520,102 522,103 523,104 525,104 527,105 528,106 530,107 532,107 534,108 535,109 537,110 539,110 540,111 542,112 544,113 545,114 547,115 549,116 550,117 552,118 554,119 556,120 557,121 559,122 561,124 562,125 564,126 566,128 567,129 569,131 571,132 573,134 574,136 576,137 578,139 579,141 581,143 583,145 584,146 586,148 588,150 589,152 591,154 593,156 595,158 596,160 598,162 600,164 601,166 603,168 605,170 606,172 608,174 610,176 611,178 613,180 615,182 617,185 618,187 620,189 622,191 623,193 625,195 627,198 628,200 630,202 632,204 633,206 635,208 637,211 639,213 640,215 642,217 644,219 645,221 647,223 649,225 650,227 652,229 654,231 655,233 657,235 659,237 661,239 662,242 664,244 666,246 667,248 669,250 671,252 672,255 674,257 676,259 677,261 679,263 681,266 683,268 684,270 686,272 688,274 689,276 691,279 693,281 694,283 696,285 698,287 700,289 701,291 703,293 705,295 706,296 708,298 710,300 711,302 713,304 715,306 716,308 718,310 720,312 722,314 723,316 725,318 727,320 728,322 730,325 732,327 733,329 735,331 737,333 738,335 740,337 742,339 744,341 745,343 747,345 749,347 750,349 752,351 754,353 755,354 757,356 759,358 760,360 762,362 764,363 766,365 767,367 769,369 771,370 772,372 774,374 776,375 777,377 779,379 781,380 782,382 784,383 786,385 788,387 789,388 791,390 793,391 794,393 796,394 798,396 799,397 801,399 803,400 804,402 806,403 808,405 810,406 811,408 813,409 815,410 816,412 818,413 820,414 821,415 823,417 825,418 827,419 828,420 830,421 832,423 833,424 835,425 837,426 838,427 840,428 842,429 843,431 845,432 847,433 849,434 850,435 852,436 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="520,473 520,103 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
333
benchmarks/babyjubjub/generate_random_fr/report/both/pdf.svg
Normal file
@@ -0,0 +1,333 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L81.53,662.40 '/> <g transform="translate(64.14,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,561.00 L81.53,561.00 '/> <g transform="translate(64.14,564.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,459.60 L81.53,459.60 '/> <g transform="translate(64.14,463.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,358.20 L81.53,358.20 '/> <g transform="translate(64.14,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,256.81 L81.53,256.81 '/> <g transform="translate(64.14,260.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,155.41 L81.53,155.41 '/> <g transform="translate(64.14,159.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L72.53,653.40 '/> <g transform="translate(72.53,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.02</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M188.91,662.40 L188.91,653.40 '/> <g transform="translate(188.91,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.03</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M305.29,662.40 L305.29,653.40 '/> <g transform="translate(305.29,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.04</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M421.68,662.40 L421.68,653.40 '/> <g transform="translate(421.68,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M538.06,662.40 L538.06,653.40 '/> <g transform="translate(538.06,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.06</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M654.44,662.40 L654.44,653.40 '/> <g transform="translate(654.44,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.07</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M770.82,662.40 L770.82,653.40 '/> <g transform="translate(770.82,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.08</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M887.21,662.40 L887.21,653.40 '/> <g transform="translate(887.21,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.09</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1003.59,662.40 L1003.59,653.40 '/> <g transform="translate(1003.59,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1119.97,662.40 L1119.97,653.40 '/> <g transform="translate(1119.97,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.11</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '1145.14,67.51 1187.70,67.51 1187.70,58.51 1145.14,58.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '551.77,662.08 552.82,662.03 553.87,661.98 554.92,661.92 555.97,661.86 557.02,661.79 558.07,661.71 559.12,661.62 560.17,661.52 561.22,661.41 562.27,661.29 563.32,661.15 564.37,661.00 565.42,660.84 566.47,660.66 567.52,660.46
|
||||
568.57,660.24 569.62,660.00 570.67,659.74 571.72,659.46 572.76,659.15 573.81,658.81 574.86,658.45 575.91,658.05 576.96,657.63 578.01,657.17 579.06,656.67 580.11,656.14 581.16,655.57 582.21,654.96 583.26,654.30 584.31,653.60
|
||||
585.36,652.85 586.41,652.06 587.46,651.21 588.51,650.32 589.56,649.37 590.61,648.36 591.66,647.30 592.71,646.18 593.76,645.01 594.81,643.77 595.86,642.46 596.91,641.10 597.96,639.67 599.01,638.18 600.06,636.62 601.11,634.99
|
||||
602.16,633.30 603.21,631.53 604.26,629.70 605.31,627.80 606.36,625.82 607.41,623.78 608.46,621.66 609.51,619.47 610.56,617.21 611.61,614.87 612.66,612.46 613.71,609.97 614.76,607.41 615.81,604.77 616.86,602.05 617.91,599.26
|
||||
618.96,596.38 620.01,593.42 621.06,590.38 622.11,587.25 623.16,584.03 624.21,580.72 625.26,577.32 626.31,573.83 627.36,570.23 628.41,566.54 629.46,562.74 630.51,558.84 631.56,554.83 632.61,550.70 633.66,546.45 634.71,542.09
|
||||
635.76,537.59 636.81,532.97 637.86,528.22 638.91,523.33 639.96,518.30 641.01,513.13 642.06,507.82 643.11,502.35 644.16,496.73 645.21,490.96 646.26,485.03 647.31,478.95 648.36,472.71 649.41,466.31 650.46,459.75 651.51,453.03
|
||||
652.56,446.16 653.60,439.14 654.65,431.97 655.70,424.65 656.75,417.19 657.80,409.60 658.85,401.88 659.90,394.03 660.95,386.08 662.00,378.02 663.05,369.87 664.10,361.64 665.15,353.34 666.20,344.98 667.25,336.59 668.30,328.16
|
||||
669.35,319.72 670.40,311.28 671.45,302.86 672.50,294.48 673.55,286.15 674.60,277.90 675.65,269.73 676.70,261.67 677.75,253.73 678.80,245.94 679.85,238.31 680.90,230.87 681.95,223.61 683.00,216.57 684.05,209.77 685.10,203.20
|
||||
686.15,196.90 687.20,190.88 688.25,185.14 689.30,179.70 690.35,174.58 691.40,169.77 692.45,165.30 693.50,161.17 694.55,157.38 695.60,153.95 696.65,150.86 697.70,148.14 698.75,145.78 699.80,143.77 700.85,142.13 701.90,140.84
|
||||
702.95,139.91 704.00,139.33 705.05,139.09 706.10,139.19 707.15,139.63 708.20,140.39 709.25,141.47 710.30,142.86 711.35,144.55 712.40,146.53 713.45,148.79 714.50,151.33 715.55,154.13 716.60,157.18 717.65,160.47 718.70,164.00
|
||||
719.75,167.75 720.80,171.72 721.85,175.90 722.90,180.27 723.95,184.83 725.00,189.58 726.05,194.50 727.10,199.59 728.15,204.85 729.20,210.25 730.25,215.81 731.30,221.52 732.35,227.36 733.40,233.34 734.44,239.45 735.49,245.68
|
||||
736.54,252.04 737.59,258.51 738.64,265.10 739.69,271.80 740.74,278.60 741.79,285.50 742.84,292.49 743.89,299.57 744.94,306.74 745.99,313.99 747.04,321.31 748.09,328.70 749.14,336.15 750.19,343.66 751.24,351.21 752.29,358.80
|
||||
753.34,366.43 754.39,374.07 755.44,381.73 756.49,389.40 757.54,397.06 758.59,404.71 759.64,412.34 760.69,419.93 761.74,427.48 762.79,434.98 763.84,442.42 764.89,449.79 765.94,457.07 766.99,464.26 768.04,471.35 769.09,478.34
|
||||
770.14,485.20 771.19,491.94 772.24,498.54 773.29,504.99 774.34,511.30 775.39,517.45 776.44,523.44 777.49,529.26 778.54,534.90 779.59,540.37 780.64,545.65 781.69,550.75 782.74,555.66 783.79,560.38 784.84,564.91 785.89,569.24
|
||||
786.94,573.39 787.99,577.34 789.04,581.10 790.09,584.68 791.14,588.07 792.19,591.27 793.24,594.29 794.29,597.13 795.34,599.81 796.39,602.31 797.44,604.65 798.49,606.83 799.54,608.86 800.59,610.74 801.64,612.47 802.69,614.08
|
||||
803.74,615.55 804.79,616.90 805.84,618.14 806.89,619.26 807.94,620.29 808.99,621.21 810.04,622.05 811.09,622.81 812.14,623.48 813.19,624.09 814.24,624.64 815.28,625.12 816.33,625.56 817.38,625.95 818.43,626.30 819.48,626.61
|
||||
820.53,626.90 821.58,627.16 822.63,627.40 823.68,627.62 824.73,627.84 825.78,628.04 826.83,628.24 827.88,628.44 828.93,628.64 829.98,628.85 831.03,629.07 832.08,629.29 833.13,629.53 834.18,629.78 835.23,630.05 836.28,630.33
|
||||
837.33,630.63 838.38,630.94 839.43,631.28 840.48,631.63 841.53,632.01 842.58,632.40 843.63,632.81 844.68,633.24 845.73,633.69 846.78,634.16 847.83,634.64 848.88,635.14 849.93,635.65 850.98,636.17 852.03,636.71 853.08,637.26
|
||||
854.13,637.81 855.18,638.38 856.23,638.95 857.28,639.53 858.33,640.10 859.38,640.69 860.43,641.27 861.48,641.85 862.53,642.42 863.58,642.99 864.63,643.56 865.68,644.11 866.73,644.66 867.78,645.20 868.83,645.72 869.88,646.23
|
||||
870.93,646.72 871.98,647.20 873.03,647.66 874.08,648.10 875.13,648.52 876.18,648.93 877.23,649.30 878.28,649.66 879.33,649.99 880.38,650.30 881.43,650.59 882.48,650.85 883.53,651.08 884.58,651.29 885.63,651.47 886.68,651.63
|
||||
887.73,651.76 888.78,651.87 889.83,651.95 890.88,652.01 891.93,652.04 892.98,652.05 894.03,652.04 895.08,652.01 896.12,651.95 897.17,651.88 898.22,651.78 899.27,651.67 900.32,651.54 901.37,651.40 902.42,651.24 903.47,651.07
|
||||
904.52,650.88 905.57,650.69 906.62,650.49 907.67,650.28 908.72,650.06 909.77,649.84 910.82,649.61 911.87,649.38 912.92,649.16 913.97,648.93 915.02,648.70 916.07,648.48 917.12,648.26 918.17,648.05 919.22,647.84 920.27,647.64
|
||||
921.32,647.45 922.37,647.27 923.42,647.10 924.47,646.94 925.52,646.79 926.57,646.65 927.62,646.53 928.67,646.42 929.72,646.32 930.77,646.24 931.82,646.18 932.87,646.12 933.92,646.09 934.97,646.06 936.02,646.05 937.07,646.06
|
||||
938.12,646.08 939.17,646.11 940.22,646.16 941.27,646.22 942.32,646.29 943.37,646.38 944.42,646.48 945.47,646.58 946.52,646.70 947.57,646.83 948.62,646.96 949.67,647.11 950.72,647.26 951.77,647.41 952.82,647.57 953.87,647.74
|
||||
954.92,647.90 955.97,648.07 957.02,648.24 958.07,648.42 959.12,648.59 960.17,648.75 961.22,648.92 962.27,649.08 963.32,649.24 964.37,649.39 965.42,649.54 966.47,649.68 967.52,649.82 968.57,649.95 969.62,650.07 970.67,650.18
|
||||
971.72,650.29 972.77,650.39 973.82,650.48 974.87,650.56 975.91,650.64 976.96,650.71 978.01,650.77 979.06,650.82 980.11,650.87 981.16,650.92 982.21,650.95 983.26,650.99 984.31,651.02 985.36,651.05 986.41,651.08 987.46,651.11
|
||||
988.51,651.14 989.56,651.17 990.61,651.20 991.66,651.23 992.71,651.27 993.76,651.31 994.81,651.36 995.86,651.42 996.91,651.48 997.96,651.55 999.01,651.63 1000.06,651.72 1001.11,651.81 1002.16,651.92 1003.21,652.04 1004.26,652.16
|
||||
1005.31,652.30 1006.36,652.45 1007.41,652.61 1008.46,652.77 1009.51,652.95 1010.56,653.14 1011.61,653.33 1012.66,653.53 1013.71,653.75 1014.76,653.97 1015.81,654.19 1016.86,654.42 1017.91,654.66 1018.96,654.90 1020.01,655.15 1021.06,655.40
|
||||
1022.11,655.65 1023.16,655.91 1024.21,656.16 1025.26,656.41 1026.31,656.67 1027.36,656.92 1028.41,657.17 1029.46,657.42 1030.51,657.66 1031.56,657.90 1032.61,658.13 1033.66,658.36 1034.71,658.58 1035.76,658.80 1036.81,659.01 1037.86,659.22
|
||||
1038.91,659.41 1039.96,659.60 1041.01,659.78 1042.06,659.96 1043.11,660.13 1044.16,660.29 1045.21,660.44 1046.26,660.58 1047.31,660.72 1048.36,660.85 1049.41,660.97 1050.46,661.08 1051.51,661.19 1052.56,661.29 1053.61,661.38 1054.66,661.47
|
||||
1055.71,661.55 1056.75,661.63 1057.80,661.70 1058.85,661.76 1059.90,661.82 1060.95,661.88 1062.00,661.93 1063.05,661.98 1064.10,662.02 1065.15,662.06 1066.20,662.09 1067.25,662.13 1068.30,662.16 1069.35,662.18 1070.40,662.21 1071.45,662.23
|
||||
1072.50,662.25 1073.55,662.26 1074.60,662.28 1075.65,662.29 1075.65,662.40 1074.60,662.40 1073.55,662.40 1072.50,662.40 1071.45,662.40 1070.40,662.40 1069.35,662.40 1068.30,662.40 1067.25,662.40 1066.20,662.40 1065.15,662.40 1064.10,662.40
|
||||
1063.05,662.40 1062.00,662.40 1060.95,662.40 1059.90,662.40 1058.85,662.40 1057.80,662.40 1056.75,662.40 1055.71,662.40 1054.66,662.40 1053.61,662.40 1052.56,662.40 1051.51,662.40 1050.46,662.40 1049.41,662.40 1048.36,662.40 1047.31,662.40
|
||||
1046.26,662.40 1045.21,662.40 1044.16,662.40 1043.11,662.40 1042.06,662.40 1041.01,662.40 1039.96,662.40 1038.91,662.40 1037.86,662.40 1036.81,662.40 1035.76,662.40 1034.71,662.40 1033.66,662.40 1032.61,662.40 1031.56,662.40 1030.51,662.40
|
||||
1029.46,662.40 1028.41,662.40 1027.36,662.40 1026.31,662.40 1025.26,662.40 1024.21,662.40 1023.16,662.40 1022.11,662.40 1021.06,662.40 1020.01,662.40 1018.96,662.40 1017.91,662.40 1016.86,662.40 1015.81,662.40 1014.76,662.40 1013.71,662.40
|
||||
1012.66,662.40 1011.61,662.40 1010.56,662.40 1009.51,662.40 1008.46,662.40 1007.41,662.40 1006.36,662.40 1005.31,662.40 1004.26,662.40 1003.21,662.40 1002.16,662.40 1001.11,662.40 1000.06,662.40 999.01,662.40 997.96,662.40 996.91,662.40
|
||||
995.86,662.40 994.81,662.40 993.76,662.40 992.71,662.40 991.66,662.40 990.61,662.40 989.56,662.40 988.51,662.40 987.46,662.40 986.41,662.40 985.36,662.40 984.31,662.40 983.26,662.40 982.21,662.40 981.16,662.40 980.11,662.40
|
||||
979.06,662.40 978.01,662.40 976.96,662.40 975.91,662.40 974.87,662.40 973.82,662.40 972.77,662.40 971.72,662.40 970.67,662.40 969.62,662.40 968.57,662.40 967.52,662.40 966.47,662.40 965.42,662.40 964.37,662.40 963.32,662.40
|
||||
962.27,662.40 961.22,662.40 960.17,662.40 959.12,662.40 958.07,662.40 957.02,662.40 955.97,662.40 954.92,662.40 953.87,662.40 952.82,662.40 951.77,662.40 950.72,662.40 949.67,662.40 948.62,662.40 947.57,662.40 946.52,662.40
|
||||
945.47,662.40 944.42,662.40 943.37,662.40 942.32,662.40 941.27,662.40 940.22,662.40 939.17,662.40 938.12,662.40 937.07,662.40 936.02,662.40 934.97,662.40 933.92,662.40 932.87,662.40 931.82,662.40 930.77,662.40 929.72,662.40
|
||||
928.67,662.40 927.62,662.40 926.57,662.40 925.52,662.40 924.47,662.40 923.42,662.40 922.37,662.40 921.32,662.40 920.27,662.40 919.22,662.40 918.17,662.40 917.12,662.40 916.07,662.40 915.02,662.40 913.97,662.40 912.92,662.40
|
||||
911.87,662.40 910.82,662.40 909.77,662.40 908.72,662.40 907.67,662.40 906.62,662.40 905.57,662.40 904.52,662.40 903.47,662.40 902.42,662.40 901.37,662.40 900.32,662.40 899.27,662.40 898.22,662.40 897.17,662.40 896.12,662.40
|
||||
895.08,662.40 894.03,662.40 892.98,662.40 891.93,662.40 890.88,662.40 889.83,662.40 888.78,662.40 887.73,662.40 886.68,662.40 885.63,662.40 884.58,662.40 883.53,662.40 882.48,662.40 881.43,662.40 880.38,662.40 879.33,662.40
|
||||
878.28,662.40 877.23,662.40 876.18,662.40 875.13,662.40 874.08,662.40 873.03,662.40 871.98,662.40 870.93,662.40 869.88,662.40 868.83,662.40 867.78,662.40 866.73,662.40 865.68,662.40 864.63,662.40 863.58,662.40 862.53,662.40
|
||||
861.48,662.40 860.43,662.40 859.38,662.40 858.33,662.40 857.28,662.40 856.23,662.40 855.18,662.40 854.13,662.40 853.08,662.40 852.03,662.40 850.98,662.40 849.93,662.40 848.88,662.40 847.83,662.40 846.78,662.40 845.73,662.40
|
||||
844.68,662.40 843.63,662.40 842.58,662.40 841.53,662.40 840.48,662.40 839.43,662.40 838.38,662.40 837.33,662.40 836.28,662.40 835.23,662.40 834.18,662.40 833.13,662.40 832.08,662.40 831.03,662.40 829.98,662.40 828.93,662.40
|
||||
827.88,662.40 826.83,662.40 825.78,662.40 824.73,662.40 823.68,662.40 822.63,662.40 821.58,662.40 820.53,662.40 819.48,662.40 818.43,662.40 817.38,662.40 816.33,662.40 815.28,662.40 814.24,662.40 813.19,662.40 812.14,662.40
|
||||
811.09,662.40 810.04,662.40 808.99,662.40 807.94,662.40 806.89,662.40 805.84,662.40 804.79,662.40 803.74,662.40 802.69,662.40 801.64,662.40 800.59,662.40 799.54,662.40 798.49,662.40 797.44,662.40 796.39,662.40 795.34,662.40
|
||||
794.29,662.40 793.24,662.40 792.19,662.40 791.14,662.40 790.09,662.40 789.04,662.40 787.99,662.40 786.94,662.40 785.89,662.40 784.84,662.40 783.79,662.40 782.74,662.40 781.69,662.40 780.64,662.40 779.59,662.40 778.54,662.40
|
||||
777.49,662.40 776.44,662.40 775.39,662.40 774.34,662.40 773.29,662.40 772.24,662.40 771.19,662.40 770.14,662.40 769.09,662.40 768.04,662.40 766.99,662.40 765.94,662.40 764.89,662.40 763.84,662.40 762.79,662.40 761.74,662.40
|
||||
760.69,662.40 759.64,662.40 758.59,662.40 757.54,662.40 756.49,662.40 755.44,662.40 754.39,662.40 753.34,662.40 752.29,662.40 751.24,662.40 750.19,662.40 749.14,662.40 748.09,662.40 747.04,662.40 745.99,662.40 744.94,662.40
|
||||
743.89,662.40 742.84,662.40 741.79,662.40 740.74,662.40 739.69,662.40 738.64,662.40 737.59,662.40 736.54,662.40 735.49,662.40 734.44,662.40 733.40,662.40 732.35,662.40 731.30,662.40 730.25,662.40 729.20,662.40 728.15,662.40
|
||||
727.10,662.40 726.05,662.40 725.00,662.40 723.95,662.40 722.90,662.40 721.85,662.40 720.80,662.40 719.75,662.40 718.70,662.40 717.65,662.40 716.60,662.40 715.55,662.40 714.50,662.40 713.45,662.40 712.40,662.40 711.35,662.40
|
||||
710.30,662.40 709.25,662.40 708.20,662.40 707.15,662.40 706.10,662.40 705.05,662.40 704.00,662.40 702.95,662.40 701.90,662.40 700.85,662.40 699.80,662.40 698.75,662.40 697.70,662.40 696.65,662.40 695.60,662.40 694.55,662.40
|
||||
693.50,662.40 692.45,662.40 691.40,662.40 690.35,662.40 689.30,662.40 688.25,662.40 687.20,662.40 686.15,662.40 685.10,662.40 684.05,662.40 683.00,662.40 681.95,662.40 680.90,662.40 679.85,662.40 678.80,662.40 677.75,662.40
|
||||
676.70,662.40 675.65,662.40 674.60,662.40 673.55,662.40 672.50,662.40 671.45,662.40 670.40,662.40 669.35,662.40 668.30,662.40 667.25,662.40 666.20,662.40 665.15,662.40 664.10,662.40 663.05,662.40 662.00,662.40 660.95,662.40
|
||||
659.90,662.40 658.85,662.40 657.80,662.40 656.75,662.40 655.70,662.40 654.65,662.40 653.60,662.40 652.56,662.40 651.51,662.40 650.46,662.40 649.41,662.40 648.36,662.40 647.31,662.40 646.26,662.40 645.21,662.40 644.16,662.40
|
||||
643.11,662.40 642.06,662.40 641.01,662.40 639.96,662.40 638.91,662.40 637.86,662.40 636.81,662.40 635.76,662.40 634.71,662.40 633.66,662.40 632.61,662.40 631.56,662.40 630.51,662.40 629.46,662.40 628.41,662.40 627.36,662.40
|
||||
626.31,662.40 625.26,662.40 624.21,662.40 623.16,662.40 622.11,662.40 621.06,662.40 620.01,662.40 618.96,662.40 617.91,662.40 616.86,662.40 615.81,662.40 614.76,662.40 613.71,662.40 612.66,662.40 611.61,662.40 610.56,662.40
|
||||
609.51,662.40 608.46,662.40 607.41,662.40 606.36,662.40 605.31,662.40 604.26,662.40 603.21,662.40 602.16,662.40 601.11,662.40 600.06,662.40 599.01,662.40 597.96,662.40 596.91,662.40 595.86,662.40 594.81,662.40 593.76,662.40
|
||||
592.71,662.40 591.66,662.40 590.61,662.40 589.56,662.40 588.51,662.40 587.46,662.40 586.41,662.40 585.36,662.40 584.31,662.40 583.26,662.40 582.21,662.40 581.16,662.40 580.11,662.40 579.06,662.40 578.01,662.40 576.96,662.40
|
||||
575.91,662.40 574.86,662.40 573.81,662.40 572.76,662.40 571.72,662.40 570.67,662.40 569.62,662.40 568.57,662.40 567.52,662.40 566.47,662.40 565.42,662.40 564.37,662.40 563.32,662.40 562.27,662.40 561.22,662.40 560.17,662.40
|
||||
559.12,662.40 558.07,662.40 557.02,662.40 555.97,662.40 554.92,662.40 553.87,662.40 552.82,662.40 551.77,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M1145.14,81.01 L1187.70,81.01 M718.73,662.40 L718.73,164.12 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New PDF</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '1145.14,103.51 1187.70,103.51 1187.70,94.51 1145.14,94.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '117.66,662.30 118.82,662.29 119.99,662.27 121.15,662.26 122.31,662.24 123.48,662.22 124.64,662.19 125.80,662.17 126.96,662.14 128.13,662.11 129.29,662.07 130.45,662.03 131.62,661.99 132.78,661.94 133.94,661.89 135.10,661.84
|
||||
136.27,661.78 137.43,661.71 138.59,661.64 139.75,661.56 140.92,661.48 142.08,661.39 143.24,661.29 144.41,661.18 145.57,661.07 146.73,660.95 147.89,660.82 149.06,660.68 150.22,660.53 151.38,660.37 152.55,660.20 153.71,660.03
|
||||
154.87,659.84 156.03,659.64 157.20,659.43 158.36,659.21 159.52,658.97 160.69,658.73 161.85,658.47 163.01,658.20 164.17,657.92 165.34,657.63 166.50,657.32 167.66,657.00 168.83,656.67 169.99,656.33 171.15,655.97 172.31,655.60
|
||||
173.48,655.22 174.64,654.83 175.80,654.42 176.96,654.00 178.13,653.56 179.29,653.11 180.45,652.65 181.62,652.17 182.78,651.68 183.94,651.17 185.10,650.65 186.27,650.11 187.43,649.55 188.59,648.98 189.76,648.39 190.92,647.77
|
||||
192.08,647.14 193.24,646.48 194.41,645.80 195.57,645.09 196.73,644.36 197.90,643.59 199.06,642.80 200.22,641.97 201.38,641.10 202.55,640.19 203.71,639.24 204.87,638.25 206.03,637.21 207.20,636.12 208.36,634.97 209.52,633.76
|
||||
210.69,632.49 211.85,631.16 213.01,629.75 214.17,628.27 215.34,626.71 216.50,625.07 217.66,623.35 218.83,621.53 219.99,619.61 221.15,617.60 222.31,615.48 223.48,613.26 224.64,610.92 225.80,608.47 226.97,605.89 228.13,603.20
|
||||
229.29,600.37 230.45,597.42 231.62,594.33 232.78,591.11 233.94,587.75 235.11,584.25 236.27,580.61 237.43,576.82 238.59,572.89 239.76,568.81 240.92,564.58 242.08,560.21 243.24,555.70 244.41,551.04 245.57,546.23 246.73,541.29
|
||||
247.90,536.20 249.06,530.98 250.22,525.62 251.38,520.13 252.55,514.51 253.71,508.77 254.87,502.92 256.04,496.95 257.20,490.87 258.36,484.69 259.52,478.42 260.69,472.05 261.85,465.61 263.01,459.09 264.18,452.50 265.34,445.85
|
||||
266.50,439.15 267.66,432.40 268.83,425.62 269.99,418.81 271.15,411.98 272.32,405.14 273.48,398.31 274.64,391.47 275.80,384.66 276.97,377.87 278.13,371.12 279.29,364.41 280.45,357.76 281.62,351.17 282.78,344.65 283.94,338.22
|
||||
285.11,331.87 286.27,325.62 287.43,319.49 288.59,313.47 289.76,307.58 290.92,301.82 292.08,296.21 293.25,290.75 294.41,285.45 295.57,280.32 296.73,275.36 297.90,270.60 299.06,266.02 300.22,261.64 301.39,257.47 302.55,253.51
|
||||
303.71,249.77 304.87,246.26 306.04,242.97 307.20,239.93 308.36,237.12 309.52,234.57 310.69,232.26 311.85,230.20 313.01,228.41 314.18,226.87 315.34,225.60 316.50,224.59 317.66,223.85 318.83,223.38 319.99,223.17 321.15,223.23
|
||||
322.32,223.56 323.48,224.16 324.64,225.02 325.80,226.14 326.97,227.52 328.13,229.15 329.29,231.04 330.46,233.18 331.62,235.56 332.78,238.18 333.94,241.02 335.11,244.10 336.27,247.39 337.43,250.90 338.60,254.61 339.76,258.52
|
||||
340.92,262.61 342.08,266.89 343.25,271.34 344.41,275.95 345.57,280.71 346.73,285.62 347.90,290.66 349.06,295.83 350.22,301.11 351.39,306.50 352.55,311.98 353.71,317.55 354.87,323.19 356.04,328.90 357.20,334.67 358.36,340.48
|
||||
359.53,346.33 360.69,352.20 361.85,358.09 363.01,364.00 364.18,369.90 365.34,375.79 366.50,381.67 367.67,387.52 368.83,393.34 369.99,399.12 371.15,404.85 372.32,410.53 373.48,416.14 374.64,421.69 375.81,427.17 376.97,432.57
|
||||
378.13,437.88 379.29,443.11 380.46,448.24 381.62,453.28 382.78,458.21 383.94,463.05 385.11,467.77 386.27,472.39 387.43,476.90 388.60,481.29 389.76,485.57 390.92,489.74 392.08,493.79 393.25,497.73 394.41,501.55 395.57,505.25
|
||||
396.74,508.85 397.90,512.32 399.06,515.69 400.22,518.95 401.39,522.11 402.55,525.15 403.71,528.10 404.88,530.94 406.04,533.69 407.20,536.35 408.36,538.91 409.53,541.39 410.69,543.78 411.85,546.10 413.02,548.33 414.18,550.50
|
||||
415.34,552.59 416.50,554.62 417.67,556.59 418.83,558.50 419.99,560.35 421.15,562.16 422.32,563.91 423.48,565.62 424.64,567.29 425.81,568.92 426.97,570.51 428.13,572.07 429.29,573.59 430.46,575.09 431.62,576.56 432.78,578.01
|
||||
433.95,579.43 435.11,580.84 436.27,582.22 437.43,583.58 438.60,584.93 439.76,586.26 440.92,587.58 442.09,588.88 443.25,590.17 444.41,591.45 445.57,592.71 446.74,593.96 447.90,595.20 449.06,596.43 450.22,597.65 451.39,598.86
|
||||
452.55,600.05 453.71,601.24 454.88,602.41 456.04,603.58 457.20,604.73 458.36,605.88 459.53,607.01 460.69,608.13 461.85,609.24 463.02,610.34 464.18,611.43 465.34,612.50 466.50,613.57 467.67,614.62 468.83,615.66 469.99,616.69
|
||||
471.16,617.70 472.32,618.71 473.48,619.70 474.64,620.67 475.81,621.63 476.97,622.58 478.13,623.52 479.30,624.44 480.46,625.34 481.62,626.23 482.78,627.10 483.95,627.96 485.11,628.80 486.27,629.63 487.43,630.44 488.60,631.23
|
||||
489.76,632.01 490.92,632.76 492.09,633.50 493.25,634.22 494.41,634.93 495.57,635.61 496.74,636.28 497.90,636.93 499.06,637.56 500.23,638.17 501.39,638.76 502.55,639.33 503.71,639.89 504.88,640.43 506.04,640.94 507.20,641.44
|
||||
508.37,641.92 509.53,642.38 510.69,642.83 511.85,643.25 513.02,643.66 514.18,644.05 515.34,644.43 516.51,644.79 517.67,645.13 518.83,645.45 519.99,645.76 521.16,646.05 522.32,646.33 523.48,646.60 524.64,646.85 525.81,647.09
|
||||
526.97,647.31 528.13,647.53 529.30,647.73 530.46,647.92 531.62,648.10 532.78,648.27 533.95,648.43 535.11,648.58 536.27,648.73 537.44,648.86 538.60,648.99 539.76,649.12 540.92,649.24 542.09,649.35 543.25,649.47 544.41,649.57
|
||||
545.58,649.68 546.74,649.78 547.90,649.88 549.06,649.98 550.23,650.08 551.39,650.18 552.55,650.28 553.71,650.37 554.88,650.47 556.04,650.57 557.20,650.67 558.37,650.77 559.53,650.87 560.69,650.97 561.85,651.07 563.02,651.17
|
||||
564.18,651.26 565.34,651.36 566.51,651.46 567.67,651.56 568.83,651.65 569.99,651.74 571.16,651.83 572.32,651.92 573.48,652.00 574.65,652.08 575.81,652.16 576.97,652.23 578.13,652.29 579.30,652.35 580.46,652.41 581.62,652.46
|
||||
582.79,652.50 583.95,652.54 585.11,652.57 586.27,652.60 587.44,652.62 588.60,652.64 589.76,652.65 590.92,652.65 592.09,652.66 593.25,652.66 594.41,652.65 595.58,652.65 596.74,652.64 597.90,652.63 599.06,652.62 600.23,652.61
|
||||
601.39,652.60 602.55,652.60 603.72,652.60 604.88,652.60 606.04,652.60 607.20,652.61 608.37,652.63 609.53,652.66 610.69,652.69 611.86,652.73 613.02,652.77 614.18,652.83 615.34,652.90 616.51,652.97 617.67,653.06 618.83,653.16
|
||||
620.00,653.26 621.16,653.38 622.32,653.51 623.48,653.65 624.65,653.80 625.81,653.95 626.97,654.12 628.13,654.29 629.30,654.48 630.46,654.67 631.62,654.87 632.79,655.07 633.95,655.29 635.11,655.50 636.27,655.72 637.44,655.95
|
||||
638.60,656.17 639.76,656.40 640.93,656.63 642.09,656.87 643.25,657.10 644.41,657.33 645.58,657.56 646.74,657.78 647.90,658.01 649.07,658.23 650.23,658.44 651.39,658.65 652.55,658.86 653.72,659.06 654.88,659.25 656.04,659.44
|
||||
657.21,659.63 658.37,659.80 659.53,659.97 660.69,660.13 661.86,660.29 663.02,660.44 664.18,660.58 665.34,660.71 666.51,660.84 667.67,660.96 668.83,661.07 670.00,661.18 671.16,661.28 672.32,661.37 673.48,661.46 674.65,661.54
|
||||
675.81,661.62 676.97,661.69 678.14,661.75 679.30,661.81 680.46,661.87 681.62,661.92 682.79,661.97 683.95,662.01 685.11,662.05 686.28,662.09 687.44,662.12 688.60,662.15 689.76,662.18 690.93,662.20 692.09,662.22 693.25,662.24
|
||||
694.41,662.26 695.58,662.28 696.74,662.29 697.90,662.30 697.90,662.40 696.74,662.40 695.58,662.40 694.41,662.40 693.25,662.40 692.09,662.40 690.93,662.40 689.76,662.40 688.60,662.40 687.44,662.40 686.28,662.40 685.11,662.40
|
||||
683.95,662.40 682.79,662.40 681.62,662.40 680.46,662.40 679.30,662.40 678.14,662.40 676.97,662.40 675.81,662.40 674.65,662.40 673.48,662.40 672.32,662.40 671.16,662.40 670.00,662.40 668.83,662.40 667.67,662.40 666.51,662.40
|
||||
665.34,662.40 664.18,662.40 663.02,662.40 661.86,662.40 660.69,662.40 659.53,662.40 658.37,662.40 657.21,662.40 656.04,662.40 654.88,662.40 653.72,662.40 652.55,662.40 651.39,662.40 650.23,662.40 649.07,662.40 647.90,662.40
|
||||
646.74,662.40 645.58,662.40 644.41,662.40 643.25,662.40 642.09,662.40 640.93,662.40 639.76,662.40 638.60,662.40 637.44,662.40 636.27,662.40 635.11,662.40 633.95,662.40 632.79,662.40 631.62,662.40 630.46,662.40 629.30,662.40
|
||||
628.13,662.40 626.97,662.40 625.81,662.40 624.65,662.40 623.48,662.40 622.32,662.40 621.16,662.40 620.00,662.40 618.83,662.40 617.67,662.40 616.51,662.40 615.34,662.40 614.18,662.40 613.02,662.40 611.86,662.40 610.69,662.40
|
||||
609.53,662.40 608.37,662.40 607.20,662.40 606.04,662.40 604.88,662.40 603.72,662.40 602.55,662.40 601.39,662.40 600.23,662.40 599.06,662.40 597.90,662.40 596.74,662.40 595.58,662.40 594.41,662.40 593.25,662.40 592.09,662.40
|
||||
590.92,662.40 589.76,662.40 588.60,662.40 587.44,662.40 586.27,662.40 585.11,662.40 583.95,662.40 582.79,662.40 581.62,662.40 580.46,662.40 579.30,662.40 578.13,662.40 576.97,662.40 575.81,662.40 574.65,662.40 573.48,662.40
|
||||
572.32,662.40 571.16,662.40 569.99,662.40 568.83,662.40 567.67,662.40 566.51,662.40 565.34,662.40 564.18,662.40 563.02,662.40 561.85,662.40 560.69,662.40 559.53,662.40 558.37,662.40 557.20,662.40 556.04,662.40 554.88,662.40
|
||||
553.71,662.40 552.55,662.40 551.39,662.40 550.23,662.40 549.06,662.40 547.90,662.40 546.74,662.40 545.58,662.40 544.41,662.40 543.25,662.40 542.09,662.40 540.92,662.40 539.76,662.40 538.60,662.40 537.44,662.40 536.27,662.40
|
||||
535.11,662.40 533.95,662.40 532.78,662.40 531.62,662.40 530.46,662.40 529.30,662.40 528.13,662.40 526.97,662.40 525.81,662.40 524.64,662.40 523.48,662.40 522.32,662.40 521.16,662.40 519.99,662.40 518.83,662.40 517.67,662.40
|
||||
516.51,662.40 515.34,662.40 514.18,662.40 513.02,662.40 511.85,662.40 510.69,662.40 509.53,662.40 508.37,662.40 507.20,662.40 506.04,662.40 504.88,662.40 503.71,662.40 502.55,662.40 501.39,662.40 500.23,662.40 499.06,662.40
|
||||
497.90,662.40 496.74,662.40 495.57,662.40 494.41,662.40 493.25,662.40 492.09,662.40 490.92,662.40 489.76,662.40 488.60,662.40 487.43,662.40 486.27,662.40 485.11,662.40 483.95,662.40 482.78,662.40 481.62,662.40 480.46,662.40
|
||||
479.30,662.40 478.13,662.40 476.97,662.40 475.81,662.40 474.64,662.40 473.48,662.40 472.32,662.40 471.16,662.40 469.99,662.40 468.83,662.40 467.67,662.40 466.50,662.40 465.34,662.40 464.18,662.40 463.02,662.40 461.85,662.40
|
||||
460.69,662.40 459.53,662.40 458.36,662.40 457.20,662.40 456.04,662.40 454.88,662.40 453.71,662.40 452.55,662.40 451.39,662.40 450.22,662.40 449.06,662.40 447.90,662.40 446.74,662.40 445.57,662.40 444.41,662.40 443.25,662.40
|
||||
442.09,662.40 440.92,662.40 439.76,662.40 438.60,662.40 437.43,662.40 436.27,662.40 435.11,662.40 433.95,662.40 432.78,662.40 431.62,662.40 430.46,662.40 429.29,662.40 428.13,662.40 426.97,662.40 425.81,662.40 424.64,662.40
|
||||
423.48,662.40 422.32,662.40 421.15,662.40 419.99,662.40 418.83,662.40 417.67,662.40 416.50,662.40 415.34,662.40 414.18,662.40 413.02,662.40 411.85,662.40 410.69,662.40 409.53,662.40 408.36,662.40 407.20,662.40 406.04,662.40
|
||||
404.88,662.40 403.71,662.40 402.55,662.40 401.39,662.40 400.22,662.40 399.06,662.40 397.90,662.40 396.74,662.40 395.57,662.40 394.41,662.40 393.25,662.40 392.08,662.40 390.92,662.40 389.76,662.40 388.60,662.40 387.43,662.40
|
||||
386.27,662.40 385.11,662.40 383.94,662.40 382.78,662.40 381.62,662.40 380.46,662.40 379.29,662.40 378.13,662.40 376.97,662.40 375.81,662.40 374.64,662.40 373.48,662.40 372.32,662.40 371.15,662.40 369.99,662.40 368.83,662.40
|
||||
367.67,662.40 366.50,662.40 365.34,662.40 364.18,662.40 363.01,662.40 361.85,662.40 360.69,662.40 359.53,662.40 358.36,662.40 357.20,662.40 356.04,662.40 354.87,662.40 353.71,662.40 352.55,662.40 351.39,662.40 350.22,662.40
|
||||
349.06,662.40 347.90,662.40 346.73,662.40 345.57,662.40 344.41,662.40 343.25,662.40 342.08,662.40 340.92,662.40 339.76,662.40 338.60,662.40 337.43,662.40 336.27,662.40 335.11,662.40 333.94,662.40 332.78,662.40 331.62,662.40
|
||||
330.46,662.40 329.29,662.40 328.13,662.40 326.97,662.40 325.80,662.40 324.64,662.40 323.48,662.40 322.32,662.40 321.15,662.40 319.99,662.40 318.83,662.40 317.66,662.40 316.50,662.40 315.34,662.40 314.18,662.40 313.01,662.40
|
||||
311.85,662.40 310.69,662.40 309.52,662.40 308.36,662.40 307.20,662.40 306.04,662.40 304.87,662.40 303.71,662.40 302.55,662.40 301.39,662.40 300.22,662.40 299.06,662.40 297.90,662.40 296.73,662.40 295.57,662.40 294.41,662.40
|
||||
293.25,662.40 292.08,662.40 290.92,662.40 289.76,662.40 288.59,662.40 287.43,662.40 286.27,662.40 285.11,662.40 283.94,662.40 282.78,662.40 281.62,662.40 280.45,662.40 279.29,662.40 278.13,662.40 276.97,662.40 275.80,662.40
|
||||
274.64,662.40 273.48,662.40 272.32,662.40 271.15,662.40 269.99,662.40 268.83,662.40 267.66,662.40 266.50,662.40 265.34,662.40 264.18,662.40 263.01,662.40 261.85,662.40 260.69,662.40 259.52,662.40 258.36,662.40 257.20,662.40
|
||||
256.04,662.40 254.87,662.40 253.71,662.40 252.55,662.40 251.38,662.40 250.22,662.40 249.06,662.40 247.90,662.40 246.73,662.40 245.57,662.40 244.41,662.40 243.24,662.40 242.08,662.40 240.92,662.40 239.76,662.40 238.59,662.40
|
||||
237.43,662.40 236.27,662.40 235.11,662.40 233.94,662.40 232.78,662.40 231.62,662.40 230.45,662.40 229.29,662.40 228.13,662.40 226.97,662.40 225.80,662.40 224.64,662.40 223.48,662.40 222.31,662.40 221.15,662.40 219.99,662.40
|
||||
218.83,662.40 217.66,662.40 216.50,662.40 215.34,662.40 214.17,662.40 213.01,662.40 211.85,662.40 210.69,662.40 209.52,662.40 208.36,662.40 207.20,662.40 206.03,662.40 204.87,662.40 203.71,662.40 202.55,662.40 201.38,662.40
|
||||
200.22,662.40 199.06,662.40 197.90,662.40 196.73,662.40 195.57,662.40 194.41,662.40 193.24,662.40 192.08,662.40 190.92,662.40 189.76,662.40 188.59,662.40 187.43,662.40 186.27,662.40 185.10,662.40 183.94,662.40 182.78,662.40
|
||||
181.62,662.40 180.45,662.40 179.29,662.40 178.13,662.40 176.96,662.40 175.80,662.40 174.64,662.40 173.48,662.40 172.31,662.40 171.15,662.40 169.99,662.40 168.83,662.40 167.66,662.40 166.50,662.40 165.34,662.40 164.17,662.40
|
||||
163.01,662.40 161.85,662.40 160.69,662.40 159.52,662.40 158.36,662.40 157.20,662.40 156.03,662.40 154.87,662.40 153.71,662.40 152.55,662.40 151.38,662.40 150.22,662.40 149.06,662.40 147.89,662.40 146.73,662.40 145.57,662.40
|
||||
144.41,662.40 143.24,662.40 142.08,662.40 140.92,662.40 139.75,662.40 138.59,662.40 137.43,662.40 136.27,662.40 135.10,662.40 133.94,662.40 132.78,662.40 131.62,662.40 130.45,662.40 129.29,662.40 128.13,662.40 126.96,662.40
|
||||
125.80,662.40 124.64,662.40 123.48,662.40 122.31,662.40 121.15,662.40 119.99,662.40 118.82,662.40 117.66,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1196.09,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New Mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1145.14,117.01 L1187.70,117.01 M338.60,662.40 L338.60,254.61 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1119.97,662.40 L1119.97,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(596.25,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/generate_random_fr</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1,344 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L1254.82,644.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L81.53,644.40 '/> <g transform="translate(64.14,648.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,546.00 L1254.82,546.00 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,546.00 L81.53,546.00 '/> <g transform="translate(64.14,549.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,447.60 L1254.82,447.60 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,447.60 L81.53,447.60 '/> <g transform="translate(64.14,451.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,349.20 L1254.82,349.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,349.20 L81.53,349.20 '/> <g transform="translate(64.14,353.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,250.81 L1254.82,250.81 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,250.81 L81.53,250.81 '/> <g transform="translate(64.14,254.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,152.41 L1254.82,152.41 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,152.41 L81.53,152.41 '/> <g transform="translate(64.14,156.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,54.01 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,644.40 L72.53,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,644.40 L72.53,635.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M190.76,644.40 L190.76,99.01 M190.76,63.01 L190.76,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M190.76,644.40 L190.76,635.40 '/> <g transform="translate(190.76,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 10</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M308.99,644.40 L308.99,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M308.99,644.40 L308.99,635.40 '/> <g transform="translate(308.99,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M427.22,644.40 L427.22,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M427.22,644.40 L427.22,635.40 '/> <g transform="translate(427.22,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 30</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M545.45,644.40 L545.45,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M545.45,644.40 L545.45,635.40 '/> <g transform="translate(545.45,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M663.68,644.40 L663.68,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M663.68,644.40 L663.68,635.40 '/> <g transform="translate(663.68,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M781.90,644.40 L781.90,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M781.90,644.40 L781.90,635.40 '/> <g transform="translate(781.90,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M900.13,644.40 L900.13,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M900.13,644.40 L900.13,635.40 '/> <g transform="translate(900.13,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1018.36,644.40 L1018.36,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1018.36,644.40 L1018.36,635.40 '/> <g transform="translate(1018.36,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1136.59,644.40 L1136.59,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1136.59,644.40 L1136.59,635.40 '/> <g transform="translate(1136.59,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M1254.82,644.40 L1254.82,54.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1254.82,644.40 L1254.82,635.40 '/> <g transform="translate(1254.82,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,142.45 1195.71,141.62 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 72.53,644.40 72.53,644.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,644.40 1195.71,157.91 1195.71,157.25 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,75.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Base sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M89.31,72.01 L131.87,72.01 M72.53,644.40 L1195.71,142.07 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(140.26,93.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >New sample</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M89.31,90.01 L131.87,90.01 M72.53,644.40 L1195.71,157.59 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,644.40 L1254.82,644.40 L1254.82,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,349.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,693.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(663.67,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/generate_random_fr</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 24 KiB |
310
benchmarks/babyjubjub/generate_random_fr/report/change/mean.svg
Normal file
@@ -0,0 +1,310 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L81.53,662.40 '/> <g transform="translate(64.14,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,561.00 L81.53,561.00 '/> <g transform="translate(64.14,564.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,459.60 L81.53,459.60 '/> <g transform="translate(64.14,463.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,358.20 L81.53,358.20 '/> <g transform="translate(64.14,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 300</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,256.81 L81.53,256.81 '/> <g transform="translate(64.14,260.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,155.41 L81.53,155.41 '/> <g transform="translate(64.14,159.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M79.02,662.40 L79.02,653.40 '/> <g transform="translate(79.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M222.86,662.40 L222.86,653.40 '/> <g transform="translate(222.86,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M366.71,662.40 L366.71,653.40 '/> <g transform="translate(366.71,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M510.55,662.40 L510.55,653.40 '/> <g transform="translate(510.55,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M654.39,662.40 L654.39,653.40 '/> <g transform="translate(654.39,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M798.24,662.40 L798.24,653.40 '/> <g transform="translate(798.24,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-2.95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M942.08,662.40 L942.08,653.40 '/> <g transform="translate(942.08,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-2.9</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1010.90,662.40 L1010.90,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M72.53,627.76 L74.41,626.96 L76.29,626.15 L78.17,625.34 L80.05,624.52 L81.93,623.69
|
||||
L83.81,622.85 L85.69,622.00 L87.57,621.13 L89.45,620.25 L91.34,619.35 L93.22,618.43 L95.10,617.48 L96.98,616.52
|
||||
L98.86,615.53 L100.74,614.52 L102.62,613.48 L104.50,612.41 L106.38,611.32 L108.26,610.20 L110.14,609.05 L112.02,607.88
|
||||
L113.90,606.69 L115.78,605.47 L117.66,604.23 L119.54,602.97 L121.42,601.69 L123.30,600.39 L125.18,599.08 L127.06,597.76
|
||||
L128.95,596.42 L130.83,595.07 L132.71,593.70 L134.59,592.33 L136.47,590.95 L138.35,589.56 L140.23,588.16 L142.11,586.75
|
||||
L143.99,585.33 L145.87,583.90 L147.75,582.46 L149.63,581.01 L151.51,579.55 L153.39,578.07 L155.27,576.58 L157.15,575.08
|
||||
L159.03,573.55 L160.91,572.01 L162.79,570.45 L164.67,568.86 L166.56,567.25 L168.44,565.60 L170.32,563.93 L172.20,562.22
|
||||
L174.08,560.47 L175.96,558.68 L177.84,556.85 L179.72,554.98 L181.60,553.06 L183.48,551.10 L185.36,549.09 L187.24,547.04
|
||||
L189.12,544.95 L191.00,542.82 L192.88,540.65 L194.76,538.46 L196.64,536.24 L198.52,533.99 L200.40,531.74 L202.28,529.46
|
||||
L204.17,527.19 L206.05,524.91 L207.93,522.63 L209.81,520.35 L211.69,518.07 L213.57,515.81 L215.45,513.55 L217.33,511.29
|
||||
L219.21,509.03 L221.09,506.78 L222.97,504.52 L224.85,502.25 L226.73,499.97 L228.61,497.67 L230.49,495.35 L232.37,493.00
|
||||
L234.25,490.62 L236.13,488.21 L238.01,485.75 L239.89,483.24 L241.78,480.69 L243.66,478.09 L245.54,475.43 L247.42,472.73
|
||||
L249.30,469.97 L251.18,467.16 L253.06,464.30 L254.94,461.40 L256.82,458.45 L258.70,455.47 L260.58,452.44 L262.46,449.39
|
||||
L264.34,446.30 L266.22,443.20 L268.10,440.07 L269.98,436.93 L271.86,433.78 L273.74,430.62 L275.62,427.45 L277.50,424.27
|
||||
L279.39,421.09 L281.27,417.90 L283.15,414.71 L285.03,411.50 L286.91,408.29 L288.79,405.06 L290.67,401.82 L292.55,398.56
|
||||
L294.43,395.27 L296.31,391.95 L298.19,388.61 L300.07,385.23 L301.95,381.82 L303.83,378.37 L305.71,374.88 L307.59,371.35
|
||||
L309.47,367.77 L311.35,364.17 L313.23,360.52 L315.11,356.84 L317.00,353.14 L318.88,349.40 L320.76,345.65 L322.64,341.88
|
||||
L324.52,338.10 L326.40,334.33 L328.28,330.55 L330.16,326.79 L332.04,323.05 L333.92,319.33 L335.80,315.65 L337.68,312.00
|
||||
L339.56,308.40 L341.44,304.84 L343.32,301.34 L345.20,297.89 L347.08,294.50 L348.96,291.17 L350.84,287.90 L352.72,284.69
|
||||
L354.61,281.53 L356.49,278.43 L358.37,275.38 L360.25,272.38 L362.13,269.42 L364.01,266.49 L365.89,263.60 L367.77,260.72
|
||||
L369.65,257.86 L371.53,255.01 L373.41,252.16 L375.29,249.30 L377.17,246.42 L379.05,243.52 L380.93,240.58 L382.81,237.61
|
||||
L384.69,234.59 L386.57,231.53 L388.45,228.40 L390.33,225.22 L392.22,221.98 L394.10,218.68 L395.98,215.31 L397.86,211.89
|
||||
L399.74,208.40 L401.62,204.87 L403.50,201.29 L405.38,197.68 L407.26,194.04 L409.14,190.39 L411.02,186.73 L412.90,183.08
|
||||
L414.78,179.45 L416.66,175.86 L418.54,172.31 L420.42,168.83 L422.30,165.41 L424.18,162.07 L426.06,158.82 L427.94,155.67
|
||||
L429.83,152.60 L431.71,149.64 L433.59,146.77 L435.47,144.00 L437.35,141.33 L439.23,138.73 L441.11,136.22 L442.99,133.77
|
||||
L444.87,131.40 L446.75,129.07 L448.63,126.79 L450.51,124.56 L452.39,122.36 L454.27,120.19 L456.15,118.04 L458.03,115.92
|
||||
L459.91,113.82 L461.79,111.75 L463.67,109.70 L465.55,107.69 L467.44,105.71 L469.32,103.77 L471.20,101.87 L473.08,100.03
|
||||
L474.96,98.24 L476.84,96.51 L478.72,94.85 L480.60,93.25 L482.48,91.73 L484.36,90.28 L486.24,88.90 L488.12,87.59
|
||||
L490.00,86.36 L491.88,85.19 L493.76,84.10 L495.64,83.07 L497.52,82.11 L499.40,81.21 L501.28,80.36 L503.16,79.58
|
||||
L505.05,78.85 L506.93,78.18 L508.81,77.55 L510.69,76.98 L512.57,76.46 L514.45,75.98 L516.33,75.55 L518.21,75.17
|
||||
L520.09,74.84 L521.97,74.54 L523.85,74.29 L525.73,74.09 L527.61,73.92 L529.49,73.80 L531.37,73.71 L533.25,73.66
|
||||
L535.13,73.65 L537.01,73.68 L538.89,73.75 L540.77,73.85 L542.66,73.99 L544.54,74.17 L546.42,74.39 L548.30,74.65
|
||||
L550.18,74.96 L552.06,75.31 L553.94,75.71 L555.82,76.16 L557.70,76.65 L559.58,77.20 L561.46,77.81 L563.34,78.46
|
||||
L565.22,79.18 L567.10,79.94 L568.98,80.75 L570.86,81.62 L572.74,82.53 L574.62,83.49 L576.50,84.49 L578.38,85.53
|
||||
L580.27,86.59 L582.15,87.69 L584.03,88.81 L585.91,89.96 L587.79,91.12 L589.67,92.30 L591.55,93.50 L593.43,94.71
|
||||
L595.31,95.93 L597.19,97.17 L599.07,98.43 L600.95,99.71 L602.83,101.00 L604.71,102.33 L606.59,103.68 L608.47,105.07
|
||||
L610.35,106.50 L612.23,107.97 L614.11,109.49 L615.99,111.05 L617.88,112.66 L619.76,114.34 L621.64,116.06 L623.52,117.85
|
||||
L625.40,119.70 L627.28,121.61 L629.16,123.58 L631.04,125.62 L632.92,127.73 L634.80,129.90 L636.68,132.15 L638.56,134.47
|
||||
L640.44,136.86 L642.32,139.33 L644.20,141.87 L646.08,144.49 L647.96,147.19 L649.84,149.96 L651.72,152.82 L653.60,155.74
|
||||
L655.49,158.75 L657.37,161.82 L659.25,164.95 L661.13,168.15 L663.01,171.40 L664.89,174.69 L666.77,178.03 L668.65,181.40
|
||||
L670.53,184.79 L672.41,188.19 L674.29,191.61 L676.17,195.02 L678.05,198.42 L679.93,201.81 L681.81,205.17 L683.69,208.51
|
||||
L685.57,211.81 L687.45,215.08 L689.33,218.32 L691.21,221.52 L693.10,224.68 L694.98,227.80 L696.86,230.89 L698.74,233.96
|
||||
L700.62,237.00 L702.50,240.02 L704.38,243.02 L706.26,246.02 L708.14,249.02 L710.02,252.01 L711.90,255.02 L713.78,258.03
|
||||
L715.66,261.07 L717.54,264.12 L719.42,267.20 L721.30,270.31 L723.18,273.44 L725.06,276.61 L726.94,279.80 L728.82,283.03
|
||||
L730.71,286.29 L732.59,289.58 L734.47,292.89 L736.35,296.24 L738.23,299.60 L740.11,303.00 L741.99,306.41 L743.87,309.84
|
||||
L745.75,313.30 L747.63,316.77 L749.51,320.25 L751.39,323.75 L753.27,327.26 L755.15,330.78 L757.03,334.32 L758.91,337.86
|
||||
L760.79,341.41 L762.67,344.97 L764.55,348.53 L766.43,352.11 L768.32,355.69 L770.20,359.27 L772.08,362.86 L773.96,366.46
|
||||
L775.84,370.05 L777.72,373.65 L779.60,377.25 L781.48,380.85 L783.36,384.44 L785.24,388.03 L787.12,391.61 L789.00,395.19
|
||||
L790.88,398.75 L792.76,402.29 L794.64,405.82 L796.52,409.33 L798.40,412.81 L800.28,416.27 L802.16,419.70 L804.04,423.09
|
||||
L805.93,426.45 L807.81,429.77 L809.69,433.05 L811.57,436.29 L813.45,439.49 L815.33,442.63 L817.21,445.74 L819.09,448.79
|
||||
L820.97,451.80 L822.85,454.75 L824.73,457.66 L826.61,460.51 L828.49,463.32 L830.37,466.07 L832.25,468.78 L834.13,471.44
|
||||
L836.01,474.05 L837.89,476.61 L839.77,479.13 L841.65,481.61 L843.54,484.05 L845.42,486.45 L847.30,488.82 L849.18,491.16
|
||||
L851.06,493.47 L852.94,495.76 L854.82,498.03 L856.70,500.28 L858.58,502.52 L860.46,504.76 L862.34,506.99 L864.22,509.22
|
||||
L866.10,511.45 L867.98,513.68 L869.86,515.91 L871.74,518.15 L873.62,520.39 L875.50,522.64 L877.38,524.89 L879.26,527.14
|
||||
L881.15,529.39 L883.03,531.64 L884.91,533.88 L886.79,536.12 L888.67,538.34 L890.55,540.55 L892.43,542.74 L894.31,544.90
|
||||
L896.19,547.05 L898.07,549.16 L899.95,551.25 L901.83,553.30 L903.71,555.32 L905.59,557.30 L907.47,559.24 L909.35,561.15
|
||||
L911.23,563.01 L913.11,564.83 L914.99,566.60 L916.87,568.34 L918.76,570.04 L920.64,571.70 L922.52,573.32 L924.40,574.90
|
||||
L926.28,576.46 L928.16,577.98 L930.04,579.47 L931.92,580.94 L933.80,582.38 L935.68,583.80 L937.56,585.20 L939.44,586.58
|
||||
L941.32,587.95 L943.20,589.29 L945.08,590.63 L946.96,591.94 L948.84,593.24 L950.72,594.53 L952.60,595.80 L954.48,597.06
|
||||
L956.37,598.30 L958.25,599.53 L960.13,600.74 L962.01,601.93 L963.89,603.10 L965.77,604.26 L967.65,605.39 L969.53,606.51
|
||||
L971.41,607.61 L973.29,608.69 L975.17,609.75 L977.05,610.80 L978.93,611.83 L980.81,612.84 L982.69,613.84 L984.57,614.82
|
||||
L986.45,615.79 L988.33,616.75 L990.21,617.69 L992.09,618.62 L993.98,619.54 L995.86,620.45 L997.74,621.34 L999.62,622.23
|
||||
L1001.50,623.10 L1003.38,623.96 L1005.26,624.81 L1007.14,625.65 L1009.02,626.47 L1010.90,627.28 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '159.03,573.55 160.91,572.01 162.79,570.45 164.67,568.86 166.56,567.25 168.44,565.60 170.32,563.93 172.20,562.22 174.08,560.47 175.96,558.68 177.84,556.85 179.72,554.98 181.60,553.06 183.48,551.10 185.36,549.09 187.24,547.04
|
||||
189.12,544.95 191.00,542.82 192.88,540.65 194.76,538.46 196.64,536.24 198.52,533.99 200.40,531.74 202.28,529.46 204.17,527.19 206.05,524.91 207.93,522.63 209.81,520.35 211.69,518.07 213.57,515.81 215.45,513.55 217.33,511.29
|
||||
219.21,509.03 221.09,506.78 222.97,504.52 224.85,502.25 226.73,499.97 228.61,497.67 230.49,495.35 232.37,493.00 234.25,490.62 236.13,488.21 238.01,485.75 239.89,483.24 241.78,480.69 243.66,478.09 245.54,475.43 247.42,472.73
|
||||
249.30,469.97 251.18,467.16 253.06,464.30 254.94,461.40 256.82,458.45 258.70,455.47 260.58,452.44 262.46,449.39 264.34,446.30 266.22,443.20 268.10,440.07 269.98,436.93 271.86,433.78 273.74,430.62 275.62,427.45 277.50,424.27
|
||||
279.39,421.09 281.27,417.90 283.15,414.71 285.03,411.50 286.91,408.29 288.79,405.06 290.67,401.82 292.55,398.56 294.43,395.27 296.31,391.95 298.19,388.61 300.07,385.23 301.95,381.82 303.83,378.37 305.71,374.88 307.59,371.35
|
||||
309.47,367.77 311.35,364.17 313.23,360.52 315.11,356.84 317.00,353.14 318.88,349.40 320.76,345.65 322.64,341.88 324.52,338.10 326.40,334.33 328.28,330.55 330.16,326.79 332.04,323.05 333.92,319.33 335.80,315.65 337.68,312.00
|
||||
339.56,308.40 341.44,304.84 343.32,301.34 345.20,297.89 347.08,294.50 348.96,291.17 350.84,287.90 352.72,284.69 354.61,281.53 356.49,278.43 358.37,275.38 360.25,272.38 362.13,269.42 364.01,266.49 365.89,263.60 367.77,260.72
|
||||
369.65,257.86 371.53,255.01 373.41,252.16 375.29,249.30 377.17,246.42 379.05,243.52 380.93,240.58 382.81,237.61 384.69,234.59 386.57,231.53 388.45,228.40 390.33,225.22 392.22,221.98 394.10,218.68 395.98,215.31 397.86,211.89
|
||||
399.74,208.40 401.62,204.87 403.50,201.29 405.38,197.68 407.26,194.04 409.14,190.39 411.02,186.73 412.90,183.08 414.78,179.45 416.66,175.86 418.54,172.31 420.42,168.83 422.30,165.41 424.18,162.07 426.06,158.82 427.94,155.67
|
||||
429.83,152.60 431.71,149.64 433.59,146.77 435.47,144.00 437.35,141.33 439.23,138.73 441.11,136.22 442.99,133.77 444.87,131.40 446.75,129.07 448.63,126.79 450.51,124.56 452.39,122.36 454.27,120.19 456.15,118.04 458.03,115.92
|
||||
459.91,113.82 461.79,111.75 463.67,109.70 465.55,107.69 467.44,105.71 469.32,103.77 471.20,101.87 473.08,100.03 474.96,98.24 476.84,96.51 478.72,94.85 480.60,93.25 482.48,91.73 484.36,90.28 486.24,88.90 488.12,87.59
|
||||
490.00,86.36 491.88,85.19 493.76,84.10 495.64,83.07 497.52,82.11 499.40,81.21 501.28,80.36 503.16,79.58 505.05,78.85 506.93,78.18 508.81,77.55 510.69,76.98 512.57,76.46 514.45,75.98 516.33,75.55 518.21,75.17
|
||||
520.09,74.84 521.97,74.54 523.85,74.29 525.73,74.09 527.61,73.92 529.49,73.80 531.37,73.71 533.25,73.66 535.13,73.65 537.01,73.68 538.89,73.75 540.77,73.85 542.66,73.99 544.54,74.17 546.42,74.39 548.30,74.65
|
||||
550.18,74.96 552.06,75.31 553.94,75.71 555.82,76.16 557.70,76.65 559.58,77.20 561.46,77.81 563.34,78.46 565.22,79.18 567.10,79.94 568.98,80.75 570.86,81.62 572.74,82.53 574.62,83.49 576.50,84.49 578.38,85.53
|
||||
580.27,86.59 582.15,87.69 584.03,88.81 585.91,89.96 587.79,91.12 589.67,92.30 591.55,93.50 593.43,94.71 595.31,95.93 597.19,97.17 599.07,98.43 600.95,99.71 602.83,101.00 604.71,102.33 606.59,103.68 608.47,105.07
|
||||
610.35,106.50 612.23,107.97 614.11,109.49 615.99,111.05 617.88,112.66 619.76,114.34 621.64,116.06 623.52,117.85 625.40,119.70 627.28,121.61 629.16,123.58 631.04,125.62 632.92,127.73 634.80,129.90 636.68,132.15 638.56,134.47
|
||||
640.44,136.86 642.32,139.33 644.20,141.87 646.08,144.49 647.96,147.19 649.84,149.96 651.72,152.82 653.60,155.74 655.49,158.75 657.37,161.82 659.25,164.95 661.13,168.15 663.01,171.40 664.89,174.69 666.77,178.03 668.65,181.40
|
||||
670.53,184.79 672.41,188.19 674.29,191.61 676.17,195.02 678.05,198.42 679.93,201.81 681.81,205.17 683.69,208.51 685.57,211.81 687.45,215.08 689.33,218.32 691.21,221.52 693.10,224.68 694.98,227.80 696.86,230.89 698.74,233.96
|
||||
700.62,237.00 702.50,240.02 704.38,243.02 706.26,246.02 708.14,249.02 710.02,252.01 711.90,255.02 713.78,258.03 715.66,261.07 717.54,264.12 719.42,267.20 721.30,270.31 723.18,273.44 725.06,276.61 726.94,279.80 728.82,283.03
|
||||
730.71,286.29 732.59,289.58 734.47,292.89 736.35,296.24 738.23,299.60 740.11,303.00 741.99,306.41 743.87,309.84 745.75,313.30 747.63,316.77 749.51,320.25 751.39,323.75 753.27,327.26 755.15,330.78 757.03,334.32 758.91,337.86
|
||||
760.79,341.41 762.67,344.97 764.55,348.53 766.43,352.11 768.32,355.69 770.20,359.27 772.08,362.86 773.96,366.46 775.84,370.05 777.72,373.65 779.60,377.25 781.48,380.85 783.36,384.44 785.24,388.03 787.12,391.61 789.00,395.19
|
||||
790.88,398.75 792.76,402.29 794.64,405.82 796.52,409.33 798.40,412.81 800.28,416.27 802.16,419.70 804.04,423.09 805.93,426.45 807.81,429.77 809.69,433.05 811.57,436.29 813.45,439.49 815.33,442.63 817.21,445.74 819.09,448.79
|
||||
820.97,451.80 822.85,454.75 824.73,457.66 826.61,460.51 828.49,463.32 830.37,466.07 832.25,468.78 834.13,471.44 836.01,474.05 837.89,476.61 839.77,479.13 841.65,481.61 843.54,484.05 845.42,486.45 847.30,488.82 849.18,491.16
|
||||
851.06,493.47 852.94,495.76 854.82,498.03 856.70,500.28 858.58,502.52 860.46,504.76 862.34,506.99 864.22,509.22 866.10,511.45 867.98,513.68 869.86,515.91 871.74,518.15 873.62,520.39 875.50,522.64 877.38,524.89 879.26,527.14
|
||||
881.15,529.39 883.03,531.64 884.91,533.88 886.79,536.12 888.67,538.34 890.55,540.55 892.43,542.74 894.31,544.90 896.19,547.05 898.07,549.16 899.95,551.25 901.83,553.30 903.71,555.32 905.59,557.30 907.47,559.24 909.35,561.15
|
||||
911.23,563.01 913.11,564.83 914.99,566.60 916.87,568.34 918.76,570.04 920.64,571.70 922.52,573.32 922.52,662.40 920.64,662.40 918.76,662.40 916.87,662.40 914.99,662.40 913.11,662.40 911.23,662.40 909.35,662.40 907.47,662.40
|
||||
905.59,662.40 903.71,662.40 901.83,662.40 899.95,662.40 898.07,662.40 896.19,662.40 894.31,662.40 892.43,662.40 890.55,662.40 888.67,662.40 886.79,662.40 884.91,662.40 883.03,662.40 881.15,662.40 879.26,662.40 877.38,662.40
|
||||
875.50,662.40 873.62,662.40 871.74,662.40 869.86,662.40 867.98,662.40 866.10,662.40 864.22,662.40 862.34,662.40 860.46,662.40 858.58,662.40 856.70,662.40 854.82,662.40 852.94,662.40 851.06,662.40 849.18,662.40 847.30,662.40
|
||||
845.42,662.40 843.54,662.40 841.65,662.40 839.77,662.40 837.89,662.40 836.01,662.40 834.13,662.40 832.25,662.40 830.37,662.40 828.49,662.40 826.61,662.40 824.73,662.40 822.85,662.40 820.97,662.40 819.09,662.40 817.21,662.40
|
||||
815.33,662.40 813.45,662.40 811.57,662.40 809.69,662.40 807.81,662.40 805.93,662.40 804.04,662.40 802.16,662.40 800.28,662.40 798.40,662.40 796.52,662.40 794.64,662.40 792.76,662.40 790.88,662.40 789.00,662.40 787.12,662.40
|
||||
785.24,662.40 783.36,662.40 781.48,662.40 779.60,662.40 777.72,662.40 775.84,662.40 773.96,662.40 772.08,662.40 770.20,662.40 768.32,662.40 766.43,662.40 764.55,662.40 762.67,662.40 760.79,662.40 758.91,662.40 757.03,662.40
|
||||
755.15,662.40 753.27,662.40 751.39,662.40 749.51,662.40 747.63,662.40 745.75,662.40 743.87,662.40 741.99,662.40 740.11,662.40 738.23,662.40 736.35,662.40 734.47,662.40 732.59,662.40 730.71,662.40 728.82,662.40 726.94,662.40
|
||||
725.06,662.40 723.18,662.40 721.30,662.40 719.42,662.40 717.54,662.40 715.66,662.40 713.78,662.40 711.90,662.40 710.02,662.40 708.14,662.40 706.26,662.40 704.38,662.40 702.50,662.40 700.62,662.40 698.74,662.40 696.86,662.40
|
||||
694.98,662.40 693.10,662.40 691.21,662.40 689.33,662.40 687.45,662.40 685.57,662.40 683.69,662.40 681.81,662.40 679.93,662.40 678.05,662.40 676.17,662.40 674.29,662.40 672.41,662.40 670.53,662.40 668.65,662.40 666.77,662.40
|
||||
664.89,662.40 663.01,662.40 661.13,662.40 659.25,662.40 657.37,662.40 655.49,662.40 653.60,662.40 651.72,662.40 649.84,662.40 647.96,662.40 646.08,662.40 644.20,662.40 642.32,662.40 640.44,662.40 638.56,662.40 636.68,662.40
|
||||
634.80,662.40 632.92,662.40 631.04,662.40 629.16,662.40 627.28,662.40 625.40,662.40 623.52,662.40 621.64,662.40 619.76,662.40 617.88,662.40 615.99,662.40 614.11,662.40 612.23,662.40 610.35,662.40 608.47,662.40 606.59,662.40
|
||||
604.71,662.40 602.83,662.40 600.95,662.40 599.07,662.40 597.19,662.40 595.31,662.40 593.43,662.40 591.55,662.40 589.67,662.40 587.79,662.40 585.91,662.40 584.03,662.40 582.15,662.40 580.27,662.40 578.38,662.40 576.50,662.40
|
||||
574.62,662.40 572.74,662.40 570.86,662.40 568.98,662.40 567.10,662.40 565.22,662.40 563.34,662.40 561.46,662.40 559.58,662.40 557.70,662.40 555.82,662.40 553.94,662.40 552.06,662.40 550.18,662.40 548.30,662.40 546.42,662.40
|
||||
544.54,662.40 542.66,662.40 540.77,662.40 538.89,662.40 537.01,662.40 535.13,662.40 533.25,662.40 531.37,662.40 529.49,662.40 527.61,662.40 525.73,662.40 523.85,662.40 521.97,662.40 520.09,662.40 518.21,662.40 516.33,662.40
|
||||
514.45,662.40 512.57,662.40 510.69,662.40 508.81,662.40 506.93,662.40 505.05,662.40 503.16,662.40 501.28,662.40 499.40,662.40 497.52,662.40 495.64,662.40 493.76,662.40 491.88,662.40 490.00,662.40 488.12,662.40 486.24,662.40
|
||||
484.36,662.40 482.48,662.40 480.60,662.40 478.72,662.40 476.84,662.40 474.96,662.40 473.08,662.40 471.20,662.40 469.32,662.40 467.44,662.40 465.55,662.40 463.67,662.40 461.79,662.40 459.91,662.40 458.03,662.40 456.15,662.40
|
||||
454.27,662.40 452.39,662.40 450.51,662.40 448.63,662.40 446.75,662.40 444.87,662.40 442.99,662.40 441.11,662.40 439.23,662.40 437.35,662.40 435.47,662.40 433.59,662.40 431.71,662.40 429.83,662.40 427.94,662.40 426.06,662.40
|
||||
424.18,662.40 422.30,662.40 420.42,662.40 418.54,662.40 416.66,662.40 414.78,662.40 412.90,662.40 411.02,662.40 409.14,662.40 407.26,662.40 405.38,662.40 403.50,662.40 401.62,662.40 399.74,662.40 397.86,662.40 395.98,662.40
|
||||
394.10,662.40 392.22,662.40 390.33,662.40 388.45,662.40 386.57,662.40 384.69,662.40 382.81,662.40 380.93,662.40 379.05,662.40 377.17,662.40 375.29,662.40 373.41,662.40 371.53,662.40 369.65,662.40 367.77,662.40 365.89,662.40
|
||||
364.01,662.40 362.13,662.40 360.25,662.40 358.37,662.40 356.49,662.40 354.61,662.40 352.72,662.40 350.84,662.40 348.96,662.40 347.08,662.40 345.20,662.40 343.32,662.40 341.44,662.40 339.56,662.40 337.68,662.40 335.80,662.40
|
||||
333.92,662.40 332.04,662.40 330.16,662.40 328.28,662.40 326.40,662.40 324.52,662.40 322.64,662.40 320.76,662.40 318.88,662.40 317.00,662.40 315.11,662.40 313.23,662.40 311.35,662.40 309.47,662.40 307.59,662.40 305.71,662.40
|
||||
303.83,662.40 301.95,662.40 300.07,662.40 298.19,662.40 296.31,662.40 294.43,662.40 292.55,662.40 290.67,662.40 288.79,662.40 286.91,662.40 285.03,662.40 283.15,662.40 281.27,662.40 279.39,662.40 277.50,662.40 275.62,662.40
|
||||
273.74,662.40 271.86,662.40 269.98,662.40 268.10,662.40 266.22,662.40 264.34,662.40 262.46,662.40 260.58,662.40 258.70,662.40 256.82,662.40 254.94,662.40 253.06,662.40 251.18,662.40 249.30,662.40 247.42,662.40 245.54,662.40
|
||||
243.66,662.40 241.78,662.40 239.89,662.40 238.01,662.40 236.13,662.40 234.25,662.40 232.37,662.40 230.49,662.40 228.61,662.40 226.73,662.40 224.85,662.40 222.97,662.40 221.09,662.40 219.21,662.40 217.33,662.40 215.45,662.40
|
||||
213.57,662.40 211.69,662.40 209.81,662.40 207.93,662.40 206.05,662.40 204.17,662.40 202.28,662.40 200.40,662.40 198.52,662.40 196.64,662.40 194.76,662.40 192.88,662.40 191.00,662.40 189.12,662.40 187.24,662.40 185.36,662.40
|
||||
183.48,662.40 181.60,662.40 179.72,662.40 177.84,662.40 175.96,662.40 174.08,662.40 172.20,662.40 170.32,662.40 168.44,662.40 166.56,662.40 164.67,662.40 162.79,662.40 160.91,662.40 159.03,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M548.23,662.40 L548.23,74.65 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '541.71,54.01 541.71,54.01 541.71,662.40 541.71,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1010.90,662.40 L1010.90,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(541.71,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(541.71,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/generate_random_fr: mean</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 31 KiB |
@@ -0,0 +1,315 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,662.40 L81.53,662.40 '/> <g transform="translate(64.14,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,594.80 L81.53,594.80 '/> <g transform="translate(64.14,598.70)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,527.20 L81.53,527.20 '/> <g transform="translate(64.14,531.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 200</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,459.60 L81.53,459.60 '/> <g transform="translate(64.14,463.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 300</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,392.00 L81.53,392.00 '/> <g transform="translate(64.14,395.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 400</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,324.41 L81.53,324.41 '/> <g transform="translate(64.14,328.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 500</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,256.81 L81.53,256.81 '/> <g transform="translate(64.14,260.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 600</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,189.21 L81.53,189.21 '/> <g transform="translate(64.14,193.11)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 700</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,121.61 L81.53,121.61 '/> <g transform="translate(64.14,125.51)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 800</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L81.53,54.01 '/> <g transform="translate(64.14,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 900</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M170.12,662.40 L170.12,653.40 '/> <g transform="translate(170.12,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M340.84,662.40 L340.84,653.40 '/> <g transform="translate(340.84,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M511.56,662.40 L511.56,653.40 '/> <g transform="translate(511.56,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M682.28,662.40 L682.28,653.40 '/> <g transform="translate(682.28,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M853.00,662.40 L853.00,653.40 '/> <g transform="translate(853.00,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-2.95</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1010.90,662.40 L1010.90,54.01 L72.53,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Bootstrap distribution</title>
|
||||
<g fill="none" color="white" stroke="black" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Bootstrap distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,63.01 L1078.63,63.01 M72.53,635.54 L74.41,635.07 L76.29,634.61 L78.17,634.14 L80.05,633.68 L81.93,633.21
|
||||
L83.81,632.76 L85.69,632.30 L87.57,631.86 L89.45,631.42 L91.34,630.99 L93.22,630.57 L95.10,630.16 L96.98,629.76
|
||||
L98.86,629.37 L100.74,628.99 L102.62,628.62 L104.50,628.27 L106.38,627.92 L108.26,627.58 L110.14,627.25 L112.02,626.93
|
||||
L113.90,626.61 L115.78,626.29 L117.66,625.98 L119.54,625.66 L121.42,625.33 L123.30,625.00 L125.18,624.66 L127.06,624.30
|
||||
L128.95,623.93 L130.83,623.54 L132.71,623.13 L134.59,622.69 L136.47,622.23 L138.35,621.74 L140.23,621.22 L142.11,620.66
|
||||
L143.99,620.07 L145.87,619.45 L147.75,618.78 L149.63,618.07 L151.51,617.31 L153.39,616.51 L155.27,615.65 L157.15,614.75
|
||||
L159.03,613.80 L160.91,612.80 L162.79,611.75 L164.67,610.66 L166.56,609.52 L168.44,608.33 L170.32,607.12 L172.20,605.87
|
||||
L174.08,604.60 L175.96,603.31 L177.84,602.01 L179.72,600.71 L181.60,599.40 L183.48,598.11 L185.36,596.84 L187.24,595.58
|
||||
L189.12,594.35 L191.00,593.14 L192.88,591.96 L194.76,590.81 L196.64,589.68 L198.52,588.58 L200.40,587.49 L202.28,586.42
|
||||
L204.17,585.35 L206.05,584.28 L207.93,583.21 L209.81,582.12 L211.69,581.01 L213.57,579.87 L215.45,578.70 L217.33,577.49
|
||||
L219.21,576.24 L221.09,574.94 L222.97,573.60 L224.85,572.21 L226.73,570.78 L228.61,569.31 L230.49,567.80 L232.37,566.26
|
||||
L234.25,564.70 L236.13,563.12 L238.01,561.53 L239.89,559.95 L241.78,558.37 L243.66,556.80 L245.54,555.25 L247.42,553.73
|
||||
L249.30,552.23 L251.18,550.76 L253.06,549.33 L254.94,547.92 L256.82,546.54 L258.70,545.17 L260.58,543.82 L262.46,542.47
|
||||
L264.34,541.11 L266.22,539.73 L268.10,538.33 L269.98,536.88 L271.86,535.38 L273.74,533.82 L275.62,532.18 L277.50,530.47
|
||||
L279.39,528.68 L281.27,526.81 L283.15,524.86 L285.03,522.84 L286.91,520.74 L288.79,518.60 L290.67,516.41 L292.55,514.19
|
||||
L294.43,511.95 L296.31,509.73 L298.19,507.52 L300.07,505.35 L301.95,503.23 L303.83,501.18 L305.71,499.21 L307.59,497.32
|
||||
L309.47,495.51 L311.35,493.79 L313.23,492.16 L315.11,490.60 L317.00,489.10 L318.88,487.66 L320.76,486.24 L322.64,484.85
|
||||
L324.52,483.44 L326.40,482.01 L328.28,480.54 L330.16,479.01 L332.04,477.41 L333.92,475.71 L335.80,473.92 L337.68,472.03
|
||||
L339.56,470.04 L341.44,467.95 L343.32,465.76 L345.20,463.50 L347.08,461.16 L348.96,458.77 L350.84,456.34 L352.72,453.88
|
||||
L354.61,451.40 L356.49,448.92 L358.37,446.44 L360.25,443.98 L362.13,441.52 L364.01,439.07 L365.89,436.63 L367.77,434.18
|
||||
L369.65,431.71 L371.53,429.20 L373.41,426.65 L375.29,424.03 L377.17,421.33 L379.05,418.53 L380.93,415.63 L382.81,412.61
|
||||
L384.69,409.46 L386.57,406.19 L388.45,402.78 L390.33,399.26 L392.22,395.61 L394.10,391.85 L395.98,387.98 L397.86,384.03
|
||||
L399.74,380.00 L401.62,375.91 L403.50,371.76 L405.38,367.57 L407.26,363.34 L409.14,359.08 L411.02,354.80 L412.90,350.49
|
||||
L414.78,346.16 L416.66,341.79 L418.54,337.37 L420.42,332.90 L422.30,328.36 L424.18,323.73 L426.06,318.99 L427.94,314.12
|
||||
L429.83,309.10 L431.71,303.89 L433.59,298.48 L435.47,292.85 L437.35,286.97 L439.23,280.82 L441.11,274.40 L442.99,267.69
|
||||
L444.87,260.69 L446.75,253.41 L448.63,245.87 L450.51,238.07 L452.39,230.05 L454.27,221.84 L456.15,213.49 L458.03,205.05
|
||||
L459.91,196.57 L461.79,188.12 L463.67,179.74 L465.55,171.51 L467.44,163.47 L469.32,155.70 L471.20,148.23 L473.08,141.11
|
||||
L474.96,134.37 L476.84,128.06 L478.72,122.18 L480.60,116.75 L482.48,111.77 L484.36,107.24 L486.24,103.15 L488.12,99.48
|
||||
L490.00,96.20 L491.88,93.30 L493.76,90.74 L495.64,88.49 L497.52,86.52 L499.40,84.79 L501.28,83.27 L503.16,81.93
|
||||
L505.05,80.73 L506.93,79.64 L508.81,78.63 L510.69,77.67 L512.57,76.72 L514.45,75.78 L516.33,74.80 L518.21,73.78
|
||||
L520.09,72.69 L521.97,71.53 L523.85,70.30 L525.73,69.00 L527.61,67.64 L529.49,66.22 L531.37,64.78 L533.25,63.34
|
||||
L535.13,61.93 L537.01,60.57 L538.89,59.31 L540.77,58.18 L542.66,57.20 L544.54,56.41 L546.42,55.84 L548.30,55.50
|
||||
L550.18,55.40 L552.06,55.55 L553.94,55.96 L555.82,56.62 L557.70,57.53 L559.58,58.67 L561.46,60.04 L563.34,61.62
|
||||
L565.22,63.41 L567.10,65.40 L568.98,67.58 L570.86,69.97 L572.74,72.56 L574.62,75.35 L576.50,78.37 L578.38,81.63
|
||||
L580.27,85.14 L582.15,88.91 L584.03,92.94 L585.91,97.26 L587.79,101.85 L589.67,106.70 L591.55,111.81 L593.43,117.16
|
||||
L595.31,122.70 L597.19,128.41 L599.07,134.24 L600.95,140.14 L602.83,146.07 L604.71,151.97 L606.59,157.78 L608.47,163.46
|
||||
L610.35,168.96 L612.23,174.24 L614.11,179.26 L615.99,183.99 L617.88,188.43 L619.76,192.55 L621.64,196.36 L623.52,199.86
|
||||
L625.40,203.07 L627.28,206.01 L629.16,208.70 L631.04,211.18 L632.92,213.47 L634.80,215.61 L636.68,217.65 L638.56,219.60
|
||||
L640.44,221.52 L642.32,223.43 L644.20,225.37 L646.08,227.36 L647.96,229.42 L649.84,231.59 L651.72,233.88 L653.60,236.32
|
||||
L655.49,238.90 L657.37,241.65 L659.25,244.57 L661.13,247.66 L663.01,250.93 L664.89,254.37 L666.77,257.97 L668.65,261.73
|
||||
L670.53,265.63 L672.41,269.65 L674.29,273.79 L676.17,278.00 L678.05,282.29 L679.93,286.61 L681.81,290.95 L683.69,295.30
|
||||
L685.57,299.62 L687.45,303.92 L689.33,308.17 L691.21,312.37 L693.10,316.51 L694.98,320.60 L696.86,324.64 L698.74,328.64
|
||||
L700.62,332.61 L702.50,336.55 L704.38,340.47 L706.26,344.39 L708.14,348.32 L710.02,352.25 L711.90,356.19 L713.78,360.14
|
||||
L715.66,364.10 L717.54,368.04 L719.42,371.97 L721.30,375.87 L723.18,379.71 L725.06,383.50 L726.94,387.20 L728.82,390.82
|
||||
L730.71,394.32 L732.59,397.72 L734.47,400.99 L736.35,404.15 L738.23,407.19 L740.11,410.11 L741.99,412.92 L743.87,415.64
|
||||
L745.75,418.27 L747.63,420.81 L749.51,423.29 L751.39,425.72 L753.27,428.09 L755.15,430.41 L757.03,432.70 L758.91,434.95
|
||||
L760.79,437.17 L762.67,439.36 L764.55,441.52 L766.43,443.64 L768.32,445.74 L770.20,447.82 L772.08,449.88 L773.96,451.92
|
||||
L775.84,453.96 L777.72,456.00 L779.60,458.05 L781.48,460.12 L783.36,462.22 L785.24,464.36 L787.12,466.53 L789.00,468.75
|
||||
L790.88,471.01 L792.76,473.31 L794.64,475.65 L796.52,478.02 L798.40,480.40 L800.28,482.78 L802.16,485.15 L804.04,487.48
|
||||
L805.93,489.75 L807.81,491.96 L809.69,494.09 L811.57,496.12 L813.45,498.04 L815.33,499.84 L817.21,501.53 L819.09,503.11
|
||||
L820.97,504.59 L822.85,505.97 L824.73,507.27 L826.61,508.50 L828.49,509.70 L830.37,510.86 L832.25,512.03 L834.13,513.21
|
||||
L836.01,514.42 L837.89,515.68 L839.77,516.99 L841.65,518.37 L843.54,519.82 L845.42,521.34 L847.30,522.93 L849.18,524.58
|
||||
L851.06,526.29 L852.94,528.04 L854.82,529.83 L856.70,531.65 L858.58,533.49 L860.46,535.34 L862.34,537.20 L864.22,539.07
|
||||
L866.10,540.93 L867.98,542.79 L869.86,544.65 L871.74,546.51 L873.62,548.37 L875.50,550.24 L877.38,552.12 L879.26,554.00
|
||||
L881.15,555.89 L883.03,557.79 L884.91,559.70 L886.79,561.61 L888.67,563.52 L890.55,565.42 L892.43,567.31 L894.31,569.18
|
||||
L896.19,571.03 L898.07,572.85 L899.95,574.64 L901.83,576.39 L903.71,578.11 L905.59,579.78 L907.47,581.42 L909.35,583.01
|
||||
L911.23,584.55 L913.11,586.06 L914.99,587.53 L916.87,588.95 L918.76,590.34 L920.64,591.69 L922.52,593.00 L924.40,594.27
|
||||
L926.28,595.51 L928.16,596.71 L930.04,597.87 L931.92,599.01 L933.80,600.11 L935.68,601.18 L937.56,602.23 L939.44,603.25
|
||||
L941.32,604.25 L943.20,605.24 L945.08,606.22 L946.96,607.18 L948.84,608.15 L950.72,609.12 L952.60,610.09 L954.48,611.07
|
||||
L956.37,612.07 L958.25,613.07 L960.13,614.10 L962.01,615.13 L963.89,616.18 L965.77,617.24 L967.65,618.31 L969.53,619.39
|
||||
L971.41,620.47 L973.29,621.55 L975.17,622.63 L977.05,623.70 L978.93,624.76 L980.81,625.80 L982.69,626.82 L984.57,627.82
|
||||
L986.45,628.80 L988.33,629.75 L990.21,630.67 L992.09,631.57 L993.98,632.43 L995.86,633.26 L997.74,634.07 L999.62,634.84
|
||||
L1001.50,635.57 L1003.38,636.28 L1005.26,636.94 L1007.14,637.58 L1009.02,638.18 L1010.90,638.74 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Confidence interval</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Confidence interval</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1036.07,85.51 1078.63,85.51 1078.63,76.51 1036.07,76.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '159.03,613.80 160.91,612.80 162.79,611.75 164.67,610.66 166.56,609.52 168.44,608.33 170.32,607.12 172.20,605.87 174.08,604.60 175.96,603.31 177.84,602.01 179.72,600.71 181.60,599.40 183.48,598.11 185.36,596.84 187.24,595.58
|
||||
189.12,594.35 191.00,593.14 192.88,591.96 194.76,590.81 196.64,589.68 198.52,588.58 200.40,587.49 202.28,586.42 204.17,585.35 206.05,584.28 207.93,583.21 209.81,582.12 211.69,581.01 213.57,579.87 215.45,578.70 217.33,577.49
|
||||
219.21,576.24 221.09,574.94 222.97,573.60 224.85,572.21 226.73,570.78 228.61,569.31 230.49,567.80 232.37,566.26 234.25,564.70 236.13,563.12 238.01,561.53 239.89,559.95 241.78,558.37 243.66,556.80 245.54,555.25 247.42,553.73
|
||||
249.30,552.23 251.18,550.76 253.06,549.33 254.94,547.92 256.82,546.54 258.70,545.17 260.58,543.82 262.46,542.47 264.34,541.11 266.22,539.73 268.10,538.33 269.98,536.88 271.86,535.38 273.74,533.82 275.62,532.18 277.50,530.47
|
||||
279.39,528.68 281.27,526.81 283.15,524.86 285.03,522.84 286.91,520.74 288.79,518.60 290.67,516.41 292.55,514.19 294.43,511.95 296.31,509.73 298.19,507.52 300.07,505.35 301.95,503.23 303.83,501.18 305.71,499.21 307.59,497.32
|
||||
309.47,495.51 311.35,493.79 313.23,492.16 315.11,490.60 317.00,489.10 318.88,487.66 320.76,486.24 322.64,484.85 324.52,483.44 326.40,482.01 328.28,480.54 330.16,479.01 332.04,477.41 333.92,475.71 335.80,473.92 337.68,472.03
|
||||
339.56,470.04 341.44,467.95 343.32,465.76 345.20,463.50 347.08,461.16 348.96,458.77 350.84,456.34 352.72,453.88 354.61,451.40 356.49,448.92 358.37,446.44 360.25,443.98 362.13,441.52 364.01,439.07 365.89,436.63 367.77,434.18
|
||||
369.65,431.71 371.53,429.20 373.41,426.65 375.29,424.03 377.17,421.33 379.05,418.53 380.93,415.63 382.81,412.61 384.69,409.46 386.57,406.19 388.45,402.78 390.33,399.26 392.22,395.61 394.10,391.85 395.98,387.98 397.86,384.03
|
||||
399.74,380.00 401.62,375.91 403.50,371.76 405.38,367.57 407.26,363.34 409.14,359.08 411.02,354.80 412.90,350.49 414.78,346.16 416.66,341.79 418.54,337.37 420.42,332.90 422.30,328.36 424.18,323.73 426.06,318.99 427.94,314.12
|
||||
429.83,309.10 431.71,303.89 433.59,298.48 435.47,292.85 437.35,286.97 439.23,280.82 441.11,274.40 442.99,267.69 444.87,260.69 446.75,253.41 448.63,245.87 450.51,238.07 452.39,230.05 454.27,221.84 456.15,213.49 458.03,205.05
|
||||
459.91,196.57 461.79,188.12 463.67,179.74 465.55,171.51 467.44,163.47 469.32,155.70 471.20,148.23 473.08,141.11 474.96,134.37 476.84,128.06 478.72,122.18 480.60,116.75 482.48,111.77 484.36,107.24 486.24,103.15 488.12,99.48
|
||||
490.00,96.20 491.88,93.30 493.76,90.74 495.64,88.49 497.52,86.52 499.40,84.79 501.28,83.27 503.16,81.93 505.05,80.73 506.93,79.64 508.81,78.63 510.69,77.67 512.57,76.72 514.45,75.78 516.33,74.80 518.21,73.78
|
||||
520.09,72.69 521.97,71.53 523.85,70.30 525.73,69.00 527.61,67.64 529.49,66.22 531.37,64.78 533.25,63.34 535.13,61.93 537.01,60.57 538.89,59.31 540.77,58.18 542.66,57.20 544.54,56.41 546.42,55.84 548.30,55.50
|
||||
550.18,55.40 552.06,55.55 553.94,55.96 555.82,56.62 557.70,57.53 559.58,58.67 561.46,60.04 563.34,61.62 565.22,63.41 567.10,65.40 568.98,67.58 570.86,69.97 572.74,72.56 574.62,75.35 576.50,78.37 578.38,81.63
|
||||
580.27,85.14 582.15,88.91 584.03,92.94 585.91,97.26 587.79,101.85 589.67,106.70 591.55,111.81 593.43,117.16 595.31,122.70 597.19,128.41 599.07,134.24 600.95,140.14 602.83,146.07 604.71,151.97 606.59,157.78 608.47,163.46
|
||||
610.35,168.96 612.23,174.24 614.11,179.26 615.99,183.99 617.88,188.43 619.76,192.55 621.64,196.36 623.52,199.86 625.40,203.07 627.28,206.01 629.16,208.70 631.04,211.18 632.92,213.47 634.80,215.61 636.68,217.65 638.56,219.60
|
||||
640.44,221.52 642.32,223.43 644.20,225.37 646.08,227.36 647.96,229.42 649.84,231.59 651.72,233.88 653.60,236.32 655.49,238.90 657.37,241.65 659.25,244.57 661.13,247.66 663.01,250.93 664.89,254.37 666.77,257.97 668.65,261.73
|
||||
670.53,265.63 672.41,269.65 674.29,273.79 676.17,278.00 678.05,282.29 679.93,286.61 681.81,290.95 683.69,295.30 685.57,299.62 687.45,303.92 689.33,308.17 691.21,312.37 693.10,316.51 694.98,320.60 696.86,324.64 698.74,328.64
|
||||
700.62,332.61 702.50,336.55 704.38,340.47 706.26,344.39 708.14,348.32 710.02,352.25 711.90,356.19 713.78,360.14 715.66,364.10 717.54,368.04 719.42,371.97 721.30,375.87 723.18,379.71 725.06,383.50 726.94,387.20 728.82,390.82
|
||||
730.71,394.32 732.59,397.72 734.47,400.99 736.35,404.15 738.23,407.19 740.11,410.11 741.99,412.92 743.87,415.64 745.75,418.27 747.63,420.81 749.51,423.29 751.39,425.72 753.27,428.09 755.15,430.41 757.03,432.70 758.91,434.95
|
||||
760.79,437.17 762.67,439.36 764.55,441.52 766.43,443.64 768.32,445.74 770.20,447.82 772.08,449.88 773.96,451.92 775.84,453.96 777.72,456.00 779.60,458.05 781.48,460.12 783.36,462.22 785.24,464.36 787.12,466.53 789.00,468.75
|
||||
790.88,471.01 792.76,473.31 794.64,475.65 796.52,478.02 798.40,480.40 800.28,482.78 802.16,485.15 804.04,487.48 805.93,489.75 807.81,491.96 809.69,494.09 811.57,496.12 813.45,498.04 815.33,499.84 817.21,501.53 819.09,503.11
|
||||
820.97,504.59 822.85,505.97 824.73,507.27 826.61,508.50 828.49,509.70 830.37,510.86 832.25,512.03 834.13,513.21 836.01,514.42 837.89,515.68 839.77,516.99 841.65,518.37 843.54,519.82 845.42,521.34 847.30,522.93 849.18,524.58
|
||||
851.06,526.29 852.94,528.04 854.82,529.83 856.70,531.65 858.58,533.49 860.46,535.34 862.34,537.20 864.22,539.07 866.10,540.93 867.98,542.79 869.86,544.65 871.74,546.51 873.62,548.37 875.50,550.24 877.38,552.12 879.26,554.00
|
||||
881.15,555.89 883.03,557.79 884.91,559.70 886.79,561.61 888.67,563.52 890.55,565.42 892.43,567.31 894.31,569.18 896.19,571.03 898.07,572.85 899.95,574.64 901.83,576.39 903.71,578.11 905.59,579.78 907.47,581.42 909.35,583.01
|
||||
911.23,584.55 913.11,586.06 914.99,587.53 916.87,588.95 918.76,590.34 920.64,591.69 922.52,593.00 922.52,662.40 920.64,662.40 918.76,662.40 916.87,662.40 914.99,662.40 913.11,662.40 911.23,662.40 909.35,662.40 907.47,662.40
|
||||
905.59,662.40 903.71,662.40 901.83,662.40 899.95,662.40 898.07,662.40 896.19,662.40 894.31,662.40 892.43,662.40 890.55,662.40 888.67,662.40 886.79,662.40 884.91,662.40 883.03,662.40 881.15,662.40 879.26,662.40 877.38,662.40
|
||||
875.50,662.40 873.62,662.40 871.74,662.40 869.86,662.40 867.98,662.40 866.10,662.40 864.22,662.40 862.34,662.40 860.46,662.40 858.58,662.40 856.70,662.40 854.82,662.40 852.94,662.40 851.06,662.40 849.18,662.40 847.30,662.40
|
||||
845.42,662.40 843.54,662.40 841.65,662.40 839.77,662.40 837.89,662.40 836.01,662.40 834.13,662.40 832.25,662.40 830.37,662.40 828.49,662.40 826.61,662.40 824.73,662.40 822.85,662.40 820.97,662.40 819.09,662.40 817.21,662.40
|
||||
815.33,662.40 813.45,662.40 811.57,662.40 809.69,662.40 807.81,662.40 805.93,662.40 804.04,662.40 802.16,662.40 800.28,662.40 798.40,662.40 796.52,662.40 794.64,662.40 792.76,662.40 790.88,662.40 789.00,662.40 787.12,662.40
|
||||
785.24,662.40 783.36,662.40 781.48,662.40 779.60,662.40 777.72,662.40 775.84,662.40 773.96,662.40 772.08,662.40 770.20,662.40 768.32,662.40 766.43,662.40 764.55,662.40 762.67,662.40 760.79,662.40 758.91,662.40 757.03,662.40
|
||||
755.15,662.40 753.27,662.40 751.39,662.40 749.51,662.40 747.63,662.40 745.75,662.40 743.87,662.40 741.99,662.40 740.11,662.40 738.23,662.40 736.35,662.40 734.47,662.40 732.59,662.40 730.71,662.40 728.82,662.40 726.94,662.40
|
||||
725.06,662.40 723.18,662.40 721.30,662.40 719.42,662.40 717.54,662.40 715.66,662.40 713.78,662.40 711.90,662.40 710.02,662.40 708.14,662.40 706.26,662.40 704.38,662.40 702.50,662.40 700.62,662.40 698.74,662.40 696.86,662.40
|
||||
694.98,662.40 693.10,662.40 691.21,662.40 689.33,662.40 687.45,662.40 685.57,662.40 683.69,662.40 681.81,662.40 679.93,662.40 678.05,662.40 676.17,662.40 674.29,662.40 672.41,662.40 670.53,662.40 668.65,662.40 666.77,662.40
|
||||
664.89,662.40 663.01,662.40 661.13,662.40 659.25,662.40 657.37,662.40 655.49,662.40 653.60,662.40 651.72,662.40 649.84,662.40 647.96,662.40 646.08,662.40 644.20,662.40 642.32,662.40 640.44,662.40 638.56,662.40 636.68,662.40
|
||||
634.80,662.40 632.92,662.40 631.04,662.40 629.16,662.40 627.28,662.40 625.40,662.40 623.52,662.40 621.64,662.40 619.76,662.40 617.88,662.40 615.99,662.40 614.11,662.40 612.23,662.40 610.35,662.40 608.47,662.40 606.59,662.40
|
||||
604.71,662.40 602.83,662.40 600.95,662.40 599.07,662.40 597.19,662.40 595.31,662.40 593.43,662.40 591.55,662.40 589.67,662.40 587.79,662.40 585.91,662.40 584.03,662.40 582.15,662.40 580.27,662.40 578.38,662.40 576.50,662.40
|
||||
574.62,662.40 572.74,662.40 570.86,662.40 568.98,662.40 567.10,662.40 565.22,662.40 563.34,662.40 561.46,662.40 559.58,662.40 557.70,662.40 555.82,662.40 553.94,662.40 552.06,662.40 550.18,662.40 548.30,662.40 546.42,662.40
|
||||
544.54,662.40 542.66,662.40 540.77,662.40 538.89,662.40 537.01,662.40 535.13,662.40 533.25,662.40 531.37,662.40 529.49,662.40 527.61,662.40 525.73,662.40 523.85,662.40 521.97,662.40 520.09,662.40 518.21,662.40 516.33,662.40
|
||||
514.45,662.40 512.57,662.40 510.69,662.40 508.81,662.40 506.93,662.40 505.05,662.40 503.16,662.40 501.28,662.40 499.40,662.40 497.52,662.40 495.64,662.40 493.76,662.40 491.88,662.40 490.00,662.40 488.12,662.40 486.24,662.40
|
||||
484.36,662.40 482.48,662.40 480.60,662.40 478.72,662.40 476.84,662.40 474.96,662.40 473.08,662.40 471.20,662.40 469.32,662.40 467.44,662.40 465.55,662.40 463.67,662.40 461.79,662.40 459.91,662.40 458.03,662.40 456.15,662.40
|
||||
454.27,662.40 452.39,662.40 450.51,662.40 448.63,662.40 446.75,662.40 444.87,662.40 442.99,662.40 441.11,662.40 439.23,662.40 437.35,662.40 435.47,662.40 433.59,662.40 431.71,662.40 429.83,662.40 427.94,662.40 426.06,662.40
|
||||
424.18,662.40 422.30,662.40 420.42,662.40 418.54,662.40 416.66,662.40 414.78,662.40 412.90,662.40 411.02,662.40 409.14,662.40 407.26,662.40 405.38,662.40 403.50,662.40 401.62,662.40 399.74,662.40 397.86,662.40 395.98,662.40
|
||||
394.10,662.40 392.22,662.40 390.33,662.40 388.45,662.40 386.57,662.40 384.69,662.40 382.81,662.40 380.93,662.40 379.05,662.40 377.17,662.40 375.29,662.40 373.41,662.40 371.53,662.40 369.65,662.40 367.77,662.40 365.89,662.40
|
||||
364.01,662.40 362.13,662.40 360.25,662.40 358.37,662.40 356.49,662.40 354.61,662.40 352.72,662.40 350.84,662.40 348.96,662.40 347.08,662.40 345.20,662.40 343.32,662.40 341.44,662.40 339.56,662.40 337.68,662.40 335.80,662.40
|
||||
333.92,662.40 332.04,662.40 330.16,662.40 328.28,662.40 326.40,662.40 324.52,662.40 322.64,662.40 320.76,662.40 318.88,662.40 317.00,662.40 315.11,662.40 313.23,662.40 311.35,662.40 309.47,662.40 307.59,662.40 305.71,662.40
|
||||
303.83,662.40 301.95,662.40 300.07,662.40 298.19,662.40 296.31,662.40 294.43,662.40 292.55,662.40 290.67,662.40 288.79,662.40 286.91,662.40 285.03,662.40 283.15,662.40 281.27,662.40 279.39,662.40 277.50,662.40 275.62,662.40
|
||||
273.74,662.40 271.86,662.40 269.98,662.40 268.10,662.40 266.22,662.40 264.34,662.40 262.46,662.40 260.58,662.40 258.70,662.40 256.82,662.40 254.94,662.40 253.06,662.40 251.18,662.40 249.30,662.40 247.42,662.40 245.54,662.40
|
||||
243.66,662.40 241.78,662.40 239.89,662.40 238.01,662.40 236.13,662.40 234.25,662.40 232.37,662.40 230.49,662.40 228.61,662.40 226.73,662.40 224.85,662.40 222.97,662.40 221.09,662.40 219.21,662.40 217.33,662.40 215.45,662.40
|
||||
213.57,662.40 211.69,662.40 209.81,662.40 207.93,662.40 206.05,662.40 204.17,662.40 202.28,662.40 200.40,662.40 198.52,662.40 196.64,662.40 194.76,662.40 192.88,662.40 191.00,662.40 189.12,662.40 187.24,662.40 185.36,662.40
|
||||
183.48,662.40 181.60,662.40 179.72,662.40 177.84,662.40 175.96,662.40 174.08,662.40 172.20,662.40 170.32,662.40 168.44,662.40 166.56,662.40 164.67,662.40 162.79,662.40 160.91,662.40 159.03,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Point estimate</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,102.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Point estimate</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1036.07,99.01 L1078.63,99.01 M561.72,662.40 L561.72,60.26 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>Noise threshold</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1087.02,120.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >Noise threshold</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '1036.07,121.51 1078.63,121.51 1078.63,112.51 1036.07,112.51 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.100000' points = '541.72,54.01 541.72,54.01 541.72,662.40 541.72,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,54.01 L72.53,662.40 L1010.90,662.40 L1010.90,54.01 L72.53,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(541.71,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Relative change (%)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(541.71,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/generate_random_fr: median</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,265 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 1280 720"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="1280" height="720" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L89.92,662.40 '/> <g transform="translate(72.53,666.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,586.35 L89.92,586.35 '/> <g transform="translate(72.53,590.25)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,510.30 L89.92,510.30 '/> <g transform="translate(72.53,514.20)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,434.25 L89.92,434.25 '/> <g transform="translate(72.53,438.15)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,358.20 L89.92,358.20 '/> <g transform="translate(72.53,362.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.2</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,282.16 L89.92,282.16 '/> <g transform="translate(72.53,286.06)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.25</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,206.11 L89.92,206.11 '/> <g transform="translate(72.53,210.01)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.3</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,130.06 L89.92,130.06 '/> <g transform="translate(72.53,133.96)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.35</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L89.92,54.01 '/> <g transform="translate(72.53,57.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0.4</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,662.40 L80.92,653.40 '/> <g transform="translate(80.92,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-45</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M171.57,662.40 L171.57,653.40 '/> <g transform="translate(171.57,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M262.21,662.40 L262.21,653.40 '/> <g transform="translate(262.21,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-35</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M352.86,662.40 L352.86,653.40 '/> <g transform="translate(352.86,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-30</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M443.50,662.40 L443.50,653.40 '/> <g transform="translate(443.50,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-25</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M534.15,662.40 L534.15,653.40 '/> <g transform="translate(534.15,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M624.79,662.40 L624.79,653.40 '/> <g transform="translate(624.79,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-15</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M715.44,662.40 L715.44,653.40 '/> <g transform="translate(715.44,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-10</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M806.08,662.40 L806.08,653.40 '/> <g transform="translate(806.08,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >-5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M896.73,662.40 L896.73,653.40 '/> <g transform="translate(896.73,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M987.37,662.40 L987.37,653.40 '/> <g transform="translate(987.37,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 5</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M1078.02,662.40 L1078.02,653.40 '/> <g transform="translate(1078.02,684.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 10</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>t distribution</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,66.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t distribution</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '1103.19,67.51 1145.75,67.51 1145.75,58.51 1103.19,58.51 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '817.38,662.40 817.73,662.40 818.07,662.40 818.42,662.40 818.76,662.40 819.10,662.39 819.45,662.39 819.79,662.39 820.14,662.38 820.48,662.38 820.83,662.37 821.17,662.36 821.52,662.35 821.86,662.34 822.21,662.33 822.55,662.32
|
||||
822.90,662.31 823.24,662.30 823.58,662.28 823.93,662.26 824.27,662.24 824.62,662.22 824.96,662.18 825.31,662.14 825.65,662.10 826.00,662.04 826.34,661.98 826.69,661.91 827.03,661.84 827.37,661.77 827.72,661.70 828.06,661.63
|
||||
828.41,661.58 828.75,661.53 829.10,661.50 829.44,661.48 829.79,661.47 830.13,661.47 830.48,661.47 830.82,661.48 831.17,661.48 831.51,661.46 831.85,661.44 832.20,661.39 832.54,661.32 832.89,661.23 833.23,661.12 833.58,660.98
|
||||
833.92,660.83 834.27,660.65 834.61,660.47 834.96,660.27 835.30,660.07 835.64,659.86 835.99,659.64 836.33,659.42 836.68,659.19 837.02,658.96 837.37,658.71 837.71,658.45 838.06,658.18 838.40,657.88 838.75,657.56 839.09,657.23
|
||||
839.44,656.87 839.78,656.51 840.12,656.13 840.47,655.76 840.81,655.40 841.16,655.05 841.50,654.71 841.85,654.40 842.19,654.09 842.54,653.77 842.88,653.45 843.23,653.10 843.57,652.70 843.91,652.25 844.26,651.73 844.60,651.14
|
||||
844.95,650.50 845.29,649.79 845.64,649.05 845.98,648.27 846.33,647.49 846.67,646.70 847.02,645.91 847.36,645.12 847.71,644.32 848.05,643.51 848.39,642.65 848.74,641.75 849.08,640.77 849.43,639.72 849.77,638.59 850.12,637.38
|
||||
850.46,636.10 850.81,634.77 851.15,633.39 851.50,631.97 851.84,630.51 852.18,629.02 852.53,627.50 852.87,625.94 853.22,624.33 853.56,622.68 853.91,620.98 854.25,619.23 854.60,617.43 854.94,615.59 855.29,613.70 855.63,611.77
|
||||
855.98,609.77 856.32,607.72 856.66,605.59 857.01,603.38 857.35,601.08 857.70,598.70 858.04,596.22 858.39,593.67 858.73,591.04 859.08,588.33 859.42,585.57 859.77,582.73 860.11,579.83 860.45,576.86 860.80,573.80 861.14,570.66
|
||||
861.49,567.42 861.83,564.09 862.18,560.68 862.52,557.19 862.87,553.63 863.21,550.01 863.56,546.34 863.90,542.62 864.25,538.83 864.59,534.96 864.93,530.98 865.28,526.87 865.62,522.60 865.97,518.16 866.31,513.54 866.66,508.74
|
||||
867.00,503.78 867.35,498.69 867.69,493.50 868.04,488.24 868.38,482.93 868.72,477.60 869.07,472.24 869.41,466.84 869.76,461.37 870.10,455.82 870.45,450.13 870.79,444.29 871.14,438.27 871.48,432.07 871.83,425.67 872.17,419.11
|
||||
872.52,412.40 872.86,405.59 873.20,398.71 873.55,391.81 873.89,384.91 874.24,378.06 874.58,371.28 874.93,364.59 875.27,357.99 875.62,351.50 875.96,345.09 876.31,338.76 876.65,332.47 876.99,326.21 877.34,319.94 877.68,313.64
|
||||
878.03,307.28 878.37,300.87 878.72,294.39 879.06,287.88 879.41,281.36 879.75,274.86 880.10,268.42 880.44,262.05 880.79,255.77 881.13,249.58 881.47,243.46 881.82,237.38 882.16,231.28 882.51,225.13 882.85,218.88 883.20,212.48
|
||||
883.54,205.91 883.89,199.14 884.23,192.20 884.58,185.09 884.92,177.87 885.26,170.62 885.61,163.42 885.95,156.39 886.30,149.64 886.64,143.27 886.99,137.37 887.33,132.00 887.68,127.16 888.02,122.84 888.37,118.99 888.71,115.53
|
||||
889.06,112.37 889.40,109.42 889.74,106.59 890.09,103.79 890.43,100.98 890.78,98.12 891.12,95.18 891.47,92.17 891.81,89.08 892.16,85.95 892.50,82.81 892.85,79.69 893.19,76.64 893.53,73.70 893.88,70.92 894.22,68.35
|
||||
894.57,66.03 894.91,64.01 895.26,62.31 895.60,60.97 895.95,60.00 896.29,59.40 896.64,59.16 896.98,59.26 897.33,59.68 897.67,60.37 898.01,61.30 898.36,62.42 898.70,63.69 899.05,65.11 899.39,66.63 899.74,68.27
|
||||
900.08,70.01 900.43,71.86 900.77,73.84 901.12,75.95 901.46,78.22 901.80,80.66 902.15,83.29 902.49,86.11 902.84,89.14 903.18,92.40 903.53,95.89 903.87,99.64 904.22,103.66 904.56,107.96 904.91,112.58 905.25,117.51
|
||||
905.60,122.76 905.94,128.31 906.28,134.14 906.63,140.20 906.97,146.43 907.32,152.75 907.66,159.10 908.01,165.39 908.35,171.56 908.70,177.56 909.04,183.39 909.39,189.04 909.73,194.55 910.07,199.98 910.42,205.41 910.76,210.91
|
||||
911.11,216.58 911.45,222.47 911.80,228.63 912.14,235.09 912.49,241.83 912.83,248.84 913.18,256.05 913.52,263.41 913.87,270.84 914.21,278.27 914.55,285.64 914.90,292.91 915.24,300.05 915.59,307.05 915.93,313.93 916.28,320.74
|
||||
916.62,327.50 916.97,334.28 917.31,341.10 917.66,348.02 918.00,355.04 918.34,362.15 918.69,369.33 919.03,376.55 919.38,383.75 919.72,390.86 920.07,397.84 920.41,404.65 920.76,411.25 921.10,417.65 921.45,423.84 921.79,429.86
|
||||
922.14,435.74 922.48,441.51 922.82,447.21 923.17,452.88 923.51,458.52 923.86,464.16 924.20,469.78 924.55,475.37 924.89,480.92 925.24,486.41 925.58,491.82 925.93,497.14 926.27,502.36 926.61,507.47 926.96,512.46 927.30,517.32
|
||||
927.65,522.05 927.99,526.63 928.34,531.06 928.68,535.33 929.03,539.44 929.37,543.40 929.72,547.22 930.06,550.91 930.41,554.50 930.75,558.01 931.09,561.46 931.44,564.87 931.78,568.25 932.13,571.60 932.47,574.91 932.82,578.18
|
||||
933.16,581.40 933.51,584.53 933.85,587.58 934.20,590.53 934.54,593.36 934.88,596.07 935.23,598.66 935.57,601.12 935.92,603.47 936.26,605.70 936.61,607.84 936.95,609.87 937.30,611.83 937.64,613.71 937.99,615.53 938.33,617.30
|
||||
938.68,619.02 939.02,620.71 939.36,622.38 939.71,624.02 940.05,625.65 940.40,627.26 940.74,628.84 941.09,630.40 941.43,631.92 941.78,633.40 942.12,634.82 942.47,636.17 942.81,637.45 943.15,638.66 943.50,639.80 943.84,640.86
|
||||
944.19,641.84 944.53,642.76 944.88,643.63 945.22,644.44 945.57,645.22 945.91,645.97 946.26,646.69 946.60,647.41 946.95,648.13 947.29,648.84 947.63,649.56 947.98,650.28 948.32,650.99 948.67,651.70 949.01,652.38 949.36,653.05
|
||||
949.70,653.67 950.05,654.26 950.39,654.80 950.74,655.29 951.08,655.72 951.42,656.09 951.77,656.42 952.11,656.70 952.46,656.94 952.80,657.15 953.15,657.34 953.49,657.51 953.84,657.68 954.18,657.85 954.53,658.02 954.87,658.20
|
||||
955.22,658.38 955.56,658.57 955.90,658.76 956.25,658.95 956.59,659.12 956.94,659.29 957.28,659.44 957.63,659.58 957.97,659.70 958.32,659.81 958.66,659.90 959.01,659.99 959.35,660.06 959.69,660.14 960.04,660.21 960.38,660.28
|
||||
960.73,660.35 961.07,660.43 961.42,660.52 961.76,660.61 962.11,660.72 962.45,660.83 962.80,660.94 963.14,661.06 963.49,661.18 963.83,661.30 964.17,661.42 964.52,661.53 964.86,661.63 965.21,661.72 965.55,661.79 965.90,661.86
|
||||
966.24,661.92 966.59,661.96 966.93,662.00 967.28,662.03 967.62,662.05 967.96,662.07 968.31,662.08 968.65,662.09 969.00,662.10 969.34,662.10 969.69,662.11 970.03,662.13 970.38,662.14 970.72,662.15 971.07,662.17 971.41,662.19
|
||||
971.76,662.20 972.10,662.22 972.44,662.23 972.79,662.25 973.13,662.26 973.48,662.27 973.82,662.28 974.17,662.29 974.51,662.30 974.86,662.31 975.20,662.32 975.55,662.33 975.89,662.33 976.23,662.34 976.58,662.35 976.92,662.36
|
||||
977.27,662.37 977.61,662.37 977.96,662.38 978.30,662.38 978.65,662.39 978.99,662.39 979.34,662.39 979.68,662.39 980.03,662.39 980.37,662.38 980.71,662.38 981.06,662.37 981.40,662.37 981.75,662.36 982.09,662.36 982.44,662.35
|
||||
982.78,662.35 983.13,662.34 983.47,662.34 983.82,662.34 984.16,662.35 984.50,662.35 984.85,662.35 985.19,662.36 985.54,662.37 985.88,662.37 986.23,662.38 986.57,662.38 986.92,662.39 987.26,662.39 987.61,662.39 987.95,662.40
|
||||
988.30,662.40 988.64,662.40 988.98,662.40 989.33,662.40 989.33,662.40 988.98,662.40 988.64,662.40 988.30,662.40 987.95,662.40 987.61,662.40 987.26,662.40 986.92,662.40 986.57,662.40 986.23,662.40 985.88,662.40 985.54,662.40
|
||||
985.19,662.40 984.85,662.40 984.50,662.40 984.16,662.40 983.82,662.40 983.47,662.40 983.13,662.40 982.78,662.40 982.44,662.40 982.09,662.40 981.75,662.40 981.40,662.40 981.06,662.40 980.71,662.40 980.37,662.40 980.03,662.40
|
||||
979.68,662.40 979.34,662.40 978.99,662.40 978.65,662.40 978.30,662.40 977.96,662.40 977.61,662.40 977.27,662.40 976.92,662.40 976.58,662.40 976.23,662.40 975.89,662.40 975.55,662.40 975.20,662.40 974.86,662.40 974.51,662.40
|
||||
974.17,662.40 973.82,662.40 973.48,662.40 973.13,662.40 972.79,662.40 972.44,662.40 972.10,662.40 971.76,662.40 971.41,662.40 971.07,662.40 970.72,662.40 970.38,662.40 970.03,662.40 969.69,662.40 969.34,662.40 969.00,662.40
|
||||
968.65,662.40 968.31,662.40 967.96,662.40 967.62,662.40 967.28,662.40 966.93,662.40 966.59,662.40 966.24,662.40 965.90,662.40 965.55,662.40 965.21,662.40 964.86,662.40 964.52,662.40 964.17,662.40 963.83,662.40 963.49,662.40
|
||||
963.14,662.40 962.80,662.40 962.45,662.40 962.11,662.40 961.76,662.40 961.42,662.40 961.07,662.40 960.73,662.40 960.38,662.40 960.04,662.40 959.69,662.40 959.35,662.40 959.01,662.40 958.66,662.40 958.32,662.40 957.97,662.40
|
||||
957.63,662.40 957.28,662.40 956.94,662.40 956.59,662.40 956.25,662.40 955.90,662.40 955.56,662.40 955.22,662.40 954.87,662.40 954.53,662.40 954.18,662.40 953.84,662.40 953.49,662.40 953.15,662.40 952.80,662.40 952.46,662.40
|
||||
952.11,662.40 951.77,662.40 951.42,662.40 951.08,662.40 950.74,662.40 950.39,662.40 950.05,662.40 949.70,662.40 949.36,662.40 949.01,662.40 948.67,662.40 948.32,662.40 947.98,662.40 947.63,662.40 947.29,662.40 946.95,662.40
|
||||
946.60,662.40 946.26,662.40 945.91,662.40 945.57,662.40 945.22,662.40 944.88,662.40 944.53,662.40 944.19,662.40 943.84,662.40 943.50,662.40 943.15,662.40 942.81,662.40 942.47,662.40 942.12,662.40 941.78,662.40 941.43,662.40
|
||||
941.09,662.40 940.74,662.40 940.40,662.40 940.05,662.40 939.71,662.40 939.36,662.40 939.02,662.40 938.68,662.40 938.33,662.40 937.99,662.40 937.64,662.40 937.30,662.40 936.95,662.40 936.61,662.40 936.26,662.40 935.92,662.40
|
||||
935.57,662.40 935.23,662.40 934.88,662.40 934.54,662.40 934.20,662.40 933.85,662.40 933.51,662.40 933.16,662.40 932.82,662.40 932.47,662.40 932.13,662.40 931.78,662.40 931.44,662.40 931.09,662.40 930.75,662.40 930.41,662.40
|
||||
930.06,662.40 929.72,662.40 929.37,662.40 929.03,662.40 928.68,662.40 928.34,662.40 927.99,662.40 927.65,662.40 927.30,662.40 926.96,662.40 926.61,662.40 926.27,662.40 925.93,662.40 925.58,662.40 925.24,662.40 924.89,662.40
|
||||
924.55,662.40 924.20,662.40 923.86,662.40 923.51,662.40 923.17,662.40 922.82,662.40 922.48,662.40 922.14,662.40 921.79,662.40 921.45,662.40 921.10,662.40 920.76,662.40 920.41,662.40 920.07,662.40 919.72,662.40 919.38,662.40
|
||||
919.03,662.40 918.69,662.40 918.34,662.40 918.00,662.40 917.66,662.40 917.31,662.40 916.97,662.40 916.62,662.40 916.28,662.40 915.93,662.40 915.59,662.40 915.24,662.40 914.90,662.40 914.55,662.40 914.21,662.40 913.87,662.40
|
||||
913.52,662.40 913.18,662.40 912.83,662.40 912.49,662.40 912.14,662.40 911.80,662.40 911.45,662.40 911.11,662.40 910.76,662.40 910.42,662.40 910.07,662.40 909.73,662.40 909.39,662.40 909.04,662.40 908.70,662.40 908.35,662.40
|
||||
908.01,662.40 907.66,662.40 907.32,662.40 906.97,662.40 906.63,662.40 906.28,662.40 905.94,662.40 905.60,662.40 905.25,662.40 904.91,662.40 904.56,662.40 904.22,662.40 903.87,662.40 903.53,662.40 903.18,662.40 902.84,662.40
|
||||
902.49,662.40 902.15,662.40 901.80,662.40 901.46,662.40 901.12,662.40 900.77,662.40 900.43,662.40 900.08,662.40 899.74,662.40 899.39,662.40 899.05,662.40 898.70,662.40 898.36,662.40 898.01,662.40 897.67,662.40 897.33,662.40
|
||||
896.98,662.40 896.64,662.40 896.29,662.40 895.95,662.40 895.60,662.40 895.26,662.40 894.91,662.40 894.57,662.40 894.22,662.40 893.88,662.40 893.53,662.40 893.19,662.40 892.85,662.40 892.50,662.40 892.16,662.40 891.81,662.40
|
||||
891.47,662.40 891.12,662.40 890.78,662.40 890.43,662.40 890.09,662.40 889.74,662.40 889.40,662.40 889.06,662.40 888.71,662.40 888.37,662.40 888.02,662.40 887.68,662.40 887.33,662.40 886.99,662.40 886.64,662.40 886.30,662.40
|
||||
885.95,662.40 885.61,662.40 885.26,662.40 884.92,662.40 884.58,662.40 884.23,662.40 883.89,662.40 883.54,662.40 883.20,662.40 882.85,662.40 882.51,662.40 882.16,662.40 881.82,662.40 881.47,662.40 881.13,662.40 880.79,662.40
|
||||
880.44,662.40 880.10,662.40 879.75,662.40 879.41,662.40 879.06,662.40 878.72,662.40 878.37,662.40 878.03,662.40 877.68,662.40 877.34,662.40 876.99,662.40 876.65,662.40 876.31,662.40 875.96,662.40 875.62,662.40 875.27,662.40
|
||||
874.93,662.40 874.58,662.40 874.24,662.40 873.89,662.40 873.55,662.40 873.20,662.40 872.86,662.40 872.52,662.40 872.17,662.40 871.83,662.40 871.48,662.40 871.14,662.40 870.79,662.40 870.45,662.40 870.10,662.40 869.76,662.40
|
||||
869.41,662.40 869.07,662.40 868.72,662.40 868.38,662.40 868.04,662.40 867.69,662.40 867.35,662.40 867.00,662.40 866.66,662.40 866.31,662.40 865.97,662.40 865.62,662.40 865.28,662.40 864.93,662.40 864.59,662.40 864.25,662.40
|
||||
863.90,662.40 863.56,662.40 863.21,662.40 862.87,662.40 862.52,662.40 862.18,662.40 861.83,662.40 861.49,662.40 861.14,662.40 860.80,662.40 860.45,662.40 860.11,662.40 859.77,662.40 859.42,662.40 859.08,662.40 858.73,662.40
|
||||
858.39,662.40 858.04,662.40 857.70,662.40 857.35,662.40 857.01,662.40 856.66,662.40 856.32,662.40 855.98,662.40 855.63,662.40 855.29,662.40 854.94,662.40 854.60,662.40 854.25,662.40 853.91,662.40 853.56,662.40 853.22,662.40
|
||||
852.87,662.40 852.53,662.40 852.18,662.40 851.84,662.40 851.50,662.40 851.15,662.40 850.81,662.40 850.46,662.40 850.12,662.40 849.77,662.40 849.43,662.40 849.08,662.40 848.74,662.40 848.39,662.40 848.05,662.40 847.71,662.40
|
||||
847.36,662.40 847.02,662.40 846.67,662.40 846.33,662.40 845.98,662.40 845.64,662.40 845.29,662.40 844.95,662.40 844.60,662.40 844.26,662.40 843.91,662.40 843.57,662.40 843.23,662.40 842.88,662.40 842.54,662.40 842.19,662.40
|
||||
841.85,662.40 841.50,662.40 841.16,662.40 840.81,662.40 840.47,662.40 840.12,662.40 839.78,662.40 839.44,662.40 839.09,662.40 838.75,662.40 838.40,662.40 838.06,662.40 837.71,662.40 837.37,662.40 837.02,662.40 836.68,662.40
|
||||
836.33,662.40 835.99,662.40 835.64,662.40 835.30,662.40 834.96,662.40 834.61,662.40 834.27,662.40 833.92,662.40 833.58,662.40 833.23,662.40 832.89,662.40 832.54,662.40 832.20,662.40 831.85,662.40 831.51,662.40 831.17,662.40
|
||||
830.82,662.40 830.48,662.40 830.13,662.40 829.79,662.40 829.44,662.40 829.10,662.40 828.75,662.40 828.41,662.40 828.06,662.40 827.72,662.40 827.37,662.40 827.03,662.40 826.69,662.40 826.34,662.40 826.00,662.40 825.65,662.40
|
||||
825.31,662.40 824.96,662.40 824.62,662.40 824.27,662.40 823.93,662.40 823.58,662.40 823.24,662.40 822.90,662.40 822.55,662.40 822.21,662.40 821.86,662.40 821.52,662.40 821.17,662.40 820.83,662.40 820.48,662.40 820.14,662.40
|
||||
819.79,662.40 819.45,662.40 819.10,662.40 818.76,662.40 818.42,662.40 818.07,662.40 817.73,662.40 817.38,662.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>t statistic</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(1154.14,84.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="start">
|
||||
<text><tspan font-family="Helvetica" >t statistic</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M1103.19,81.01 L1145.75,81.01 M109.59,662.40 L109.59,54.01 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M80.92,54.01 L80.92,662.40 L1078.02,662.40 L1078.02,54.01 L80.92,54.01 Z '/> <g transform="translate(19.18,358.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,711.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >t score</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(579.47,30.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >babyjubjub/generate_random_fr: Welch t test</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 27 KiB |
203
benchmarks/babyjubjub/generate_random_fr/report/index.html
Normal file
@@ -0,0 +1,203 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>babyjubjub/generate_random_fr - Criterion.rs</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font: 14px Helvetica Neue;
|
||||
text-rendering: optimizelegibility;
|
||||
}
|
||||
|
||||
.body {
|
||||
width: 960px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 200
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding-right: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #1F78B4;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
th.ci-bound {
|
||||
opacity: 0.6
|
||||
}
|
||||
|
||||
td.ci-bound {
|
||||
opacity: 0.5
|
||||
}
|
||||
|
||||
.stats {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.additional_stats {
|
||||
flex: 0 0 60%
|
||||
}
|
||||
|
||||
.additional_plots {
|
||||
flex: 1
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 36px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer {
|
||||
height: 40px;
|
||||
background: #888;
|
||||
color: white;
|
||||
font-size: larger;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
text-align: center
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="body">
|
||||
<h2>babyjubjub/generate_random_fr</h2>
|
||||
<div class="absolute">
|
||||
<section class="plots">
|
||||
<table width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="pdf.svg">
|
||||
<img src="pdf_small.svg" alt="PDF of Slope" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="regression.svg">
|
||||
<img src="regression_small.svg" alt="Regression" width="450" height="300" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
<section class="stats">
|
||||
<div class="additional_stats">
|
||||
<h4>Additional Statistics:</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Lower bound</th>
|
||||
<th>Estimate</th>
|
||||
<th title="0.95 confidence level" class="ci-bound">Upper bound</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Slope</td>
|
||||
<td class="ci-bound">1.3173 µs</td>
|
||||
<td>1.3221 µs</td>
|
||||
<td class="ci-bound">1.3264 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>R²</td>
|
||||
<td class="ci-bound">0.9712549</td>
|
||||
<td>0.9729580</td>
|
||||
<td class="ci-bound">0.9715993</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mean</td>
|
||||
<td class="ci-bound">1.3058 µs</td>
|
||||
<td>1.3100 µs</td>
|
||||
<td class="ci-bound">1.3142 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Standard Deviation">Std. Dev.</td>
|
||||
<td class="ci-bound">19.068 ns</td>
|
||||
<td>21.606 ns</td>
|
||||
<td class="ci-bound">23.982 ns</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Median</td>
|
||||
<td class="ci-bound">1.3020 µs</td>
|
||||
<td>1.3140 µs</td>
|
||||
<td class="ci-bound">1.3181 µs</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td title="Median Absolute Deviation">MAD</td>
|
||||
<td class="ci-bound">20.330 ns</td>
|
||||
<td>26.534 ns</td>
|
||||
<td class="ci-bound">32.399 ns</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="additional_plots">
|
||||
<h4>Additional Plots:</h4>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="typical.svg">Typical</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mean.svg">Mean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="SD.svg">Std. Dev.</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="median.svg">Median</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="MAD.svg">MAD</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="slope.svg">Slope</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<section class="explanation">
|
||||
<h4>Understanding this report:</h4>
|
||||
<p>The plot on the left displays the average time per iteration for this benchmark. The shaded region
|
||||
shows the estimated probability of an iteration taking a certain amount of time, while the line
|
||||
shows the mean. Click on the plot for a larger view showing the outliers.</p>
|
||||
<p>The plot on the right shows the linear regression calculated from the measurements. Each point
|
||||
represents a sample, though here it shows the total time for the sample rather than time per
|
||||
iteration. The line is the line of best fit for these measurements.</p>
|
||||
<p>See <a href="https://bheisler.github.io/criterion.rs/book/user_guide/command_line_output.html#additional-statistics">the
|
||||
documentation</a> for more details on the additional statistics.</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>This report was generated by
|
||||
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
|
||||
library in Rust.</p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
112
benchmarks/babyjubjub/generate_random_fr/report/mean.svg
Normal file
@@ -0,0 +1,112 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:mean
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="453" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,453 86,453 "/>
|
||||
<text x="77" y="409" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,409 86,409 "/>
|
||||
<text x="77" y="365" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,365 86,365 "/>
|
||||
<text x="77" y="322" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,322 86,322 "/>
|
||||
<text x="77" y="278" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,278 86,278 "/>
|
||||
<text x="77" y="234" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
120
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,234 86,234 "/>
|
||||
<text x="77" y="191" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
140
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,191 86,191 "/>
|
||||
<text x="77" y="147" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
160
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,147 86,147 "/>
|
||||
<text x="77" y="103" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
180
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,103 86,103 "/>
|
||||
<text x="77" y="60" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
200
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,60 86,60 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="98" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.305
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="98,473 98,478 "/>
|
||||
<text x="180" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.306
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="180,473 180,478 "/>
|
||||
<text x="262" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.307
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="262,473 262,478 "/>
|
||||
<text x="344" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.308
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="344,473 344,478 "/>
|
||||
<text x="425" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.309
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="425,473 425,478 "/>
|
||||
<text x="507" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.31
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="507,473 507,478 "/>
|
||||
<text x="589" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.311
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="589,473 589,478 "/>
|
||||
<text x="671" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.312
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="671,473 671,478 "/>
|
||||
<text x="753" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.313
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="753,473 753,478 "/>
|
||||
<text x="835" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.314
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="835,473 835,478 "/>
|
||||
<text x="917" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.315
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="917,473 917,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,471 88,471 90,470 92,470 93,469 95,469 97,468 98,468 100,467 102,467 103,466 105,466 107,465 109,464 110,464 112,463 114,463 115,462 117,461 119,461 120,460 122,459 124,459 125,458 127,457 129,456 131,455 132,455 134,454 136,453 137,452 139,451 141,450 142,449 144,448 146,447 147,447 149,446 151,445 153,444 154,443 156,442 158,441 159,440 161,438 163,437 164,436 166,435 168,434 169,433 171,432 173,431 175,430 176,428 178,427 180,426 181,425 183,423 185,422 186,421 188,420 190,418 191,417 193,416 195,414 197,413 198,411 200,410 202,409 203,407 205,406 207,404 208,403 210,401 212,399 214,398 215,396 217,394 219,393 220,391 222,389 224,387 225,385 227,384 229,382 230,380 232,378 234,376 236,374 237,372 239,371 241,369 242,367 244,365 246,363 247,361 249,359 251,358 252,356 254,354 256,352 258,350 259,348 261,346 263,344 264,342 266,340 268,338 269,336 271,334 273,332 274,330 276,328 278,326 280,323 281,321 283,319 285,317 286,314 288,312 290,310 291,308 293,305 295,303 296,301 298,299 300,296 302,294 303,292 305,290 307,288 308,285 310,283 312,281 313,279 315,277 317,274 318,272 320,270 322,268 324,265 325,263 327,261 329,258 330,256 332,254 334,251 335,249 337,247 339,244 341,242 342,239 344,237 346,234 347,232 349,230 351,227 352,225 354,222 356,220 357,218 359,216 361,213 363,211 364,209 366,207 368,204 369,202 371,200 373,198 374,196 376,194 378,192 379,190 381,188 383,186 385,184 386,182 388,180 390,178 391,176 393,174 395,173 396,171 398,169 400,167 401,166 403,164 405,162 407,160 408,159 410,157 412,155 413,154 415,152 417,150 418,148 420,147 422,145 423,143 425,141 427,140 429,138 430,136 432,134 434,133 435,131 437,129 439,128 440,126 442,125 444,123 445,121 447,120 449,119 451,117 452,116 454,114 456,113 457,112 459,111 461,109 462,108 464,107 466,106 468,105 469,104 471,103 473,103 474,102 476,101 478,100 479,100 481,99 483,99 484,98 486,98 488,97 490,97 491,97 493,96 495,96 496,96 498,96 500,95 501,95 503,95 505,95 506,95 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,95 534,95 535,95 537,96 539,96 540,97 542,97 544,98 545,99 547,99 549,100 550,101 552,102 554,103 556,104 557,105 559,106 561,108 562,109 564,110 566,112 567,113 569,114 571,116 573,117 574,118 576,120 578,121 579,123 581,124 583,126 584,127 586,128 588,130 589,131 591,133 593,134 595,136 596,137 598,139 600,140 601,142 603,143 605,145 606,147 608,149 610,151 611,152 613,154 615,156 617,158 618,160 620,163 622,165 623,167 625,169 627,171 628,173 630,176 632,178 633,180 635,182 637,184 639,187 640,189 642,191 644,193 645,196 647,198 649,200 650,203 652,205 654,207 655,209 657,212 659,214 661,216 662,219 664,221 666,223 667,226 669,228 671,230 672,233 674,235 676,238 677,240 679,242 681,245 683,247 684,250 686,252 688,254 689,257 691,259 693,262 694,264 696,266 698,269 700,271 701,274 703,276 705,278 706,281 708,283 710,285 711,288 713,290 715,292 716,295 718,297 720,299 722,301 723,303 725,305 727,307 728,309 730,311 732,313 733,315 735,317 737,319 738,321 740,323 742,325 744,327 745,329 747,331 749,333 750,335 752,337 754,339 755,341 757,344 759,346 760,348 762,350 764,352 766,354 767,356 769,358 771,360 772,362 774,365 776,366 777,368 779,370 781,372 782,374 784,376 786,378 788,379 789,381 791,383 793,384 794,386 796,388 798,389 799,391 801,392 803,394 804,395 806,397 808,398 810,400 811,401 813,402 815,404 816,405 818,407 820,408 821,409 823,411 825,412 827,414 828,415 830,416 832,418 833,419 835,421 837,422 838,423 840,425 842,426 843,427 845,429 847,430 849,431 850,432 852,434 854,435 855,436 857,437 859,438 860,440 862,441 864,442 865,443 867,444 869,445 871,446 872,447 874,448 876,449 877,450 879,451 881,452 882,453 884,454 886,455 887,456 889,457 891,457 893,458 894,459 896,460 898,461 899,462 901,462 903,463 904,464 906,464 908,465 909,466 911,466 913,467 915,468 916,468 918,469 920,469 921,470 923,470 925,471 926,471 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,436 166,435 168,434 169,433 171,432 173,431 175,430 176,428 178,427 180,426 181,425 183,423 185,422 186,421 188,420 190,418 191,417 193,416 195,414 197,413 198,411 200,410 202,409 203,407 205,406 207,404 208,403 210,401 212,399 214,398 215,396 217,394 219,393 220,391 222,389 224,387 225,385 227,384 229,382 230,380 232,378 234,376 236,374 237,372 239,371 241,369 242,367 244,365 246,363 247,361 249,359 251,358 252,356 254,354 256,352 258,350 259,348 261,346 263,344 264,342 266,340 268,338 269,336 271,334 273,332 274,330 276,328 278,326 280,323 281,321 283,319 285,317 286,314 288,312 290,310 291,308 293,305 295,303 296,301 298,299 300,296 302,294 303,292 305,290 307,288 308,285 310,283 312,281 313,279 315,277 317,274 318,272 320,270 322,268 324,265 325,263 327,261 329,258 330,256 332,254 334,251 335,249 337,247 339,244 341,242 342,239 344,237 346,234 347,232 349,230 351,227 352,225 354,222 356,220 357,218 359,216 361,213 363,211 364,209 366,207 368,204 369,202 371,200 373,198 374,196 376,194 378,192 379,190 381,188 383,186 385,184 386,182 388,180 390,178 391,176 393,174 395,173 396,171 398,169 400,167 401,166 403,164 405,162 407,160 408,159 410,157 412,155 413,154 415,152 417,150 418,148 420,147 422,145 423,143 425,141 427,140 429,138 430,136 432,134 434,133 435,131 437,129 439,128 440,126 442,125 444,123 445,121 447,120 449,119 451,117 452,116 454,114 456,113 457,112 459,111 461,109 462,108 464,107 466,106 468,105 469,104 471,103 473,103 474,102 476,101 478,100 479,100 481,99 483,99 484,98 486,98 488,97 490,97 491,97 493,96 495,96 496,96 498,96 500,95 501,95 503,95 505,95 506,95 508,94 510,94 512,94 513,94 515,94 517,94 518,94 520,94 522,94 523,94 525,94 527,94 528,94 530,94 532,95 534,95 535,95 537,96 539,96 540,97 542,97 544,98 545,99 547,99 549,100 550,101 552,102 554,103 556,104 557,105 559,106 561,108 562,109 564,110 566,112 567,113 569,114 571,116 573,117 574,118 576,120 578,121 579,123 581,124 583,126 584,127 586,128 588,130 589,131 591,133 593,134 595,136 596,137 598,139 600,140 601,142 603,143 605,145 606,147 608,149 610,151 611,152 613,154 615,156 617,158 618,160 620,163 622,165 623,167 625,169 627,171 628,173 630,176 632,178 633,180 635,182 637,184 639,187 640,189 642,191 644,193 645,196 647,198 649,200 650,203 652,205 654,207 655,209 657,212 659,214 661,216 662,219 664,221 666,223 667,226 669,228 671,230 672,233 674,235 676,238 677,240 679,242 681,245 683,247 684,250 686,252 688,254 689,257 691,259 693,262 694,264 696,266 698,269 700,271 701,274 703,276 705,278 706,281 708,283 710,285 711,288 713,290 715,292 716,295 718,297 720,299 722,301 723,303 725,305 727,307 728,309 730,311 732,313 733,315 735,317 737,319 738,321 740,323 742,325 744,327 745,329 747,331 749,333 750,335 752,337 754,339 755,341 757,344 759,346 760,348 762,350 764,352 766,354 767,356 769,358 771,360 772,362 774,365 776,366 777,368 779,370 781,372 782,374 784,376 786,378 788,379 789,381 791,383 793,384 794,386 796,388 798,389 799,391 801,392 803,394 804,395 806,397 808,398 810,400 811,401 813,402 815,404 816,405 818,407 820,408 821,409 823,411 825,412 827,414 828,415 830,416 832,418 833,419 835,421 837,422 838,423 840,425 842,426 843,427 845,429 847,430 849,431 850,432 852,434 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="509,473 509,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
108
benchmarks/babyjubjub/generate_random_fr/report/median.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:median
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="438" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,438 86,438 "/>
|
||||
<text x="77" y="401" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,401 86,401 "/>
|
||||
<text x="77" y="363" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,363 86,363 "/>
|
||||
<text x="77" y="326" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,326 86,326 "/>
|
||||
<text x="77" y="289" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,289 86,289 "/>
|
||||
<text x="77" y="252" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
120
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,252 86,252 "/>
|
||||
<text x="77" y="214" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
140
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,214 86,214 "/>
|
||||
<text x="77" y="177" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
160
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,177 86,177 "/>
|
||||
<text x="77" y="140" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
180
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,140 86,140 "/>
|
||||
<text x="77" y="102" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
200
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,102 86,102 "/>
|
||||
<text x="77" y="65" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
220
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,65 86,65 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="165" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.302
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="165,473 165,478 "/>
|
||||
<text x="250" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.304
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="250,473 250,478 "/>
|
||||
<text x="336" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.306
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="336,473 336,478 "/>
|
||||
<text x="421" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.308
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="421,473 421,478 "/>
|
||||
<text x="507" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.31
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="507,473 507,478 "/>
|
||||
<text x="592" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.312
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="592,473 592,478 "/>
|
||||
<text x="678" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.314
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="678,473 678,478 "/>
|
||||
<text x="763" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.316
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="763,473 763,478 "/>
|
||||
<text x="849" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.318
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="849,473 849,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,461 88,461 90,461 92,462 93,462 95,462 97,462 98,462 100,462 102,463 103,463 105,463 107,463 109,463 110,463 112,463 114,463 115,463 117,463 119,463 120,463 122,463 124,463 125,463 127,463 129,463 131,463 132,463 134,463 136,463 137,463 139,463 141,462 142,462 144,462 146,462 147,462 149,462 151,461 153,461 154,461 156,461 158,461 159,461 161,460 163,460 164,460 166,460 168,460 169,460 171,460 173,460 175,460 176,460 178,460 180,460 181,460 183,460 185,460 186,460 188,460 190,460 191,460 193,460 195,460 197,459 198,459 200,459 202,459 203,459 205,458 207,458 208,458 210,458 212,458 214,458 215,458 217,457 219,457 220,457 222,457 224,457 225,456 227,456 229,456 230,455 232,455 234,454 236,454 237,453 239,452 241,451 242,450 244,449 246,449 247,448 249,447 251,446 252,444 254,443 256,442 258,441 259,440 261,439 263,438 264,437 266,437 268,436 269,435 271,434 273,433 274,432 276,432 278,431 280,431 281,430 283,429 285,429 286,428 288,428 290,428 291,427 293,427 295,427 296,427 298,426 300,426 302,426 303,426 305,426 307,425 308,425 310,425 312,425 313,425 315,424 317,424 318,424 320,424 322,424 324,424 325,423 327,423 329,423 330,423 332,423 334,423 335,423 337,423 339,423 341,423 342,424 344,424 346,424 347,424 349,424 351,424 352,424 354,424 356,423 357,423 359,423 361,423 363,423 364,423 366,422 368,422 369,422 371,421 373,421 374,421 376,420 378,420 379,419 381,418 383,418 385,417 386,416 388,415 390,414 391,413 393,412 395,411 396,410 398,409 400,408 401,407 403,406 405,405 407,404 408,403 410,402 412,402 413,401 415,400 417,400 418,400 420,400 422,400 423,400 425,400 427,401 429,401 430,402 432,403 434,404 435,406 437,407 439,409 440,410 442,412 444,414 445,415 447,417 449,419 451,420 452,421 454,422 456,423 457,423 459,423 461,423 462,423 464,422 466,421 468,420 469,419 471,417 473,415 474,414 476,412 478,410 479,409 481,407 483,406 484,405 486,404 488,404 490,404 491,404 493,404 495,405 496,406 498,407 500,408 501,410 503,411 505,412 506,413 508,413 510,413 512,413 513,412 515,411 517,409 518,407 520,404 522,400 523,395 525,391 527,385 528,380 530,374 532,369 534,363 535,357 537,352 539,348 540,344 542,340 544,338 545,336 547,335 549,335 550,336 552,337 554,340 556,343 557,346 559,350 561,354 562,358 564,362 566,366 567,370 569,373 571,376 573,378 574,380 576,381 578,381 579,381 581,381 583,380 584,379 586,377 588,376 589,375 591,373 593,372 595,371 596,370 598,369 600,369 601,369 603,369 605,370 606,370 608,370 610,371 611,371 613,370 615,370 617,369 618,367 620,365 622,363 623,359 625,356 627,351 628,346 630,341 632,335 633,329 635,323 637,317 639,311 640,305 642,299 644,293 645,288 647,283 649,278 650,274 652,270 654,266 655,263 657,259 659,256 661,253 662,250 664,247 666,244 667,240 669,236 671,232 672,227 674,221 676,215 677,208 679,201 681,193 683,185 684,176 686,168 688,159 689,150 691,141 693,133 694,125 696,117 698,111 700,105 701,100 703,96 705,94 706,92 708,92 710,93 711,95 713,97 715,101 716,106 718,111 720,117 722,123 723,130 725,137 727,144 728,151 730,158 732,165 733,172 735,179 737,186 738,193 740,199 742,206 744,213 745,219 747,226 749,232 750,239 752,245 754,252 755,258 757,265 759,271 760,278 762,284 764,291 766,297 767,303 769,309 771,315 772,320 774,326 776,331 777,336 779,340 781,345 782,349 784,353 786,357 788,361 789,364 791,367 793,370 794,373 796,376 798,378 799,380 801,382 803,383 804,385 806,386 808,387 810,387 811,388 813,388 815,388 816,388 818,387 820,387 821,386 823,385 825,384 827,383 828,382 830,381 832,380 833,379 835,378 837,378 838,378 840,378 842,378 843,379 845,380 847,381 849,383 850,385 852,387 854,390 855,393 857,396 859,399 860,402 862,405 864,409 865,412 867,415 869,418 871,421 872,424 874,427 876,430 877,432 879,435 881,437 882,439 884,441 886,443 887,444 889,446 891,447 893,449 894,450 896,452 898,453 899,455 901,456 903,457 904,458 906,460 908,461 909,462 911,463 913,464 915,465 916,466 918,467 920,468 921,469 923,470 925,470 926,471 928,472 930,472 932,472 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,460 166,460 168,460 169,460 171,460 173,460 175,460 176,460 178,460 180,460 181,460 183,460 185,460 186,460 188,460 190,460 191,460 193,460 195,460 197,459 198,459 200,459 202,459 203,459 205,458 207,458 208,458 210,458 212,458 214,458 215,458 217,457 219,457 220,457 222,457 224,457 225,456 227,456 229,456 230,455 232,455 234,454 236,454 237,453 239,452 241,451 242,450 244,449 246,449 247,448 249,447 251,446 252,444 254,443 256,442 258,441 259,440 261,439 263,438 264,437 266,437 268,436 269,435 271,434 273,433 274,432 276,432 278,431 280,431 281,430 283,429 285,429 286,428 288,428 290,428 291,427 293,427 295,427 296,427 298,426 300,426 302,426 303,426 305,426 307,425 308,425 310,425 312,425 313,425 315,424 317,424 318,424 320,424 322,424 324,424 325,423 327,423 329,423 330,423 332,423 334,423 335,423 337,423 339,423 341,423 342,424 344,424 346,424 347,424 349,424 351,424 352,424 354,424 356,423 357,423 359,423 361,423 363,423 364,423 366,422 368,422 369,422 371,421 373,421 374,421 376,420 378,420 379,419 381,418 383,418 385,417 386,416 388,415 390,414 391,413 393,412 395,411 396,410 398,409 400,408 401,407 403,406 405,405 407,404 408,403 410,402 412,402 413,401 415,400 417,400 418,400 420,400 422,400 423,400 425,400 427,401 429,401 430,402 432,403 434,404 435,406 437,407 439,409 440,410 442,412 444,414 445,415 447,417 449,419 451,420 452,421 454,422 456,423 457,423 459,423 461,423 462,423 464,422 466,421 468,420 469,419 471,417 473,415 474,414 476,412 478,410 479,409 481,407 483,406 484,405 486,404 488,404 490,404 491,404 493,404 495,405 496,406 498,407 500,408 501,410 503,411 505,412 506,413 508,413 510,413 512,413 513,412 515,411 517,409 518,407 520,404 522,400 523,395 525,391 527,385 528,380 530,374 532,369 534,363 535,357 537,352 539,348 540,344 542,340 544,338 545,336 547,335 549,335 550,336 552,337 554,340 556,343 557,346 559,350 561,354 562,358 564,362 566,366 567,370 569,373 571,376 573,378 574,380 576,381 578,381 579,381 581,381 583,380 584,379 586,377 588,376 589,375 591,373 593,372 595,371 596,370 598,369 600,369 601,369 603,369 605,370 606,370 608,370 610,371 611,371 613,370 615,370 617,369 618,367 620,365 622,363 623,359 625,356 627,351 628,346 630,341 632,335 633,329 635,323 637,317 639,311 640,305 642,299 644,293 645,288 647,283 649,278 650,274 652,270 654,266 655,263 657,259 659,256 661,253 662,250 664,247 666,244 667,240 669,236 671,232 672,227 674,221 676,215 677,208 679,201 681,193 683,185 684,176 686,168 688,159 689,150 691,141 693,133 694,125 696,117 698,111 700,105 701,100 703,96 705,94 706,92 708,92 710,93 711,95 713,97 715,101 716,106 718,111 720,117 722,123 723,130 725,137 727,144 728,151 730,158 732,165 733,172 735,179 737,186 738,193 740,199 742,206 744,213 745,219 747,226 749,232 750,239 752,245 754,252 755,258 757,265 759,271 760,278 762,284 764,291 766,297 767,303 769,309 771,315 772,320 774,326 776,331 777,336 779,340 781,345 782,349 784,353 786,357 788,361 789,364 791,367 793,370 794,373 796,376 798,378 799,380 801,382 803,383 804,385 806,386 808,387 810,387 811,388 813,388 815,388 816,388 818,387 820,387 821,386 823,385 825,384 827,383 828,382 830,381 832,380 833,379 835,378 837,378 838,378 840,378 842,378 843,379 845,380 847,381 849,383 850,385 852,387 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="677,473 677,211 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
139
benchmarks/babyjubjub/generate_random_fr/report/pdf.svg
Normal file
@@ -0,0 +1,139 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<text x="480" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="472" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,472 86,472 "/>
|
||||
<text x="77" y="417" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,417 86,417 "/>
|
||||
<text x="77" y="361" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,361 86,361 "/>
|
||||
<text x="77" y="306" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,306 86,306 "/>
|
||||
<text x="77" y="250" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,250 86,250 "/>
|
||||
<text x="77" y="195" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,195 86,195 "/>
|
||||
<text x="77" y="139" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,139 86,139 "/>
|
||||
<text x="77" y="84" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,84 86,84 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 872,473 "/>
|
||||
<text x="174" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.24
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="174,473 174,478 "/>
|
||||
<text x="270" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.26
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="270,473 270,478 "/>
|
||||
<text x="365" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.28
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="365,473 365,478 "/>
|
||||
<text x="460" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="460,473 460,478 "/>
|
||||
<text x="555" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.32
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="555,473 555,478 "/>
|
||||
<text x="651" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.34
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="651,473 651,478 "/>
|
||||
<text x="746" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.36
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="746,473 746,478 "/>
|
||||
<text x="841" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.38
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="841,473 841,478 "/>
|
||||
<text x="933" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(90, 933, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,53 873,473 "/>
|
||||
<text x="883" y="473" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,473 878,473 "/>
|
||||
<text x="883" y="420" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,420 878,420 "/>
|
||||
<text x="883" y="366" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,366 878,366 "/>
|
||||
<text x="883" y="312" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,312 878,312 "/>
|
||||
<text x="883" y="259" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,259 878,259 "/>
|
||||
<text x="883" y="205" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,205 878,205 "/>
|
||||
<text x="883" y="151" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
12
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,151 878,151 "/>
|
||||
<text x="883" y="98" dy="0.5ex" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
14
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="873,98 878,98 "/>
|
||||
<polygon opacity="0.5" fill="#1F78B4" points="87,473 88,473 90,473 91,473 93,473 94,473 96,473 98,473 99,473 101,473 102,473 104,473 105,473 107,473 109,473 110,473 112,473 113,473 115,473 116,473 118,473 120,473 121,472 123,472 124,472 126,472 127,472 129,472 131,472 132,472 134,472 135,471 137,471 138,471 140,471 142,471 143,471 145,471 146,470 148,470 150,470 151,470 153,470 154,469 156,469 157,469 159,469 161,468 162,468 164,468 165,468 167,467 168,467 170,467 172,467 173,466 175,466 176,466 178,466 179,465 181,465 183,465 184,465 186,464 187,464 189,464 190,464 192,463 194,463 195,463 197,463 198,463 200,463 201,462 203,462 205,462 206,462 208,462 209,462 211,462 213,462 214,462 216,461 217,461 219,461 220,461 222,461 224,461 225,461 227,461 228,461 230,461 231,461 233,462 235,462 236,462 238,462 239,462 241,462 242,462 244,462 246,462 247,462 249,461 250,461 252,461 253,461 255,461 257,461 258,461 260,460 261,460 263,459 264,459 266,458 268,458 269,457 271,457 272,456 274,455 276,454 277,453 279,452 280,450 282,449 283,448 285,446 287,444 288,442 290,440 291,438 293,436 294,434 296,431 298,428 299,425 301,422 302,419 304,416 305,412 307,409 309,405 310,401 312,397 313,392 315,388 316,383 318,378 320,373 321,368 323,362 324,357 326,351 327,345 329,339 331,333 332,327 334,320 335,314 337,307 339,300 340,293 342,286 343,279 345,272 346,265 348,258 350,251 351,244 353,237 354,230 356,222 357,215 359,208 361,201 362,195 364,188 365,181 367,175 368,168 370,162 372,156 373,150 375,145 376,139 378,134 379,129 381,124 383,120 384,115 386,111 387,108 389,104 391,101 392,98 394,95 395,93 397,90 398,89 400,87 402,86 403,84 405,84 406,83 408,83 409,82 411,82 413,83 414,83 416,84 417,85 419,86 420,87 422,89 424,90 425,92 427,94 428,96 430,98 431,100 433,103 435,105 436,107 438,110 439,112 441,114 442,117 444,119 446,122 447,124 449,126 450,129 452,131 454,133 455,135 457,137 458,139 460,140 461,142 463,143 465,145 466,146 468,147 469,148 471,148 472,149 474,149 476,150 477,150 479,150 480,149 482,149 483,148 485,147 487,147 488,145 490,144 491,143 493,141 494,140 496,138 498,136 499,134 501,132 502,129 504,127 505,124 507,122 509,119 510,116 512,114 513,111 515,108 517,105 518,102 520,99 521,96 523,94 524,91 526,88 528,85 529,83 531,80 532,77 534,75 535,73 537,70 539,68 540,66 542,64 543,63 545,61 546,59 548,58 550,57 551,56 553,55 554,55 556,54 557,54 559,53 561,54 562,54 564,54 565,55 567,55 568,56 570,57 572,58 573,60 575,61 576,63 578,64 580,66 581,68 583,71 584,73 586,75 587,78 589,80 591,83 592,86 594,89 595,92 597,95 598,99 600,102 602,105 603,109 605,112 606,116 608,120 609,124 611,127 613,131 614,135 616,139 617,143 619,147 620,152 622,156 624,160 625,164 627,168 628,173 630,177 632,182 633,186 635,190 636,195 638,199 639,204 641,208 643,213 644,218 646,222 647,227 649,231 650,236 652,240 654,245 655,250 657,254 658,259 660,263 661,268 663,272 665,277 666,281 668,286 669,290 671,294 672,299 674,303 676,307 677,311 679,316 680,320 682,324 683,328 685,331 687,335 688,339 690,343 691,346 693,350 695,353 696,357 698,360 699,363 701,367 702,370 704,373 706,376 707,379 709,381 710,384 712,387 713,390 715,392 717,395 718,397 720,399 721,402 723,404 724,406 726,408 728,410 729,412 731,414 732,416 734,418 735,419 737,421 739,423 740,425 742,426 743,428 745,429 746,431 748,432 750,434 751,435 753,436 754,438 756,439 758,440 759,441 761,443 762,444 764,445 765,446 767,447 769,448 770,449 772,450 773,451 775,452 776,453 778,454 780,455 781,456 783,457 784,457 786,458 787,459 789,460 791,460 792,461 794,462 795,462 797,463 798,464 800,464 802,465 803,465 805,466 806,466 808,467 809,467 811,467 813,468 814,468 816,469 817,469 819,469 821,470 822,470 824,470 825,470 827,471 828,471 830,471 832,471 833,471 835,472 836,472 838,472 839,472 841,472 843,472 844,472 846,472 847,473 849,473 850,473 852,473 854,473 855,473 857,473 858,473 860,473 861,473 863,473 865,473 866,473 868,473 869,473 871,473 873,473 873,473 87,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="508,472 508,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="139,472 139,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#FF7F00" stroke-width="1" points="855,472 855,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="87,472 87,53 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#E31A1C" stroke-width="1" points="873,472 873,53 "/>
|
||||
<text x="776" y="228" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
PDF
|
||||
</text>
|
||||
<text x="776" y="243" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mean
|
||||
</text>
|
||||
<text x="776" y="258" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
"Clean" sample
|
||||
</text>
|
||||
<text x="776" y="273" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Mild outliers
|
||||
</text>
|
||||
<text x="776" y="288" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Severe outliers
|
||||
</text>
|
||||
<rect x="746" y="228" width="20" height="10" opacity="0.5" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="746,248 766,248 "/>
|
||||
<circle cx="756" cy="263" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="278" r="3" opacity="1" fill="#FF7F00" stroke="none" stroke-width="1"/>
|
||||
<circle cx="756" cy="293" r="3" opacity="1" fill="#E31A1C" stroke="none" stroke-width="1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,60 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average Time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="244" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,244 74,244 "/>
|
||||
<text x="65" y="218" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
2
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,218 74,218 "/>
|
||||
<text x="65" y="191" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
4
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,191 74,191 "/>
|
||||
<text x="65" y="165" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
6
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,165 74,165 "/>
|
||||
<text x="65" y="138" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
8
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,138 74,138 "/>
|
||||
<text x="65" y="111" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,111 74,111 "/>
|
||||
<text x="65" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
12
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,85 74,85 "/>
|
||||
<text x="65" y="58" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
14
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,58 74,58 "/>
|
||||
<text x="65" y="32" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
16
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,32 74,32 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="136" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.25
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="136,245 136,250 "/>
|
||||
<text x="245" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.3
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="245,245 245,250 "/>
|
||||
<text x="354" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.35
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="354,245 354,250 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,244 75,244 76,244 77,244 77,244 78,244 79,244 80,244 80,244 81,244 82,244 82,244 83,244 84,244 85,244 85,244 86,244 87,244 87,244 88,244 89,244 90,244 90,244 91,244 92,244 92,244 93,244 94,244 95,244 95,244 96,244 97,243 98,243 98,243 99,243 100,243 100,243 101,243 102,243 103,243 103,243 104,243 105,243 105,242 106,242 107,242 108,242 108,242 109,242 110,242 110,242 111,241 112,241 113,241 113,241 114,241 115,241 116,241 116,241 117,240 118,240 118,240 119,240 120,240 121,240 121,240 122,240 123,240 123,239 124,239 125,239 126,239 126,239 127,239 128,239 128,239 129,239 130,239 131,239 131,239 132,239 133,239 133,239 134,239 135,239 136,239 136,238 137,238 138,239 139,239 139,239 140,239 141,239 141,239 142,239 143,239 144,239 144,239 145,239 146,239 146,239 147,239 148,239 149,239 149,239 150,238 151,238 151,238 152,238 153,238 154,238 154,238 155,238 156,237 157,237 157,237 158,236 159,236 159,236 160,235 161,235 162,234 162,234 163,233 164,232 164,232 165,231 166,230 167,229 167,228 168,227 169,226 169,225 170,223 171,222 172,221 172,219 173,218 174,216 175,214 175,212 176,210 177,208 177,206 178,204 179,202 180,200 180,197 181,195 182,192 182,189 183,187 184,184 185,181 185,178 186,175 187,172 187,169 188,165 189,162 190,159 190,155 191,152 192,148 192,145 193,141 194,138 195,134 195,131 196,127 197,124 198,120 198,117 199,113 200,110 200,106 201,103 202,100 203,96 203,93 204,90 205,87 205,84 206,82 207,79 208,76 208,74 209,71 210,69 210,67 211,65 212,63 213,61 213,60 214,58 215,57 216,56 216,55 217,54 218,53 218,52 219,52 220,51 221,51 221,51 222,51 223,51 223,51 224,51 225,51 226,52 226,52 227,53 228,54 228,55 229,56 230,56 231,57 231,58 232,60 233,61 233,62 234,63 235,64 236,65 236,67 237,68 238,69 239,70 239,71 240,72 241,74 241,75 242,76 243,77 244,78 244,78 245,79 246,80 246,81 247,81 248,82 249,83 249,83 250,83 251,84 251,84 252,84 253,84 254,84 254,84 255,84 256,83 257,83 257,82 258,82 259,81 259,81 260,80 261,79 262,78 262,77 263,76 264,75 264,74 265,73 266,71 267,70 267,69 268,67 269,66 269,65 270,63 271,62 272,60 272,59 273,58 274,56 275,55 275,53 276,52 277,51 277,49 278,48 279,47 280,46 280,45 281,44 282,43 282,42 283,41 284,40 285,39 285,39 286,38 287,38 287,37 288,37 289,37 290,36 290,36 291,36 292,36 292,37 293,37 294,37 295,38 295,38 296,39 297,39 298,40 298,41 299,42 300,43 300,44 301,45 302,46 303,47 303,48 304,50 305,51 305,52 306,54 307,55 308,57 308,59 309,60 310,62 310,64 311,66 312,67 313,69 313,71 314,73 315,75 316,77 316,79 317,81 318,83 318,85 319,87 320,89 321,91 321,93 322,95 323,98 323,100 324,102 325,104 326,106 326,109 327,111 328,113 328,115 329,118 330,120 331,122 331,124 332,127 333,129 333,131 334,134 335,136 336,138 336,140 337,143 338,145 339,147 339,149 340,151 341,154 341,156 342,158 343,160 344,162 344,164 345,166 346,168 346,170 347,172 348,174 349,176 349,178 350,180 351,181 351,183 352,185 353,187 354,188 354,190 355,192 356,193 357,195 357,196 358,197 359,199 359,200 360,202 361,203 362,204 362,205 363,207 364,208 364,209 365,210 366,211 367,212 367,213 368,214 369,215 369,216 370,217 371,218 372,219 372,219 373,220 374,221 375,222 375,223 376,223 377,224 377,225 378,225 379,226 380,227 380,227 381,228 382,229 382,229 383,230 384,230 385,231 385,231 386,232 387,232 387,233 388,233 389,234 390,234 390,235 391,235 392,236 392,236 393,237 394,237 395,237 395,238 396,238 397,238 398,239 398,239 399,239 400,240 400,240 401,240 402,240 403,241 403,241 404,241 405,241 405,242 406,242 407,242 408,242 408,242 409,242 410,243 410,243 411,243 412,243 413,243 413,243 414,243 415,243 416,243 416,244 417,244 418,244 418,244 419,244 420,244 421,244 421,244 422,244 423,244 423,244 424,244 425,244 426,244 426,244 427,244 428,244 428,244 429,244 430,244 431,244 431,244 432,244 433,244 434,244 434,244 75,244 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="267,244 267,69 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.3 KiB |
212
benchmarks/babyjubjub/generate_random_fr/report/regression.svg
Normal file
@@ -0,0 +1,212 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="191" y1="472" x2="191" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="304" y1="472" x2="304" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="418" y1="472" x2="418" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="531" y1="472" x2="531" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="644" y1="472" x2="644" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="757" y1="472" x2="757" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="870" y1="472" x2="870" y2="53"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="434" x2="932" y2="434"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="392" x2="932" y2="392"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="350" x2="932" y2="350"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="308" x2="932" y2="308"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="266" x2="932" y2="266"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="223" x2="932" y2="223"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="181" x2="932" y2="181"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="139" x2="932" y2="139"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="97" x2="932" y2="97"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="87" y1="54" x2="932" y2="54"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="434" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,434 86,434 "/>
|
||||
<text x="77" y="392" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,392 86,392 "/>
|
||||
<text x="77" y="350" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,350 86,350 "/>
|
||||
<text x="77" y="308" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,308 86,308 "/>
|
||||
<text x="77" y="266" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,266 86,266 "/>
|
||||
<text x="77" y="223" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,223 86,223 "/>
|
||||
<text x="77" y="181" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,181 86,181 "/>
|
||||
<text x="77" y="139" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,139 86,139 "/>
|
||||
<text x="77" y="97" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,97 86,97 "/>
|
||||
<text x="77" y="54" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,54 86,54 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="191" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="191,473 191,478 "/>
|
||||
<text x="304" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="304,473 304,478 "/>
|
||||
<text x="418" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="418,473 418,478 "/>
|
||||
<text x="531" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="531,473 531,478 "/>
|
||||
<text x="644" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="644,473 644,478 "/>
|
||||
<text x="757" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="757,473 757,478 "/>
|
||||
<text x="870" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="870,473 870,478 "/>
|
||||
<circle cx="87" cy="472" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="95" cy="469" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="464" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="112" cy="460" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="121" cy="456" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="452" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="138" cy="448" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="146" cy="444" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="155" cy="440" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="163" cy="435" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="430" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="427" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="189" cy="423" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="197" cy="419" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="206" cy="415" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="215" cy="410" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="407" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="232" cy="401" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="240" cy="399" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="395" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="257" cy="391" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="266" cy="387" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="381" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="283" cy="379" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="291" cy="372" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="300" cy="371" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="308" cy="365" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="361" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="355" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="334" cy="352" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="343" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="351" cy="341" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="360" cy="336" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="333" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="377" cy="332" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="385" cy="325" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="325" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="402" cy="321" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="411" cy="318" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="312" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="428" cy="303" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="436" cy="304" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="445" cy="300" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="454" cy="291" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="462" cy="292" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="471" cy="288" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="479" cy="284" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="488" cy="279" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="496" cy="277" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="505" cy="272" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="513" cy="264" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="522" cy="259" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="530" cy="260" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="539" cy="247" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="547" cy="246" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="556" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="564" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="573" cy="234" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="582" cy="230" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="590" cy="228" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="599" cy="223" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="607" cy="219" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="616" cy="212" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="624" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="633" cy="208" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="641" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="650" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="658" cy="199" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="667" cy="188" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="675" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="684" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="693" cy="174" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="701" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="710" cy="165" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="718" cy="160" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="727" cy="154" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="735" cy="151" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="744" cy="147" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="752" cy="143" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="761" cy="139" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="769" cy="137" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="778" cy="132" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="786" cy="123" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="795" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="803" cy="119" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="812" cy="116" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="821" cy="113" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="829" cy="107" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="838" cy="98" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="846" cy="94" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="855" cy="91" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="863" cy="85" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="872" cy="83" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="880" cy="77" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="889" cy="70" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="897" cy="68" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="906" cy="60" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="914" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="923" cy="54" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="932" cy="54" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,473 932,56 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="87,473 932,57 932,54 "/>
|
||||
<text x="132" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Sample
|
||||
</text>
|
||||
<text x="132" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Linear regression
|
||||
</text>
|
||||
<text x="132" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<circle cx="112" cy="73" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="2" points="102,88 122,88 "/>
|
||||
<rect x="102" y="98" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,197 @@
|
||||
<svg width="450" height="300" viewBox="0 0 450 300" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="15" y="130" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 15, 130)">
|
||||
Total sample time (ms)
|
||||
</text>
|
||||
<text x="255" y="285" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Iterations (x 10^3)
|
||||
</text>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="119" y1="244" x2="119" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="167" y1="244" x2="167" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="215" y1="244" x2="215" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="263" y1="244" x2="263" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="311" y1="244" x2="311" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="359" y1="244" x2="359" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="408" y1="244" x2="408" y2="15"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="224" x2="434" y2="224"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="201" x2="434" y2="201"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="178" x2="434" y2="178"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="154" x2="434" y2="154"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="131" x2="434" y2="131"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="108" x2="434" y2="108"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="85" x2="434" y2="85"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="62" x2="434" y2="62"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="39" x2="434" y2="39"/>
|
||||
<line opacity="0.2" stroke="#000000" stroke-width="1" x1="75" y1="16" x2="434" y2="16"/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="74,15 74,244 "/>
|
||||
<text x="65" y="224" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,224 74,224 "/>
|
||||
<text x="65" y="201" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,201 74,201 "/>
|
||||
<text x="65" y="178" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,178 74,178 "/>
|
||||
<text x="65" y="154" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,154 74,154 "/>
|
||||
<text x="65" y="131" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,131 74,131 "/>
|
||||
<text x="65" y="108" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,108 74,108 "/>
|
||||
<text x="65" y="85" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,85 74,85 "/>
|
||||
<text x="65" y="62" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,62 74,62 "/>
|
||||
<text x="65" y="39" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
90.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,39 74,39 "/>
|
||||
<text x="65" y="16" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100.0
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="69,16 74,16 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="75,245 434,245 "/>
|
||||
<text x="119" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
10
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="119,245 119,250 "/>
|
||||
<text x="167" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="167,245 167,250 "/>
|
||||
<text x="215" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
30
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="215,245 215,250 "/>
|
||||
<text x="263" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="263,245 263,250 "/>
|
||||
<text x="311" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
50
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="311,245 311,250 "/>
|
||||
<text x="359" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="359,245 359,250 "/>
|
||||
<text x="408" y="255" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
70
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="408,245 408,250 "/>
|
||||
<circle cx="75" cy="244" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="78" cy="242" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="82" cy="240" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="85" cy="238" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="89" cy="235" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="93" cy="233" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="96" cy="231" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="100" cy="229" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="104" cy="227" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="107" cy="224" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="111" cy="221" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="114" cy="220" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="118" cy="218" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="122" cy="215" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="125" cy="213" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="129" cy="210" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="133" cy="209" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="136" cy="205" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="140" cy="204" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="143" cy="202" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="147" cy="200" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="151" cy="198" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="154" cy="194" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="158" cy="193" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="162" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="165" cy="189" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="169" cy="186" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="172" cy="184" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="176" cy="181" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="180" cy="179" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="183" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="187" cy="173" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="191" cy="170" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="194" cy="169" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="198" cy="168" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="201" cy="164" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="205" cy="164" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="209" cy="162" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="212" cy="160" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="216" cy="157" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="220" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="223" cy="152" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="227" cy="150" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="230" cy="145" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="234" cy="146" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="238" cy="144" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="241" cy="142" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="245" cy="138" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="249" cy="137" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="252" cy="135" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="256" cy="130" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="259" cy="128" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="263" cy="128" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="267" cy="121" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="270" cy="121" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="274" cy="118" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="278" cy="119" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="281" cy="114" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="285" cy="112" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="288" cy="111" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="292" cy="108" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="296" cy="106" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="299" cy="102" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="303" cy="104" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="307" cy="100" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="310" cy="97" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="314" cy="97" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="317" cy="95" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="321" cy="89" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="325" cy="87" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="328" cy="81" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="332" cy="82" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="336" cy="79" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="339" cy="77" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="343" cy="74" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="346" cy="70" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="350" cy="69" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="354" cy="66" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="357" cy="64" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="361" cy="62" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="365" cy="61" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="368" cy="58" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="372" cy="53" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="375" cy="51" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="379" cy="51" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="383" cy="50" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="386" cy="48" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="390" cy="45" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="394" cy="40" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="397" cy="37" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="401" cy="36" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="404" cy="33" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="408" cy="31" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="412" cy="28" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="415" cy="25" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="419" cy="24" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="423" cy="19" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="426" cy="15" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="430" cy="16" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<circle cx="434" cy="16" r="3" opacity="1" fill="#1F78B4" stroke="none" stroke-width="1"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="75,245 434,17 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="75,245 434,18 434,16 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,306 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L81.53,242.40 '/> <g transform="translate(64.14,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,205.00 L81.53,205.00 '/> <g transform="translate(64.14,208.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,167.60 L81.53,167.60 '/> <g transform="translate(64.14,171.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,130.20 L81.53,130.20 '/> <g transform="translate(64.14,134.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,92.81 L81.53,92.81 '/> <g transform="translate(64.14,96.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,55.41 L81.53,55.41 '/> <g transform="translate(64.14,59.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,242.40 L72.53,233.40 '/> <g transform="translate(72.53,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.02</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M111.67,242.40 L111.67,233.40 '/> <g transform="translate(111.67,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.03</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M150.82,242.40 L150.82,233.40 '/> <g transform="translate(150.82,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.04</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M189.96,242.40 L189.96,233.40 '/> <g transform="translate(189.96,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.05</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M229.10,242.40 L229.10,233.40 '/> <g transform="translate(229.10,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.06</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M268.25,242.40 L268.25,233.40 '/> <g transform="translate(268.25,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.07</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M307.39,242.40 L307.39,233.40 '/> <g transform="translate(307.39,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.08</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M346.53,242.40 L346.53,233.40 '/> <g transform="translate(346.53,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.09</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M385.68,242.40 L385.68,233.40 '/> <g transform="translate(385.68,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.1</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,242.40 L424.82,233.40 '/> <g transform="translate(424.82,264.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 1.11</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" ><title>Base PDF</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.500000' points = '233.71,242.28 234.07,242.26 234.42,242.24 234.77,242.22 235.13,242.20 235.48,242.17 235.83,242.14 236.19,242.11 236.54,242.07 236.89,242.03 237.25,241.99 237.60,241.94 237.95,241.88 238.30,241.82 238.66,241.76 239.01,241.68
|
||||
239.36,241.60 239.72,241.52 240.07,241.42 240.42,241.31 240.78,241.20 241.13,241.08 241.48,240.94 241.84,240.80 242.19,240.64 242.54,240.47 242.89,240.29 243.25,240.09 243.60,239.88 243.95,239.65 244.31,239.41 244.66,239.15
|
||||
245.01,238.88 245.37,238.59 245.72,238.27 246.07,237.94 246.43,237.59 246.78,237.22 247.13,236.83 247.49,236.42 247.84,235.98 248.19,235.53 248.54,235.05 248.90,234.54 249.25,234.02 249.60,233.47 249.96,232.89 250.31,232.29
|
||||
250.66,231.67 251.02,231.02 251.37,230.34 251.72,229.64 252.08,228.91 252.43,228.15 252.78,227.37 253.13,226.57 253.49,225.73 253.84,224.87 254.19,223.98 254.55,223.06 254.90,222.12 255.25,221.15 255.61,220.14 255.96,219.11
|
||||
256.31,218.05 256.67,216.96 257.02,215.84 257.37,214.68 257.73,213.49 258.08,212.27 258.43,211.02 258.78,209.73 259.14,208.41 259.49,207.04 259.84,205.64 260.20,204.20 260.55,202.72 260.90,201.20 261.26,199.64 261.61,198.03
|
||||
261.96,196.37 262.32,194.66 262.67,192.91 263.02,191.11 263.38,189.25 263.73,187.35 264.08,185.39 264.43,183.37 264.79,181.30 265.14,179.17 265.49,176.98 265.85,174.74 266.20,172.44 266.55,170.08 266.91,167.66 267.26,165.18
|
||||
267.61,162.65 267.97,160.06 268.32,157.41 268.67,154.71 269.02,151.96 269.38,149.16 269.73,146.31 270.08,143.42 270.44,140.49 270.79,137.51 271.14,134.51 271.50,131.47 271.85,128.41 272.20,125.33 272.56,122.23 272.91,119.12
|
||||
273.26,116.01 273.62,112.90 273.97,109.79 274.32,106.70 274.67,103.63 275.03,100.59 275.38,97.57 275.73,94.60 276.09,91.67 276.44,88.80 276.79,85.99 277.15,83.24 277.50,80.56 277.85,77.97 278.21,75.46 278.56,73.04
|
||||
278.91,70.71 279.26,68.49 279.62,66.37 279.97,64.37 280.32,62.48 280.68,60.71 281.03,59.06 281.38,57.53 281.74,56.14 282.09,54.87 282.44,53.73 282.80,52.73 283.15,51.86 283.50,51.12 283.86,50.51 284.21,50.04
|
||||
284.56,49.69 284.91,49.48 285.27,49.39 285.62,49.43 285.97,49.59 286.33,49.87 286.68,50.27 287.03,50.78 287.39,51.40 287.74,52.13 288.09,52.97 288.45,53.90 288.80,54.94 289.15,56.06 289.50,57.28 289.86,58.58
|
||||
290.21,59.96 290.56,61.42 290.92,62.96 291.27,64.58 291.62,66.26 291.98,68.01 292.33,69.83 292.68,71.70 293.04,73.64 293.39,75.64 293.74,77.69 294.10,79.79 294.45,81.95 294.80,84.15 295.15,86.40 295.51,88.70
|
||||
295.86,91.05 296.21,93.44 296.57,95.87 296.92,98.34 297.27,100.84 297.63,103.39 297.98,105.97 298.33,108.58 298.69,111.22 299.04,113.90 299.39,116.60 299.75,119.32 300.10,122.07 300.45,124.84 300.80,127.63 301.16,130.43
|
||||
301.51,133.24 301.86,136.06 302.22,138.88 302.57,141.71 302.92,144.54 303.28,147.36 303.63,150.17 303.98,152.97 304.34,155.76 304.69,158.52 305.04,161.27 305.39,163.98 305.75,166.67 306.10,169.32 306.45,171.94 306.81,174.51
|
||||
307.16,177.04 307.51,179.53 307.87,181.96 308.22,184.34 308.57,186.67 308.93,188.94 309.28,191.15 309.63,193.29 309.99,195.38 310.34,197.39 310.69,199.34 311.04,201.22 311.40,203.03 311.75,204.77 312.10,206.44 312.46,208.04
|
||||
312.81,209.57 313.16,211.03 313.52,212.42 313.87,213.73 314.22,214.98 314.58,216.16 314.93,217.28 315.28,218.33 315.63,219.31 315.99,220.24 316.34,221.10 316.69,221.90 317.05,222.65 317.40,223.34 317.75,223.99 318.11,224.58
|
||||
318.46,225.12 318.81,225.62 319.17,226.07 319.52,226.49 319.87,226.87 320.23,227.21 320.58,227.52 320.93,227.80 321.28,228.05 321.64,228.27 321.99,228.47 322.34,228.65 322.70,228.81 323.05,228.96 323.40,229.08 323.76,229.20
|
||||
324.11,229.31 324.46,229.40 324.82,229.49 325.17,229.57 325.52,229.65 325.88,229.73 326.23,229.80 326.58,229.88 326.93,229.95 327.29,230.03 327.64,230.11 327.99,230.19 328.35,230.28 328.70,230.37 329.05,230.47 329.41,230.57
|
||||
329.76,230.68 330.11,230.80 330.47,230.92 330.82,231.05 331.17,231.19 331.52,231.34 331.88,231.49 332.23,231.65 332.58,231.81 332.94,231.98 333.29,232.16 333.64,232.34 334.00,232.53 334.35,232.73 334.70,232.92 335.06,233.13
|
||||
335.41,233.33 335.76,233.54 336.12,233.75 336.47,233.96 336.82,234.18 337.17,234.39 337.53,234.61 337.88,234.82 338.23,235.03 338.59,235.24 338.94,235.45 339.29,235.66 339.65,235.86 340.00,236.05 340.35,236.25 340.71,236.44
|
||||
341.06,236.62 341.41,236.79 341.76,236.96 342.12,237.13 342.47,237.28 342.82,237.43 343.18,237.57 343.53,237.70 343.88,237.82 344.24,237.94 344.59,238.04 344.94,238.14 345.30,238.22 345.65,238.30 346.00,238.37 346.36,238.43
|
||||
346.71,238.48 347.06,238.52 347.41,238.55 347.77,238.57 348.12,238.58 348.47,238.58 348.83,238.58 349.18,238.57 349.53,238.55 349.89,238.52 350.24,238.48 350.59,238.44 350.95,238.40 351.30,238.34 351.65,238.28 352.00,238.22
|
||||
352.36,238.15 352.71,238.08 353.06,238.01 353.42,237.93 353.77,237.85 354.12,237.77 354.48,237.68 354.83,237.60 355.18,237.52 355.54,237.43 355.89,237.35 356.24,237.27 356.60,237.18 356.95,237.11 357.30,237.03 357.65,236.96
|
||||
358.01,236.89 358.36,236.82 358.71,236.76 359.07,236.70 359.42,236.64 359.77,236.59 360.13,236.55 360.48,236.51 360.83,236.47 361.19,236.44 361.54,236.42 361.89,236.40 362.25,236.38 362.60,236.37 362.95,236.37 363.30,236.37
|
||||
363.66,236.38 364.01,236.39 364.36,236.41 364.72,236.43 365.07,236.46 365.42,236.49 365.78,236.53 366.13,236.57 366.48,236.61 366.84,236.66 367.19,236.71 367.54,236.76 367.89,236.81 368.25,236.87 368.60,236.93 368.95,236.99
|
||||
369.31,237.05 369.66,237.12 370.01,237.18 370.37,237.24 370.72,237.30 371.07,237.37 371.43,237.43 371.78,237.49 372.13,237.55 372.49,237.60 372.84,237.66 373.19,237.71 373.54,237.76 373.90,237.81 374.25,237.85 374.60,237.89
|
||||
374.96,237.93 375.31,237.97 375.66,238.00 376.02,238.03 376.37,238.06 376.72,238.09 377.08,238.11 377.43,238.13 377.78,238.15 378.13,238.16 378.49,238.18 378.84,238.19 379.19,238.20 379.55,238.21 379.90,238.22 380.25,238.24
|
||||
380.61,238.25 380.96,238.26 381.31,238.27 381.67,238.28 382.02,238.30 382.37,238.31 382.73,238.33 383.08,238.35 383.43,238.37 383.78,238.40 384.14,238.43 384.49,238.46 384.84,238.50 385.20,238.54 385.55,238.58 385.90,238.62
|
||||
386.26,238.68 386.61,238.73 386.96,238.79 387.32,238.85 387.67,238.91 388.02,238.98 388.38,239.06 388.73,239.13 389.08,239.21 389.43,239.29 389.79,239.37 390.14,239.46 390.49,239.55 390.85,239.64 391.20,239.73 391.55,239.82
|
||||
391.91,239.91 392.26,240.00 392.61,240.10 392.97,240.19 393.32,240.29 393.67,240.38 394.02,240.47 394.38,240.56 394.73,240.65 395.08,240.74 395.44,240.83 395.79,240.91 396.14,240.99 396.50,241.07 396.85,241.15 397.20,241.23
|
||||
397.56,241.30 397.91,241.37 398.26,241.44 398.62,241.50 398.97,241.56 399.32,241.62 399.67,241.68 400.03,241.73 400.38,241.78 400.73,241.83 401.09,241.87 401.44,241.91 401.79,241.95 402.15,241.99 402.50,242.03 402.85,242.06
|
||||
403.21,242.09 403.56,242.12 403.91,242.14 404.26,242.17 404.62,242.19 404.97,242.21 405.32,242.23 405.68,242.24 406.03,242.26 406.38,242.27 406.74,242.29 407.09,242.30 407.44,242.31 407.80,242.32 408.15,242.33 408.50,242.34
|
||||
408.86,242.34 409.21,242.35 409.56,242.36 409.91,242.36 409.91,242.40 409.56,242.40 409.21,242.40 408.86,242.40 408.50,242.40 408.15,242.40 407.80,242.40 407.44,242.40 407.09,242.40 406.74,242.40 406.38,242.40 406.03,242.40
|
||||
405.68,242.40 405.32,242.40 404.97,242.40 404.62,242.40 404.26,242.40 403.91,242.40 403.56,242.40 403.21,242.40 402.85,242.40 402.50,242.40 402.15,242.40 401.79,242.40 401.44,242.40 401.09,242.40 400.73,242.40 400.38,242.40
|
||||
400.03,242.40 399.67,242.40 399.32,242.40 398.97,242.40 398.62,242.40 398.26,242.40 397.91,242.40 397.56,242.40 397.20,242.40 396.85,242.40 396.50,242.40 396.14,242.40 395.79,242.40 395.44,242.40 395.08,242.40 394.73,242.40
|
||||
394.38,242.40 394.02,242.40 393.67,242.40 393.32,242.40 392.97,242.40 392.61,242.40 392.26,242.40 391.91,242.40 391.55,242.40 391.20,242.40 390.85,242.40 390.49,242.40 390.14,242.40 389.79,242.40 389.43,242.40 389.08,242.40
|
||||
388.73,242.40 388.38,242.40 388.02,242.40 387.67,242.40 387.32,242.40 386.96,242.40 386.61,242.40 386.26,242.40 385.90,242.40 385.55,242.40 385.20,242.40 384.84,242.40 384.49,242.40 384.14,242.40 383.78,242.40 383.43,242.40
|
||||
383.08,242.40 382.73,242.40 382.37,242.40 382.02,242.40 381.67,242.40 381.31,242.40 380.96,242.40 380.61,242.40 380.25,242.40 379.90,242.40 379.55,242.40 379.19,242.40 378.84,242.40 378.49,242.40 378.13,242.40 377.78,242.40
|
||||
377.43,242.40 377.08,242.40 376.72,242.40 376.37,242.40 376.02,242.40 375.66,242.40 375.31,242.40 374.96,242.40 374.60,242.40 374.25,242.40 373.90,242.40 373.54,242.40 373.19,242.40 372.84,242.40 372.49,242.40 372.13,242.40
|
||||
371.78,242.40 371.43,242.40 371.07,242.40 370.72,242.40 370.37,242.40 370.01,242.40 369.66,242.40 369.31,242.40 368.95,242.40 368.60,242.40 368.25,242.40 367.89,242.40 367.54,242.40 367.19,242.40 366.84,242.40 366.48,242.40
|
||||
366.13,242.40 365.78,242.40 365.42,242.40 365.07,242.40 364.72,242.40 364.36,242.40 364.01,242.40 363.66,242.40 363.30,242.40 362.95,242.40 362.60,242.40 362.25,242.40 361.89,242.40 361.54,242.40 361.19,242.40 360.83,242.40
|
||||
360.48,242.40 360.13,242.40 359.77,242.40 359.42,242.40 359.07,242.40 358.71,242.40 358.36,242.40 358.01,242.40 357.65,242.40 357.30,242.40 356.95,242.40 356.60,242.40 356.24,242.40 355.89,242.40 355.54,242.40 355.18,242.40
|
||||
354.83,242.40 354.48,242.40 354.12,242.40 353.77,242.40 353.42,242.40 353.06,242.40 352.71,242.40 352.36,242.40 352.00,242.40 351.65,242.40 351.30,242.40 350.95,242.40 350.59,242.40 350.24,242.40 349.89,242.40 349.53,242.40
|
||||
349.18,242.40 348.83,242.40 348.47,242.40 348.12,242.40 347.77,242.40 347.41,242.40 347.06,242.40 346.71,242.40 346.36,242.40 346.00,242.40 345.65,242.40 345.30,242.40 344.94,242.40 344.59,242.40 344.24,242.40 343.88,242.40
|
||||
343.53,242.40 343.18,242.40 342.82,242.40 342.47,242.40 342.12,242.40 341.76,242.40 341.41,242.40 341.06,242.40 340.71,242.40 340.35,242.40 340.00,242.40 339.65,242.40 339.29,242.40 338.94,242.40 338.59,242.40 338.23,242.40
|
||||
337.88,242.40 337.53,242.40 337.17,242.40 336.82,242.40 336.47,242.40 336.12,242.40 335.76,242.40 335.41,242.40 335.06,242.40 334.70,242.40 334.35,242.40 334.00,242.40 333.64,242.40 333.29,242.40 332.94,242.40 332.58,242.40
|
||||
332.23,242.40 331.88,242.40 331.52,242.40 331.17,242.40 330.82,242.40 330.47,242.40 330.11,242.40 329.76,242.40 329.41,242.40 329.05,242.40 328.70,242.40 328.35,242.40 327.99,242.40 327.64,242.40 327.29,242.40 326.93,242.40
|
||||
326.58,242.40 326.23,242.40 325.88,242.40 325.52,242.40 325.17,242.40 324.82,242.40 324.46,242.40 324.11,242.40 323.76,242.40 323.40,242.40 323.05,242.40 322.70,242.40 322.34,242.40 321.99,242.40 321.64,242.40 321.28,242.40
|
||||
320.93,242.40 320.58,242.40 320.23,242.40 319.87,242.40 319.52,242.40 319.17,242.40 318.81,242.40 318.46,242.40 318.11,242.40 317.75,242.40 317.40,242.40 317.05,242.40 316.69,242.40 316.34,242.40 315.99,242.40 315.63,242.40
|
||||
315.28,242.40 314.93,242.40 314.58,242.40 314.22,242.40 313.87,242.40 313.52,242.40 313.16,242.40 312.81,242.40 312.46,242.40 312.10,242.40 311.75,242.40 311.40,242.40 311.04,242.40 310.69,242.40 310.34,242.40 309.99,242.40
|
||||
309.63,242.40 309.28,242.40 308.93,242.40 308.57,242.40 308.22,242.40 307.87,242.40 307.51,242.40 307.16,242.40 306.81,242.40 306.45,242.40 306.10,242.40 305.75,242.40 305.39,242.40 305.04,242.40 304.69,242.40 304.34,242.40
|
||||
303.98,242.40 303.63,242.40 303.28,242.40 302.92,242.40 302.57,242.40 302.22,242.40 301.86,242.40 301.51,242.40 301.16,242.40 300.80,242.40 300.45,242.40 300.10,242.40 299.75,242.40 299.39,242.40 299.04,242.40 298.69,242.40
|
||||
298.33,242.40 297.98,242.40 297.63,242.40 297.27,242.40 296.92,242.40 296.57,242.40 296.21,242.40 295.86,242.40 295.51,242.40 295.15,242.40 294.80,242.40 294.45,242.40 294.10,242.40 293.74,242.40 293.39,242.40 293.04,242.40
|
||||
292.68,242.40 292.33,242.40 291.98,242.40 291.62,242.40 291.27,242.40 290.92,242.40 290.56,242.40 290.21,242.40 289.86,242.40 289.50,242.40 289.15,242.40 288.80,242.40 288.45,242.40 288.09,242.40 287.74,242.40 287.39,242.40
|
||||
287.03,242.40 286.68,242.40 286.33,242.40 285.97,242.40 285.62,242.40 285.27,242.40 284.91,242.40 284.56,242.40 284.21,242.40 283.86,242.40 283.50,242.40 283.15,242.40 282.80,242.40 282.44,242.40 282.09,242.40 281.74,242.40
|
||||
281.38,242.40 281.03,242.40 280.68,242.40 280.32,242.40 279.97,242.40 279.62,242.40 279.26,242.40 278.91,242.40 278.56,242.40 278.21,242.40 277.85,242.40 277.50,242.40 277.15,242.40 276.79,242.40 276.44,242.40 276.09,242.40
|
||||
275.73,242.40 275.38,242.40 275.03,242.40 274.67,242.40 274.32,242.40 273.97,242.40 273.62,242.40 273.26,242.40 272.91,242.40 272.56,242.40 272.20,242.40 271.85,242.40 271.50,242.40 271.14,242.40 270.79,242.40 270.44,242.40
|
||||
270.08,242.40 269.73,242.40 269.38,242.40 269.02,242.40 268.67,242.40 268.32,242.40 267.97,242.40 267.61,242.40 267.26,242.40 266.91,242.40 266.55,242.40 266.20,242.40 265.85,242.40 265.49,242.40 265.14,242.40 264.79,242.40
|
||||
264.43,242.40 264.08,242.40 263.73,242.40 263.38,242.40 263.02,242.40 262.67,242.40 262.32,242.40 261.96,242.40 261.61,242.40 261.26,242.40 260.90,242.40 260.55,242.40 260.20,242.40 259.84,242.40 259.49,242.40 259.14,242.40
|
||||
258.78,242.40 258.43,242.40 258.08,242.40 257.73,242.40 257.37,242.40 257.02,242.40 256.67,242.40 256.31,242.40 255.96,242.40 255.61,242.40 255.25,242.40 254.90,242.40 254.55,242.40 254.19,242.40 253.84,242.40 253.49,242.40
|
||||
253.13,242.40 252.78,242.40 252.43,242.40 252.08,242.40 251.72,242.40 251.37,242.40 251.02,242.40 250.66,242.40 250.31,242.40 249.96,242.40 249.60,242.40 249.25,242.40 248.90,242.40 248.54,242.40 248.19,242.40 247.84,242.40
|
||||
247.49,242.40 247.13,242.40 246.78,242.40 246.43,242.40 246.07,242.40 245.72,242.40 245.37,242.40 245.01,242.40 244.66,242.40 244.31,242.40 243.95,242.40 243.60,242.40 243.25,242.40 242.89,242.40 242.54,242.40 242.19,242.40
|
||||
241.84,242.40 241.48,242.40 241.13,242.40 240.78,242.40 240.42,242.40 240.07,242.40 239.72,242.40 239.36,242.40 239.01,242.40 238.66,242.40 238.30,242.40 237.95,242.40 237.60,242.40 237.25,242.40 236.89,242.40 236.54,242.40
|
||||
236.19,242.40 235.83,242.40 235.48,242.40 235.13,242.40 234.77,242.40 234.42,242.40 234.07,242.40 233.71,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" ><title>Base Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M289.87,242.40 L289.87,58.62 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>New PDF</title>
|
||||
<g fill="none" color="white" stroke="rgb(227, 26, 28)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.500000' points = '87.71,242.36 88.10,242.36 88.49,242.35 88.88,242.35 89.27,242.34 89.66,242.33 90.06,242.32 90.45,242.31 90.84,242.30 91.23,242.29 91.62,242.28 92.01,242.26 92.40,242.25 92.79,242.23 93.18,242.21 93.58,242.19
|
||||
93.97,242.17 94.36,242.15 94.75,242.12 95.14,242.09 95.53,242.06 95.92,242.03 96.31,241.99 96.70,241.95 97.10,241.91 97.49,241.86 97.88,241.82 98.27,241.76 98.66,241.71 99.05,241.65 99.44,241.59 99.83,241.52
|
||||
100.22,241.45 100.62,241.38 101.01,241.30 101.40,241.22 101.79,241.14 102.18,241.05 102.57,240.95 102.96,240.85 103.35,240.75 103.74,240.64 104.14,240.53 104.53,240.41 104.92,240.29 105.31,240.16 105.70,240.03 106.09,239.89
|
||||
106.48,239.75 106.87,239.61 107.26,239.46 107.65,239.30 108.05,239.14 108.44,238.97 108.83,238.80 109.22,238.63 109.61,238.45 110.00,238.26 110.39,238.07 110.78,237.87 111.17,237.66 111.57,237.45 111.96,237.23 112.35,237.00
|
||||
112.74,236.77 113.13,236.53 113.52,236.28 113.91,236.02 114.30,235.75 114.69,235.46 115.09,235.17 115.48,234.86 115.87,234.54 116.26,234.21 116.65,233.86 117.04,233.49 117.43,233.11 117.82,232.71 118.21,232.28 118.61,231.84
|
||||
119.00,231.37 119.39,230.88 119.78,230.36 120.17,229.81 120.56,229.24 120.95,228.63 121.34,228.00 121.73,227.33 122.13,226.62 122.52,225.88 122.91,225.10 123.30,224.27 123.69,223.41 124.08,222.51 124.47,221.56 124.86,220.56
|
||||
125.25,219.52 125.65,218.43 126.04,217.30 126.43,216.11 126.82,214.87 127.21,213.58 127.60,212.23 127.99,210.84 128.38,209.38 128.77,207.88 129.17,206.32 129.56,204.71 129.95,203.05 130.34,201.33 130.73,199.55 131.12,197.73
|
||||
131.51,195.85 131.90,193.93 132.29,191.95 132.68,189.93 133.08,187.86 133.47,185.74 133.86,183.58 134.25,181.38 134.64,179.14 135.03,176.86 135.42,174.54 135.81,172.20 136.20,169.82 136.60,167.41 136.99,164.98 137.38,162.53
|
||||
137.77,160.06 138.16,157.57 138.55,155.07 138.94,152.56 139.33,150.04 139.72,147.52 140.12,145.00 140.51,142.48 140.90,139.96 141.29,137.46 141.68,134.97 142.07,132.49 142.46,130.04 142.85,127.61 143.24,125.21 143.64,122.83
|
||||
144.03,120.49 144.42,118.19 144.81,115.92 145.20,113.70 145.59,111.53 145.98,109.41 146.37,107.34 146.76,105.32 147.16,103.37 147.55,101.48 147.94,99.65 148.33,97.89 148.72,96.20 149.11,94.59 149.50,93.05 149.89,91.59
|
||||
150.28,90.21 150.68,88.92 151.07,87.71 151.46,86.58 151.85,85.55 152.24,84.60 152.63,83.75 153.02,83.00 153.41,82.33 153.80,81.77 154.20,81.30 154.59,80.93 154.98,80.65 155.37,80.48 155.76,80.40 156.15,80.42
|
||||
156.54,80.55 156.93,80.77 157.32,81.08 157.71,81.50 158.11,82.00 158.50,82.61 158.89,83.30 159.28,84.09 159.67,84.97 160.06,85.93 160.45,86.99 160.84,88.12 161.23,89.33 161.63,90.63 162.02,92.00 162.41,93.44
|
||||
162.80,94.95 163.19,96.53 163.58,98.17 163.97,99.87 164.36,101.62 164.75,103.43 165.15,105.29 165.54,107.20 165.93,109.15 166.32,111.13 166.71,113.16 167.10,115.21 167.49,117.29 167.88,119.40 168.27,121.52 168.67,123.67
|
||||
169.06,125.82 169.45,127.99 169.84,130.16 170.23,132.34 170.62,134.52 171.01,136.69 171.40,138.86 171.79,141.02 172.19,143.16 172.58,145.30 172.97,147.41 173.36,149.50 173.75,151.57 174.14,153.62 174.53,155.64 174.92,157.63
|
||||
175.31,159.59 175.71,161.52 176.10,163.41 176.49,165.27 176.88,167.09 177.27,168.87 177.66,170.62 178.05,172.32 178.44,173.98 178.83,175.60 179.22,177.18 179.62,178.72 180.01,180.21 180.40,181.66 180.79,183.07 181.18,184.44
|
||||
181.57,185.76 181.96,187.05 182.35,188.29 182.74,189.49 183.14,190.66 183.53,191.78 183.92,192.87 184.31,193.92 184.70,194.93 185.09,195.91 185.48,196.85 185.87,197.77 186.26,198.65 186.66,199.50 187.05,200.33 187.44,201.13
|
||||
187.83,201.90 188.22,202.65 188.61,203.37 189.00,204.08 189.39,204.76 189.78,205.43 190.18,206.07 190.57,206.71 190.96,207.32 191.35,207.92 191.74,208.51 192.13,209.08 192.52,209.65 192.91,210.20 193.30,210.74 193.70,211.27
|
||||
194.09,211.80 194.48,212.32 194.87,212.83 195.26,213.33 195.65,213.83 196.04,214.32 196.43,214.80 196.82,215.28 197.22,215.76 197.61,216.23 198.00,216.70 198.39,217.16 198.78,217.62 199.17,218.07 199.56,218.52 199.95,218.96
|
||||
200.34,219.40 200.74,219.84 201.13,220.28 201.52,220.71 201.91,221.13 202.30,221.55 202.69,221.97 203.08,222.38 203.47,222.79 203.86,223.20 204.25,223.60 204.65,224.00 205.04,224.39 205.43,224.78 205.82,225.16 206.21,225.54
|
||||
206.60,225.91 206.99,226.28 207.38,226.65 207.77,227.01 208.17,227.36 208.56,227.71 208.95,228.06 209.34,228.40 209.73,228.73 210.12,229.06 210.51,229.38 210.90,229.70 211.29,230.01 211.69,230.31 212.08,230.61 212.47,230.90
|
||||
212.86,231.19 213.25,231.47 213.64,231.74 214.03,232.01 214.42,232.27 214.81,232.52 215.21,232.77 215.60,233.01 215.99,233.24 216.38,233.46 216.77,233.68 217.16,233.89 217.55,234.10 217.94,234.30 218.33,234.49 218.73,234.67
|
||||
219.12,234.85 219.51,235.02 219.90,235.18 220.29,235.34 220.68,235.49 221.07,235.63 221.46,235.77 221.85,235.90 222.25,236.03 222.64,236.15 223.03,236.26 223.42,236.37 223.81,236.47 224.20,236.57 224.59,236.66 224.98,236.75
|
||||
225.37,236.84 225.76,236.91 226.16,236.99 226.55,237.06 226.94,237.12 227.33,237.19 227.72,237.25 228.11,237.30 228.50,237.36 228.89,237.41 229.28,237.46 229.68,237.50 230.07,237.55 230.46,237.59 230.85,237.63 231.24,237.67
|
||||
231.63,237.71 232.02,237.75 232.41,237.78 232.80,237.82 233.20,237.86 233.59,237.89 233.98,237.93 234.37,237.96 234.76,238.00 235.15,238.04 235.54,238.07 235.93,238.11 236.32,238.15 236.72,238.18 237.11,238.22 237.50,238.26
|
||||
237.89,238.29 238.28,238.33 238.67,238.37 239.06,238.40 239.45,238.44 239.84,238.47 240.24,238.50 240.63,238.53 241.02,238.56 241.41,238.59 241.80,238.62 242.19,238.65 242.58,238.67 242.97,238.69 243.36,238.71 243.76,238.73
|
||||
244.15,238.75 244.54,238.76 244.93,238.77 245.32,238.78 245.71,238.79 246.10,238.80 246.49,238.80 246.88,238.81 247.28,238.81 247.67,238.81 248.06,238.80 248.45,238.80 248.84,238.80 249.23,238.80 249.62,238.79 250.01,238.79
|
||||
250.40,238.79 250.79,238.78 251.19,238.78 251.58,238.78 251.97,238.79 252.36,238.79 252.75,238.80 253.14,238.81 253.53,238.82 253.92,238.83 254.31,238.85 254.71,238.87 255.10,238.90 255.49,238.92 255.88,238.96 256.27,238.99
|
||||
256.66,239.03 257.05,239.07 257.44,239.12 257.83,239.17 258.23,239.23 258.62,239.28 259.01,239.35 259.40,239.41 259.79,239.48 260.18,239.55 260.57,239.62 260.96,239.70 261.35,239.78 261.75,239.86 262.14,239.94 262.53,240.02
|
||||
262.92,240.10 263.31,240.19 263.70,240.27 264.09,240.36 264.48,240.44 264.87,240.53 265.27,240.61 265.66,240.70 266.05,240.78 266.44,240.86 266.83,240.94 267.22,241.02 267.61,241.09 268.00,241.17 268.39,241.24 268.79,241.31
|
||||
269.18,241.38 269.57,241.44 269.96,241.50 270.35,241.56 270.74,241.62 271.13,241.68 271.52,241.73 271.91,241.78 272.31,241.82 272.70,241.87 273.09,241.91 273.48,241.95 273.87,241.99 274.26,242.02 274.65,242.05 275.04,242.08
|
||||
275.43,242.11 275.82,242.14 276.22,242.16 276.61,242.18 277.00,242.20 277.39,242.22 277.78,242.24 278.17,242.26 278.56,242.27 278.95,242.28 279.34,242.30 279.74,242.31 280.13,242.32 280.52,242.33 280.91,242.33 281.30,242.34
|
||||
281.69,242.35 282.08,242.35 282.47,242.36 282.86,242.36 282.86,242.40 282.47,242.40 282.08,242.40 281.69,242.40 281.30,242.40 280.91,242.40 280.52,242.40 280.13,242.40 279.74,242.40 279.34,242.40 278.95,242.40 278.56,242.40
|
||||
278.17,242.40 277.78,242.40 277.39,242.40 277.00,242.40 276.61,242.40 276.22,242.40 275.82,242.40 275.43,242.40 275.04,242.40 274.65,242.40 274.26,242.40 273.87,242.40 273.48,242.40 273.09,242.40 272.70,242.40 272.31,242.40
|
||||
271.91,242.40 271.52,242.40 271.13,242.40 270.74,242.40 270.35,242.40 269.96,242.40 269.57,242.40 269.18,242.40 268.79,242.40 268.39,242.40 268.00,242.40 267.61,242.40 267.22,242.40 266.83,242.40 266.44,242.40 266.05,242.40
|
||||
265.66,242.40 265.27,242.40 264.87,242.40 264.48,242.40 264.09,242.40 263.70,242.40 263.31,242.40 262.92,242.40 262.53,242.40 262.14,242.40 261.75,242.40 261.35,242.40 260.96,242.40 260.57,242.40 260.18,242.40 259.79,242.40
|
||||
259.40,242.40 259.01,242.40 258.62,242.40 258.23,242.40 257.83,242.40 257.44,242.40 257.05,242.40 256.66,242.40 256.27,242.40 255.88,242.40 255.49,242.40 255.10,242.40 254.71,242.40 254.31,242.40 253.92,242.40 253.53,242.40
|
||||
253.14,242.40 252.75,242.40 252.36,242.40 251.97,242.40 251.58,242.40 251.19,242.40 250.79,242.40 250.40,242.40 250.01,242.40 249.62,242.40 249.23,242.40 248.84,242.40 248.45,242.40 248.06,242.40 247.67,242.40 247.28,242.40
|
||||
246.88,242.40 246.49,242.40 246.10,242.40 245.71,242.40 245.32,242.40 244.93,242.40 244.54,242.40 244.15,242.40 243.76,242.40 243.36,242.40 242.97,242.40 242.58,242.40 242.19,242.40 241.80,242.40 241.41,242.40 241.02,242.40
|
||||
240.63,242.40 240.24,242.40 239.84,242.40 239.45,242.40 239.06,242.40 238.67,242.40 238.28,242.40 237.89,242.40 237.50,242.40 237.11,242.40 236.72,242.40 236.32,242.40 235.93,242.40 235.54,242.40 235.15,242.40 234.76,242.40
|
||||
234.37,242.40 233.98,242.40 233.59,242.40 233.20,242.40 232.80,242.40 232.41,242.40 232.02,242.40 231.63,242.40 231.24,242.40 230.85,242.40 230.46,242.40 230.07,242.40 229.68,242.40 229.28,242.40 228.89,242.40 228.50,242.40
|
||||
228.11,242.40 227.72,242.40 227.33,242.40 226.94,242.40 226.55,242.40 226.16,242.40 225.76,242.40 225.37,242.40 224.98,242.40 224.59,242.40 224.20,242.40 223.81,242.40 223.42,242.40 223.03,242.40 222.64,242.40 222.25,242.40
|
||||
221.85,242.40 221.46,242.40 221.07,242.40 220.68,242.40 220.29,242.40 219.90,242.40 219.51,242.40 219.12,242.40 218.73,242.40 218.33,242.40 217.94,242.40 217.55,242.40 217.16,242.40 216.77,242.40 216.38,242.40 215.99,242.40
|
||||
215.60,242.40 215.21,242.40 214.81,242.40 214.42,242.40 214.03,242.40 213.64,242.40 213.25,242.40 212.86,242.40 212.47,242.40 212.08,242.40 211.69,242.40 211.29,242.40 210.90,242.40 210.51,242.40 210.12,242.40 209.73,242.40
|
||||
209.34,242.40 208.95,242.40 208.56,242.40 208.17,242.40 207.77,242.40 207.38,242.40 206.99,242.40 206.60,242.40 206.21,242.40 205.82,242.40 205.43,242.40 205.04,242.40 204.65,242.40 204.25,242.40 203.86,242.40 203.47,242.40
|
||||
203.08,242.40 202.69,242.40 202.30,242.40 201.91,242.40 201.52,242.40 201.13,242.40 200.74,242.40 200.34,242.40 199.95,242.40 199.56,242.40 199.17,242.40 198.78,242.40 198.39,242.40 198.00,242.40 197.61,242.40 197.22,242.40
|
||||
196.82,242.40 196.43,242.40 196.04,242.40 195.65,242.40 195.26,242.40 194.87,242.40 194.48,242.40 194.09,242.40 193.70,242.40 193.30,242.40 192.91,242.40 192.52,242.40 192.13,242.40 191.74,242.40 191.35,242.40 190.96,242.40
|
||||
190.57,242.40 190.18,242.40 189.78,242.40 189.39,242.40 189.00,242.40 188.61,242.40 188.22,242.40 187.83,242.40 187.44,242.40 187.05,242.40 186.66,242.40 186.26,242.40 185.87,242.40 185.48,242.40 185.09,242.40 184.70,242.40
|
||||
184.31,242.40 183.92,242.40 183.53,242.40 183.14,242.40 182.74,242.40 182.35,242.40 181.96,242.40 181.57,242.40 181.18,242.40 180.79,242.40 180.40,242.40 180.01,242.40 179.62,242.40 179.22,242.40 178.83,242.40 178.44,242.40
|
||||
178.05,242.40 177.66,242.40 177.27,242.40 176.88,242.40 176.49,242.40 176.10,242.40 175.71,242.40 175.31,242.40 174.92,242.40 174.53,242.40 174.14,242.40 173.75,242.40 173.36,242.40 172.97,242.40 172.58,242.40 172.19,242.40
|
||||
171.79,242.40 171.40,242.40 171.01,242.40 170.62,242.40 170.23,242.40 169.84,242.40 169.45,242.40 169.06,242.40 168.67,242.40 168.27,242.40 167.88,242.40 167.49,242.40 167.10,242.40 166.71,242.40 166.32,242.40 165.93,242.40
|
||||
165.54,242.40 165.15,242.40 164.75,242.40 164.36,242.40 163.97,242.40 163.58,242.40 163.19,242.40 162.80,242.40 162.41,242.40 162.02,242.40 161.63,242.40 161.23,242.40 160.84,242.40 160.45,242.40 160.06,242.40 159.67,242.40
|
||||
159.28,242.40 158.89,242.40 158.50,242.40 158.11,242.40 157.71,242.40 157.32,242.40 156.93,242.40 156.54,242.40 156.15,242.40 155.76,242.40 155.37,242.40 154.98,242.40 154.59,242.40 154.20,242.40 153.80,242.40 153.41,242.40
|
||||
153.02,242.40 152.63,242.40 152.24,242.40 151.85,242.40 151.46,242.40 151.07,242.40 150.68,242.40 150.28,242.40 149.89,242.40 149.50,242.40 149.11,242.40 148.72,242.40 148.33,242.40 147.94,242.40 147.55,242.40 147.16,242.40
|
||||
146.76,242.40 146.37,242.40 145.98,242.40 145.59,242.40 145.20,242.40 144.81,242.40 144.42,242.40 144.03,242.40 143.64,242.40 143.24,242.40 142.85,242.40 142.46,242.40 142.07,242.40 141.68,242.40 141.29,242.40 140.90,242.40
|
||||
140.51,242.40 140.12,242.40 139.72,242.40 139.33,242.40 138.94,242.40 138.55,242.40 138.16,242.40 137.77,242.40 137.38,242.40 136.99,242.40 136.60,242.40 136.20,242.40 135.81,242.40 135.42,242.40 135.03,242.40 134.64,242.40
|
||||
134.25,242.40 133.86,242.40 133.47,242.40 133.08,242.40 132.68,242.40 132.29,242.40 131.90,242.40 131.51,242.40 131.12,242.40 130.73,242.40 130.34,242.40 129.95,242.40 129.56,242.40 129.17,242.40 128.77,242.40 128.38,242.40
|
||||
127.99,242.40 127.60,242.40 127.21,242.40 126.82,242.40 126.43,242.40 126.04,242.40 125.65,242.40 125.25,242.40 124.86,242.40 124.47,242.40 124.08,242.40 123.69,242.40 123.30,242.40 122.91,242.40 122.52,242.40 122.13,242.40
|
||||
121.73,242.40 121.34,242.40 120.95,242.40 120.56,242.40 120.17,242.40 119.78,242.40 119.39,242.40 119.00,242.40 118.61,242.40 118.21,242.40 117.82,242.40 117.43,242.40 117.04,242.40 116.65,242.40 116.26,242.40 115.87,242.40
|
||||
115.48,242.40 115.09,242.40 114.69,242.40 114.30,242.40 113.91,242.40 113.52,242.40 113.13,242.40 112.74,242.40 112.35,242.40 111.96,242.40 111.57,242.40 111.17,242.40 110.78,242.40 110.39,242.40 110.00,242.40 109.61,242.40
|
||||
109.22,242.40 108.83,242.40 108.44,242.40 108.05,242.40 107.65,242.40 107.26,242.40 106.87,242.40 106.48,242.40 106.09,242.40 105.70,242.40 105.31,242.40 104.92,242.40 104.53,242.40 104.14,242.40 103.74,242.40 103.35,242.40
|
||||
102.96,242.40 102.57,242.40 102.18,242.40 101.79,242.40 101.40,242.40 101.01,242.40 100.62,242.40 100.22,242.40 99.83,242.40 99.44,242.40 99.05,242.40 98.66,242.40 98.27,242.40 97.88,242.40 97.49,242.40 97.10,242.40
|
||||
96.70,242.40 96.31,242.40 95.92,242.40 95.53,242.40 95.14,242.40 94.75,242.40 94.36,242.40 93.97,242.40 93.58,242.40 93.18,242.40 92.79,242.40 92.40,242.40 92.01,242.40 91.62,242.40 91.23,242.40 90.84,242.40
|
||||
90.45,242.40 90.06,242.40 89.66,242.40 89.27,242.40 88.88,242.40 88.49,242.40 88.10,242.40 87.71,242.40 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New Mean</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M162.02,242.40 L162.02,92.00 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,242.40 L424.82,242.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,130.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Density (a.u.)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,291.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Average time (µs)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 39 KiB |
@@ -0,0 +1,329 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 450 300"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
>
|
||||
|
||||
<title>Gnuplot</title>
|
||||
<desc>Produced by GNUPLOT 6.0 patchlevel 0 </desc>
|
||||
|
||||
<g id="gnuplot_canvas">
|
||||
|
||||
<rect x="0" y="0" width="450" height="300" fill="none"/>
|
||||
<defs>
|
||||
|
||||
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
|
||||
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
|
||||
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
|
||||
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
|
||||
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
|
||||
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
|
||||
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
|
||||
</filter>
|
||||
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
|
||||
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
|
||||
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L424.82,224.40 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L81.53,224.40 '/> <g transform="translate(64.14,228.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,190.00 L424.82,190.00 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,190.00 L81.53,190.00 '/> <g transform="translate(64.14,193.90)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,155.60 L424.82,155.60 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,155.60 L81.53,155.60 '/> <g transform="translate(64.14,159.50)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,121.20 L424.82,121.20 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,121.20 L81.53,121.20 '/> <g transform="translate(64.14,125.10)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,86.81 L424.82,86.81 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,86.81 L81.53,86.81 '/> <g transform="translate(64.14,90.71)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,52.41 L424.82,52.41 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,52.41 L81.53,52.41 '/> <g transform="translate(64.14,56.31)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,18.01 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L81.53,18.01 '/> <g transform="translate(64.14,21.91)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
|
||||
<text><tspan font-family="Helvetica" > 120</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M72.53,224.40 L72.53,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,224.40 L72.53,215.40 '/> <g transform="translate(72.53,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 0</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M107.76,224.40 L107.76,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M107.76,224.40 L107.76,215.40 '/> <g transform="translate(107.76,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 10</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M142.99,224.40 L142.99,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M142.99,224.40 L142.99,215.40 '/> <g transform="translate(142.99,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 20</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M178.22,224.40 L178.22,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M178.22,224.40 L178.22,215.40 '/> <g transform="translate(178.22,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 30</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M213.45,224.40 L213.45,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M213.45,224.40 L213.45,215.40 '/> <g transform="translate(213.45,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 40</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M248.68,224.40 L248.68,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M248.68,224.40 L248.68,215.40 '/> <g transform="translate(248.68,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 50</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M283.90,224.40 L283.90,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M283.90,224.40 L283.90,215.40 '/> <g transform="translate(283.90,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 60</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M319.13,224.40 L319.13,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M319.13,224.40 L319.13,215.40 '/> <g transform="translate(319.13,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 70</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M354.36,224.40 L354.36,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M354.36,224.40 L354.36,215.40 '/> <g transform="translate(354.36,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 80</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M389.59,224.40 L389.59,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M389.59,224.40 L389.59,215.40 '/> <g transform="translate(389.59,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 90</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M424.82,224.40 L424.82,18.01 '/></g>
|
||||
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M424.82,224.40 L424.82,215.40 '/> <g transform="translate(424.82,246.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" > 100</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/></g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb(227, 26, 28)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,48.93 407.21,48.64 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_2" fill="none"><title>gnuplot_plot_2</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g stroke='none' shape-rendering='crispEdges'>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 72.53,224.40 72.53,224.40 '/>
|
||||
<polygon fill = 'rgb( 31, 120, 180)' fill-opacity = '0.250000' points = '72.53,224.40 407.21,54.33 407.21,54.10 '/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_3" ><title>Base sample</title>
|
||||
<g fill="none" color="white" stroke="rgb( 31, 120, 180)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb(227, 26, 28)' d='M72.53,224.40 L407.21,48.79 '/></g>
|
||||
</g>
|
||||
<g id="gnuplot_plot_4" ><title>New sample</title>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='rgb( 31, 120, 180)' d='M72.53,224.40 L407.21,54.22 '/></g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<path stroke='black' d='M72.53,18.01 L72.53,224.40 L424.82,224.40 L424.82,18.01 L72.53,18.01 Z '/> <g transform="translate(19.18,121.21) rotate(270.00)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Total sample time (ms)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
<g transform="translate(248.67,273.30)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="middle">
|
||||
<text><tspan font-family="Helvetica" >Iterations (x 10</tspan><tspan font-family="Helvetica" font-size="9.6" dy="-6.00px">3</tspan><tspan font-family="Helvetica" font-size="12.0" dy="6.00px">)</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 22 KiB |
108
benchmarks/babyjubjub/generate_random_fr/report/slope.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:slope
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="448" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,448 86,448 "/>
|
||||
<text x="77" y="401" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,401 86,401 "/>
|
||||
<text x="77" y="354" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,354 86,354 "/>
|
||||
<text x="77" y="307" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,307 86,307 "/>
|
||||
<text x="77" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,260 86,260 "/>
|
||||
<text x="77" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
120
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,213 86,213 "/>
|
||||
<text x="77" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
140
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,167 86,167 "/>
|
||||
<text x="77" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
160
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,120 86,120 "/>
|
||||
<text x="77" y="73" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
180
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,73 86,73 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="141" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.317
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="141,473 141,478 "/>
|
||||
<text x="217" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.318
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="217,473 217,478 "/>
|
||||
<text x="292" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.319
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="292,473 292,478 "/>
|
||||
<text x="368" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.32
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="368,473 368,478 "/>
|
||||
<text x="444" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.321
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="444,473 444,478 "/>
|
||||
<text x="519" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.322
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="519,473 519,478 "/>
|
||||
<text x="595" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.323
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="595,473 595,478 "/>
|
||||
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.324
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
|
||||
<text x="746" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.325
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="746,473 746,478 "/>
|
||||
<text x="822" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.326
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="822,473 822,478 "/>
|
||||
<text x="897" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.327
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="897,473 897,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,469 98,468 100,467 102,467 103,466 105,465 107,465 109,464 110,463 112,463 114,462 115,461 117,461 119,460 120,459 122,459 124,458 125,457 127,457 129,456 131,455 132,455 134,454 136,453 137,453 139,452 141,451 142,451 144,450 146,449 147,449 149,448 151,447 153,446 154,445 156,445 158,444 159,443 161,442 163,441 164,440 166,439 168,438 169,437 171,436 173,435 175,434 176,433 178,432 180,431 181,430 183,428 185,427 186,426 188,425 190,424 191,423 193,421 195,420 197,419 198,418 200,417 202,415 203,414 205,413 207,411 208,410 210,409 212,407 214,406 215,404 217,403 219,401 220,400 222,398 224,397 225,395 227,394 229,392 230,390 232,389 234,387 236,386 237,384 239,383 241,381 242,379 244,378 246,376 247,375 249,373 251,372 252,370 254,368 256,367 258,365 259,363 261,362 263,360 264,358 266,357 268,355 269,353 271,351 273,350 274,348 276,346 278,344 280,342 281,340 283,339 285,337 286,335 288,333 290,331 291,329 293,327 295,325 296,323 298,322 300,320 302,318 303,316 305,314 307,312 308,310 310,307 312,305 313,303 315,301 317,299 318,297 320,294 322,292 324,290 325,287 327,285 329,283 330,280 332,278 334,275 335,273 337,271 339,268 341,266 342,263 344,261 346,259 347,256 349,254 351,251 352,249 354,247 356,244 357,242 359,240 361,238 363,235 364,233 366,231 368,229 369,227 371,224 373,222 374,220 376,218 378,216 379,214 381,211 383,209 385,207 386,205 388,203 390,201 391,198 393,196 395,194 396,192 398,190 400,187 401,185 403,183 405,181 407,179 408,177 410,175 412,173 413,171 415,170 417,168 418,166 420,164 422,163 423,161 425,160 427,158 429,157 430,155 432,154 434,153 435,151 437,150 439,149 440,148 442,146 444,145 445,144 447,143 449,141 451,140 452,139 454,137 456,136 457,135 459,133 461,132 462,130 464,129 466,128 468,126 469,125 471,123 473,122 474,121 476,119 478,118 479,117 481,115 483,114 484,113 486,112 488,111 490,109 491,108 493,107 495,106 496,105 498,104 500,103 501,102 503,101 505,101 506,100 508,99 510,98 512,98 513,97 515,97 517,96 518,96 520,95 522,95 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,95 545,95 547,96 549,96 550,96 552,97 554,97 556,98 557,98 559,99 561,99 562,100 564,100 566,101 567,102 569,102 571,103 573,103 574,104 576,105 578,106 579,107 581,107 583,108 584,109 586,111 588,112 589,113 591,114 593,115 595,117 596,118 598,120 600,121 601,123 603,125 605,126 606,128 608,130 610,131 611,133 613,135 615,137 617,139 618,140 620,142 622,144 623,146 625,148 627,150 628,152 630,154 632,155 633,157 635,159 637,161 639,163 640,165 642,167 644,168 645,170 647,172 649,174 650,176 652,177 654,179 655,181 657,183 659,185 661,187 662,189 664,191 666,193 667,195 669,197 671,199 672,201 674,203 676,206 677,208 679,210 681,213 683,215 684,218 686,220 688,223 689,226 691,228 693,231 694,233 696,236 698,238 700,241 701,244 703,246 705,249 706,251 708,254 710,256 711,259 713,261 715,264 716,266 718,268 720,271 722,273 723,276 725,278 727,281 728,284 730,286 732,289 733,291 735,294 737,297 738,299 740,302 742,305 744,307 745,310 747,313 749,315 750,318 752,321 754,323 755,326 757,328 759,331 760,333 762,336 764,338 766,341 767,343 769,345 771,347 772,349 774,351 776,353 777,355 779,357 781,359 782,361 784,363 786,365 788,367 789,368 791,370 793,372 794,374 796,375 798,377 799,379 801,381 803,382 804,384 806,386 808,388 810,390 811,391 813,393 815,395 816,397 818,398 820,400 821,402 823,404 825,405 827,407 828,409 830,411 832,412 833,414 835,415 837,417 838,419 840,420 842,422 843,423 845,425 847,426 849,427 850,429 852,430 854,431 855,433 857,434 859,435 860,436 862,437 864,438 865,439 867,440 869,441 871,442 872,443 874,444 876,445 877,445 879,446 881,447 882,448 884,449 886,450 887,451 889,451 891,452 893,453 894,454 896,455 898,456 899,457 901,458 903,459 904,459 906,460 908,461 909,462 911,463 913,464 915,464 916,465 918,466 920,467 921,467 923,468 925,468 926,469 928,470 930,470 932,471 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,440 166,439 168,438 169,437 171,436 173,435 175,434 176,433 178,432 180,431 181,430 183,428 185,427 186,426 188,425 190,424 191,423 193,421 195,420 197,419 198,418 200,417 202,415 203,414 205,413 207,411 208,410 210,409 212,407 214,406 215,404 217,403 219,401 220,400 222,398 224,397 225,395 227,394 229,392 230,390 232,389 234,387 236,386 237,384 239,383 241,381 242,379 244,378 246,376 247,375 249,373 251,372 252,370 254,368 256,367 258,365 259,363 261,362 263,360 264,358 266,357 268,355 269,353 271,351 273,350 274,348 276,346 278,344 280,342 281,340 283,339 285,337 286,335 288,333 290,331 291,329 293,327 295,325 296,323 298,322 300,320 302,318 303,316 305,314 307,312 308,310 310,307 312,305 313,303 315,301 317,299 318,297 320,294 322,292 324,290 325,287 327,285 329,283 330,280 332,278 334,275 335,273 337,271 339,268 341,266 342,263 344,261 346,259 347,256 349,254 351,251 352,249 354,247 356,244 357,242 359,240 361,238 363,235 364,233 366,231 368,229 369,227 371,224 373,222 374,220 376,218 378,216 379,214 381,211 383,209 385,207 386,205 388,203 390,201 391,198 393,196 395,194 396,192 398,190 400,187 401,185 403,183 405,181 407,179 408,177 410,175 412,173 413,171 415,170 417,168 418,166 420,164 422,163 423,161 425,160 427,158 429,157 430,155 432,154 434,153 435,151 437,150 439,149 440,148 442,146 444,145 445,144 447,143 449,141 451,140 452,139 454,137 456,136 457,135 459,133 461,132 462,130 464,129 466,128 468,126 469,125 471,123 473,122 474,121 476,119 478,118 479,117 481,115 483,114 484,113 486,112 488,111 490,109 491,108 493,107 495,106 496,105 498,104 500,103 501,102 503,101 505,101 506,100 508,99 510,98 512,98 513,97 515,97 517,96 518,96 520,95 522,95 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,95 545,95 547,96 549,96 550,96 552,97 554,97 556,98 557,98 559,99 561,99 562,100 564,100 566,101 567,102 569,102 571,103 573,103 574,104 576,105 578,106 579,107 581,107 583,108 584,109 586,111 588,112 589,113 591,114 593,115 595,117 596,118 598,120 600,121 601,123 603,125 605,126 606,128 608,130 610,131 611,133 613,135 615,137 617,139 618,140 620,142 622,144 623,146 625,148 627,150 628,152 630,154 632,155 633,157 635,159 637,161 639,163 640,165 642,167 644,168 645,170 647,172 649,174 650,176 652,177 654,179 655,181 657,183 659,185 661,187 662,189 664,191 666,193 667,195 669,197 671,199 672,201 674,203 676,206 677,208 679,210 681,213 683,215 684,218 686,220 688,223 689,226 691,228 693,231 694,233 696,236 698,238 700,241 701,244 703,246 705,249 706,251 708,254 710,256 711,259 713,261 715,264 716,266 718,268 720,271 722,273 723,276 725,278 727,281 728,284 730,286 732,289 733,291 735,294 737,297 738,299 740,302 742,305 744,307 745,310 747,313 749,315 750,318 752,321 754,323 755,326 757,328 759,331 760,333 762,336 764,338 766,341 767,343 769,345 771,347 772,349 774,351 776,353 777,355 779,357 781,359 782,361 784,363 786,365 788,367 789,368 791,370 793,372 794,374 796,375 798,377 799,379 801,381 803,382 804,384 806,386 808,388 810,390 811,391 813,393 815,395 816,397 818,398 820,400 821,402 823,404 825,405 827,407 828,409 830,411 832,412 833,414 835,415 837,417 838,419 840,420 842,422 843,423 845,425 847,426 849,427 850,429 852,430 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="529,473 529,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
108
benchmarks/babyjubjub/generate_random_fr/report/typical.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<svg width="960" height="540" viewBox="0 0 960 540" xmlns="http://www.w3.org/2000/svg">
|
||||
<text x="480" y="32" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="16.129032258064516" opacity="1" fill="#000000">
|
||||
babyjubjub/generate_random_fr:typical
|
||||
</text>
|
||||
<text x="27" y="263" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000" transform="rotate(270, 27, 263)">
|
||||
Density (a.u.)
|
||||
</text>
|
||||
<text x="510" y="513" dy="-0.5ex" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Average time (µs)
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="86,53 86,472 "/>
|
||||
<text x="77" y="448" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
20
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,448 86,448 "/>
|
||||
<text x="77" y="401" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
40
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,401 86,401 "/>
|
||||
<text x="77" y="354" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
60
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,354 86,354 "/>
|
||||
<text x="77" y="307" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
80
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,307 86,307 "/>
|
||||
<text x="77" y="260" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
100
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,260 86,260 "/>
|
||||
<text x="77" y="213" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
120
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,213 86,213 "/>
|
||||
<text x="77" y="167" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
140
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,167 86,167 "/>
|
||||
<text x="77" y="120" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
160
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,120 86,120 "/>
|
||||
<text x="77" y="73" dy="0.5ex" text-anchor="end" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
180
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="81,73 86,73 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="87,473 932,473 "/>
|
||||
<text x="141" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.317
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="141,473 141,478 "/>
|
||||
<text x="217" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.318
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="217,473 217,478 "/>
|
||||
<text x="292" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.319
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="292,473 292,478 "/>
|
||||
<text x="368" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.32
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="368,473 368,478 "/>
|
||||
<text x="444" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.321
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="444,473 444,478 "/>
|
||||
<text x="519" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.322
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="519,473 519,478 "/>
|
||||
<text x="595" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.323
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="595,473 595,478 "/>
|
||||
<text x="670" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.324
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="670,473 670,478 "/>
|
||||
<text x="746" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.325
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="746,473 746,478 "/>
|
||||
<text x="822" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.326
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="822,473 822,478 "/>
|
||||
<text x="897" y="483" dy="0.76em" text-anchor="middle" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
1.327
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#000000" stroke-width="1" points="897,473 897,478 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="87,472 88,472 90,471 92,471 93,470 95,469 97,469 98,468 100,467 102,467 103,466 105,465 107,465 109,464 110,463 112,463 114,462 115,461 117,461 119,460 120,459 122,459 124,458 125,457 127,457 129,456 131,455 132,455 134,454 136,453 137,453 139,452 141,451 142,451 144,450 146,449 147,449 149,448 151,447 153,446 154,445 156,445 158,444 159,443 161,442 163,441 164,440 166,439 168,438 169,437 171,436 173,435 175,434 176,433 178,432 180,431 181,430 183,428 185,427 186,426 188,425 190,424 191,423 193,421 195,420 197,419 198,418 200,417 202,415 203,414 205,413 207,411 208,410 210,409 212,407 214,406 215,404 217,403 219,401 220,400 222,398 224,397 225,395 227,394 229,392 230,390 232,389 234,387 236,386 237,384 239,383 241,381 242,379 244,378 246,376 247,375 249,373 251,372 252,370 254,368 256,367 258,365 259,363 261,362 263,360 264,358 266,357 268,355 269,353 271,351 273,350 274,348 276,346 278,344 280,342 281,340 283,339 285,337 286,335 288,333 290,331 291,329 293,327 295,325 296,323 298,322 300,320 302,318 303,316 305,314 307,312 308,310 310,307 312,305 313,303 315,301 317,299 318,297 320,294 322,292 324,290 325,287 327,285 329,283 330,280 332,278 334,275 335,273 337,271 339,268 341,266 342,263 344,261 346,259 347,256 349,254 351,251 352,249 354,247 356,244 357,242 359,240 361,238 363,235 364,233 366,231 368,229 369,227 371,224 373,222 374,220 376,218 378,216 379,214 381,211 383,209 385,207 386,205 388,203 390,201 391,198 393,196 395,194 396,192 398,190 400,187 401,185 403,183 405,181 407,179 408,177 410,175 412,173 413,171 415,170 417,168 418,166 420,164 422,163 423,161 425,160 427,158 429,157 430,155 432,154 434,153 435,151 437,150 439,149 440,148 442,146 444,145 445,144 447,143 449,141 451,140 452,139 454,137 456,136 457,135 459,133 461,132 462,130 464,129 466,128 468,126 469,125 471,123 473,122 474,121 476,119 478,118 479,117 481,115 483,114 484,113 486,112 488,111 490,109 491,108 493,107 495,106 496,105 498,104 500,103 501,102 503,101 505,101 506,100 508,99 510,98 512,98 513,97 515,97 517,96 518,96 520,95 522,95 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,95 545,95 547,96 549,96 550,96 552,97 554,97 556,98 557,98 559,99 561,99 562,100 564,100 566,101 567,102 569,102 571,103 573,103 574,104 576,105 578,106 579,107 581,107 583,108 584,109 586,111 588,112 589,113 591,114 593,115 595,117 596,118 598,120 600,121 601,123 603,125 605,126 606,128 608,130 610,131 611,133 613,135 615,137 617,139 618,140 620,142 622,144 623,146 625,148 627,150 628,152 630,154 632,155 633,157 635,159 637,161 639,163 640,165 642,167 644,168 645,170 647,172 649,174 650,176 652,177 654,179 655,181 657,183 659,185 661,187 662,189 664,191 666,193 667,195 669,197 671,199 672,201 674,203 676,206 677,208 679,210 681,213 683,215 684,218 686,220 688,223 689,226 691,228 693,231 694,233 696,236 698,238 700,241 701,244 703,246 705,249 706,251 708,254 710,256 711,259 713,261 715,264 716,266 718,268 720,271 722,273 723,276 725,278 727,281 728,284 730,286 732,289 733,291 735,294 737,297 738,299 740,302 742,305 744,307 745,310 747,313 749,315 750,318 752,321 754,323 755,326 757,328 759,331 760,333 762,336 764,338 766,341 767,343 769,345 771,347 772,349 774,351 776,353 777,355 779,357 781,359 782,361 784,363 786,365 788,367 789,368 791,370 793,372 794,374 796,375 798,377 799,379 801,381 803,382 804,384 806,386 808,388 810,390 811,391 813,393 815,395 816,397 818,398 820,400 821,402 823,404 825,405 827,407 828,409 830,411 832,412 833,414 835,415 837,417 838,419 840,420 842,422 843,423 845,425 847,426 849,427 850,429 852,430 854,431 855,433 857,434 859,435 860,436 862,437 864,438 865,439 867,440 869,441 871,442 872,443 874,444 876,445 877,445 879,446 881,447 882,448 884,449 886,450 887,451 889,451 891,452 893,453 894,454 896,455 898,456 899,457 901,458 903,459 904,459 906,460 908,461 909,462 911,463 913,464 915,464 916,465 918,466 920,467 921,467 923,468 925,468 926,469 928,470 930,470 932,471 "/>
|
||||
<polygon opacity="0.25" fill="#1F78B4" points="164,440 166,439 168,438 169,437 171,436 173,435 175,434 176,433 178,432 180,431 181,430 183,428 185,427 186,426 188,425 190,424 191,423 193,421 195,420 197,419 198,418 200,417 202,415 203,414 205,413 207,411 208,410 210,409 212,407 214,406 215,404 217,403 219,401 220,400 222,398 224,397 225,395 227,394 229,392 230,390 232,389 234,387 236,386 237,384 239,383 241,381 242,379 244,378 246,376 247,375 249,373 251,372 252,370 254,368 256,367 258,365 259,363 261,362 263,360 264,358 266,357 268,355 269,353 271,351 273,350 274,348 276,346 278,344 280,342 281,340 283,339 285,337 286,335 288,333 290,331 291,329 293,327 295,325 296,323 298,322 300,320 302,318 303,316 305,314 307,312 308,310 310,307 312,305 313,303 315,301 317,299 318,297 320,294 322,292 324,290 325,287 327,285 329,283 330,280 332,278 334,275 335,273 337,271 339,268 341,266 342,263 344,261 346,259 347,256 349,254 351,251 352,249 354,247 356,244 357,242 359,240 361,238 363,235 364,233 366,231 368,229 369,227 371,224 373,222 374,220 376,218 378,216 379,214 381,211 383,209 385,207 386,205 388,203 390,201 391,198 393,196 395,194 396,192 398,190 400,187 401,185 403,183 405,181 407,179 408,177 410,175 412,173 413,171 415,170 417,168 418,166 420,164 422,163 423,161 425,160 427,158 429,157 430,155 432,154 434,153 435,151 437,150 439,149 440,148 442,146 444,145 445,144 447,143 449,141 451,140 452,139 454,137 456,136 457,135 459,133 461,132 462,130 464,129 466,128 468,126 469,125 471,123 473,122 474,121 476,119 478,118 479,117 481,115 483,114 484,113 486,112 488,111 490,109 491,108 493,107 495,106 496,105 498,104 500,103 501,102 503,101 505,101 506,100 508,99 510,98 512,98 513,97 515,97 517,96 518,96 520,95 522,95 523,94 525,94 527,94 528,94 530,94 532,94 534,94 535,94 537,94 539,94 540,94 542,94 544,95 545,95 547,96 549,96 550,96 552,97 554,97 556,98 557,98 559,99 561,99 562,100 564,100 566,101 567,102 569,102 571,103 573,103 574,104 576,105 578,106 579,107 581,107 583,108 584,109 586,111 588,112 589,113 591,114 593,115 595,117 596,118 598,120 600,121 601,123 603,125 605,126 606,128 608,130 610,131 611,133 613,135 615,137 617,139 618,140 620,142 622,144 623,146 625,148 627,150 628,152 630,154 632,155 633,157 635,159 637,161 639,163 640,165 642,167 644,168 645,170 647,172 649,174 650,176 652,177 654,179 655,181 657,183 659,185 661,187 662,189 664,191 666,193 667,195 669,197 671,199 672,201 674,203 676,206 677,208 679,210 681,213 683,215 684,218 686,220 688,223 689,226 691,228 693,231 694,233 696,236 698,238 700,241 701,244 703,246 705,249 706,251 708,254 710,256 711,259 713,261 715,264 716,266 718,268 720,271 722,273 723,276 725,278 727,281 728,284 730,286 732,289 733,291 735,294 737,297 738,299 740,302 742,305 744,307 745,310 747,313 749,315 750,318 752,321 754,323 755,326 757,328 759,331 760,333 762,336 764,338 766,341 767,343 769,345 771,347 772,349 774,351 776,353 777,355 779,357 781,359 782,361 784,363 786,365 788,367 789,368 791,370 793,372 794,374 796,375 798,377 799,379 801,381 803,382 804,384 806,386 808,388 810,390 811,391 813,393 815,395 816,397 818,398 820,400 821,402 823,404 825,405 827,407 828,409 830,411 832,412 833,414 835,415 837,417 838,419 840,420 842,422 843,423 845,425 847,426 849,427 850,429 852,430 852,473 164,473 "/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="3" points="529,473 529,94 "/>
|
||||
<text x="798" y="68" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Bootstrap distribution
|
||||
</text>
|
||||
<text x="798" y="83" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Confidence interval
|
||||
</text>
|
||||
<text x="798" y="98" dy="0.76em" text-anchor="start" font-family="sans-serif" font-size="9.67741935483871" opacity="1" fill="#000000">
|
||||
Point estimate
|
||||
</text>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,73 788,73 "/>
|
||||
<rect x="768" y="83" width="20" height="10" opacity="0.25" fill="#1F78B4" stroke="none"/>
|
||||
<polyline fill="none" opacity="1" stroke="#1F78B4" stroke-width="1" points="768,103 788,103 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"generate_stealth_address","value_str":null,"throughput":null,"full_id":"babyjubjub/generate_stealth_address","directory_name":"babyjubjub/generate_stealth_address","title":"babyjubjub/generate_stealth_address"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108895.0425935873,"upper_bound":109831.2879065319},"point_estimate":109354.36382603005,"standard_error":239.50818434371465},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":107826.64797492768,"upper_bound":109071.99802631579},"point_estimate":108359.8234939759,"standard_error":333.2756761223166},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1040.3762574960317,"upper_bound":2712.6195566006227},"point_estimate":1741.7461933717307,"standard_error":461.1885880822592},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108464.3124888125,"upper_bound":109315.66023251032},"point_estimate":108857.08665523866,"standard_error":217.15333308584906},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2067.8016215121343,"upper_bound":2667.8169748296664},"point_estimate":2398.2969171782956,"standard_error":153.05824499745088}}
|
||||
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[10.0,20.0,30.0,40.0,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,410.0,420.0,430.0,440.0,450.0,460.0,470.0,480.0,490.0,500.0,510.0,520.0,530.0,540.0,550.0,560.0,570.0,580.0,590.0,600.0,610.0,620.0,630.0,640.0,650.0,660.0,670.0,680.0,690.0,700.0,710.0,720.0,730.0,740.0,750.0,760.0,770.0,780.0,790.0,800.0,810.0,820.0,830.0,840.0,850.0,860.0,870.0,880.0,890.0,900.0,910.0,920.0,930.0,940.0,950.0,960.0,970.0,980.0,990.0,1000.0],"times":[1112199.0,2217981.0,3326430.0,4434378.0,5541660.0,6458235.0,7501894.0,8579259.0,9647667.0,10718866.0,11792815.0,12856389.0,13933797.0,15004454.0,16074278.0,17171060.0,18310009.0,19338000.0,20367616.0,21451024.0,22517722.0,23578838.0,24655662.0,25986109.0,27100100.0,28266298.0,29284956.0,30991899.0,32141681.0,32895258.0,34795450.0,34297496.0,35368153.0,37595676.0,38834498.0,40492193.0,42158178.0,42367468.0,44047286.0,44608366.0,46367517.0,47615215.0,47651714.0,49078660.0,50800520.0,52371548.0,53500497.0,54897527.0,56242348.0,57440588.0,58618203.0,59839442.0,59055907.0,59793318.0,60900267.0,62457961.0,64265529.0,66358345.0,65512310.0,64458903.0,65847890.0,67094421.0,67430668.0,68819240.0,70338768.0,71963546.0,73386867.0,73033078.0,74080944.0,74860562.0,75959720.0,77022669.0,78617280.0,79965519.0,81104301.0,82930785.0,83734278.0,85247598.0,85227640.0,85801969.0,87074041.0,89093815.0,89904975.0,90354554.0,91111173.0,92181372.0,93989898.0,95641092.0,96221337.0,98545108.0,97615617.0,98864564.0,101357459.0,103684356.0,103573315.0,102595282.0,104051977.0,106779204.0,106514289.0,107085243.0]}
|
||||
@@ -0,0 +1 @@
|
||||
[96408.30887362639,101837.26023351648,116314.4638598901,121743.4152197802]
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.47058545311767025,"upper_bound":-0.46938221209992154},"point_estimate":-0.47001122610686275,"standard_error":0.0003113113479350967},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":-0.4709129298541803,"upper_bound":-0.4703082775340235},"point_estimate":-0.4705708617924138,"standard_error":0.00015247464344218497}}
|
||||
@@ -0,0 +1 @@
|
||||
{"group_id":"babyjubjub","function_id":"generate_stealth_address","value_str":null,"throughput":null,"full_id":"babyjubjub/generate_stealth_address","directory_name":"babyjubjub/generate_stealth_address","title":"babyjubjub/generate_stealth_address"}
|
||||
@@ -0,0 +1 @@
|
||||
{"mean":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108895.0425935873,"upper_bound":109831.2879065319},"point_estimate":109354.36382603005,"standard_error":239.50818434371465},"median":{"confidence_interval":{"confidence_level":0.95,"lower_bound":107826.64797492768,"upper_bound":109071.99802631579},"point_estimate":108359.8234939759,"standard_error":333.2756761223166},"median_abs_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":1040.3762574960317,"upper_bound":2712.6195566006227},"point_estimate":1741.7461933717307,"standard_error":461.1885880822592},"slope":{"confidence_interval":{"confidence_level":0.95,"lower_bound":108464.3124888125,"upper_bound":109315.66023251032},"point_estimate":108857.08665523866,"standard_error":217.15333308584906},"std_dev":{"confidence_interval":{"confidence_level":0.95,"lower_bound":2067.8016215121343,"upper_bound":2667.8169748296664},"point_estimate":2398.2969171782956,"standard_error":153.05824499745088}}
|
||||
@@ -0,0 +1 @@
|
||||
{"sampling_mode":"Linear","iters":[10.0,20.0,30.0,40.0,50.0,60.0,70.0,80.0,90.0,100.0,110.0,120.0,130.0,140.0,150.0,160.0,170.0,180.0,190.0,200.0,210.0,220.0,230.0,240.0,250.0,260.0,270.0,280.0,290.0,300.0,310.0,320.0,330.0,340.0,350.0,360.0,370.0,380.0,390.0,400.0,410.0,420.0,430.0,440.0,450.0,460.0,470.0,480.0,490.0,500.0,510.0,520.0,530.0,540.0,550.0,560.0,570.0,580.0,590.0,600.0,610.0,620.0,630.0,640.0,650.0,660.0,670.0,680.0,690.0,700.0,710.0,720.0,730.0,740.0,750.0,760.0,770.0,780.0,790.0,800.0,810.0,820.0,830.0,840.0,850.0,860.0,870.0,880.0,890.0,900.0,910.0,920.0,930.0,940.0,950.0,960.0,970.0,980.0,990.0,1000.0],"times":[1112199.0,2217981.0,3326430.0,4434378.0,5541660.0,6458235.0,7501894.0,8579259.0,9647667.0,10718866.0,11792815.0,12856389.0,13933797.0,15004454.0,16074278.0,17171060.0,18310009.0,19338000.0,20367616.0,21451024.0,22517722.0,23578838.0,24655662.0,25986109.0,27100100.0,28266298.0,29284956.0,30991899.0,32141681.0,32895258.0,34795450.0,34297496.0,35368153.0,37595676.0,38834498.0,40492193.0,42158178.0,42367468.0,44047286.0,44608366.0,46367517.0,47615215.0,47651714.0,49078660.0,50800520.0,52371548.0,53500497.0,54897527.0,56242348.0,57440588.0,58618203.0,59839442.0,59055907.0,59793318.0,60900267.0,62457961.0,64265529.0,66358345.0,65512310.0,64458903.0,65847890.0,67094421.0,67430668.0,68819240.0,70338768.0,71963546.0,73386867.0,73033078.0,74080944.0,74860562.0,75959720.0,77022669.0,78617280.0,79965519.0,81104301.0,82930785.0,83734278.0,85247598.0,85227640.0,85801969.0,87074041.0,89093815.0,89904975.0,90354554.0,91111173.0,92181372.0,93989898.0,95641092.0,96221337.0,98545108.0,97615617.0,98864564.0,101357459.0,103684356.0,103573315.0,102595282.0,104051977.0,106779204.0,106514289.0,107085243.0]}
|
||||
@@ -0,0 +1 @@
|
||||
[96408.30887362639,101837.26023351648,116314.4638598901,121743.4152197802]
|
||||