Compare commits

...

5 Commits

Author SHA1 Message Date
Ming Su 43c660af96 Merge branch 'PUB'
* PUB:
  minor update
  第10次课
2024-04-09 00:46:05 +08:00
Ming Su 1532a8982d minor update 2024-04-09 00:45:53 +08:00
Ming Su c86f7fb186 第10次课 2024-04-09 00:37:12 +08:00
Ming Su c20f1e641f Merge branch 'main' into PUB
* main:
  增加第8次课课后作业示例代码
2024-04-05 12:19:33 +08:00
Ming Su 51973491d4 增加第8次课课后作业示例代码 2024-04-05 12:19:23 +08:00
68 changed files with 6771 additions and 74 deletions

Binary file not shown.

Binary file not shown.

View File

@ -4,6 +4,9 @@ subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practic
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
date: today date: today
lang: zh lang: zh
resources:
- "*.pdf"
- "*.sas"
format: format:
revealjs: revealjs:
theme: dark theme: dark
@ -42,6 +45,19 @@ require(learnr)
作业模板:[第8次课后作业_模板.qmd](https://drwater.rcees.ac.cn/git/course/RWEP/raw/branch/main/SD/20240328_9_课后作业/第8次课后作业_模板.qmd) 作业模板:[第8次课后作业_模板.qmd](https://drwater.rcees.ac.cn/git/course/RWEP/raw/branch/main/SD/20240328_9_课后作业/第8次课后作业_模板.qmd)
## 示例代码
### 基于R的示例结果
- [第8次课后作业R示例代码结果](./第8次课后作业_模板.html)
### 基于SAS的示例结果
- [第8次课后作业SAS示例代码](./第8次课后作业_模板.sas)
- [第8次课后作业SAS示例结果1](./median.pdf)
- [第8次课后作业SAS示例结果2](./freq.pdf)
- [第8次课后作业SAS示例结果3](./airqualitymedianoutrow5.pdf)
- [第8次课后作业SAS示例结果4](./npar1wayConover.pdf)
## 欢迎讨论!{.center} ## 欢迎讨论!{.center}

Binary file not shown.

Binary file not shown.

View File

@ -4,24 +4,34 @@ author: 姓名
format: html format: html
--- ---
# 下载airquality.xlsx并读取数据 # 数据
下载airquality.xlsx并读取数据。
```{r} ```{r}
#| eval: false #| message: false
#| execute: false #| warning: false
# 下载至临时文件 # 下载至临时文件
tmpxlsxpath <- file.path(tempdir(), "airquality.xlsx") if (FALSE) {
download.file("https://drwater.rcees.ac.cn/git/course/RWEP/raw/branch/PUB/data/airquality.xlsx", tmpxlsxpath <- file.path(tempdir(), "airquality.xlsx")
download.file("https://drwater.rcees.ac.cn/git/course/RWEP/raw/branch/PUB/data/airquality.xlsx",
destfile = tmpxlsxpath) destfile = tmpxlsxpath)
airqualitydf <- readxl::read_xlsx(tmpxlsxpath, sheet = 2) airqualitydf <- readxl::read_xlsx(tmpxlsxpath, sheet = 2)
metadf <- readxl::read_xlsx(tmpxlsxpath, sheet = 1) metadf <- readxl::read_xlsx(tmpxlsxpath, sheet = 1)
saveRDS(airqualitydf, "./airqualitydf.RDS")
saveRDS(metadf, "./metadf.RDS")
}
airqualitydf <- readRDS("./airqualitydf.RDS")
metadf <- readRDS("./metadf.RDS")
``` ```
# 根据`airqualitydf.xlsx`按采样点统计白天8:00-20:00与夜晚20:00-8:00中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市 # 描述统计
根据`airqualitydf.xlsx`按采样点统计白天8:00-20:00与夜晚20:00-8:00中空气质量指数AQI中位数按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市
```{r} ```{r}
#| eval: false #| message: false
#| execute: false #| warning: false
require(tidyverse) require(tidyverse)
airqualitydf |> airqualitydf |>
select(datetime, site, AQI) |> select(datetime, site, AQI) |>
@ -49,19 +59,25 @@ airqualitydf |>
filter(length(unique(site)) >= 5) |> filter(length(unique(site)) >= 5) |>
summarize(p = sum(AQI < quantile(airqualitydf$AQI, probs = 0.2, summarize(p = sum(AQI < quantile(airqualitydf$AQI, probs = 0.2,
na.rm = TRUE)) / n()) |> na.rm = TRUE)) / n()) |>
slice_max(p, n = 10) slice_max(p, n = 10) |>
knitr::kable()
``` ```
# 按照不同城市分组统计白天与夜晚AQI中位数是否具有显著差异。 # 统计检验
按照不同城市分组统计白天与夜晚AQI中位数是否具有显著差异。
```{r} ```{r}
#| eval: false #| message: false
#| warning: false
if (FALSE) { if (FALSE) {
require(infer)
require(infer) require(tidyverse)
testdf <- airqualitydf |> testdf <- airqualitydf |>
select(datetime, site, AQI) |> select(datetime, site, AQI) |>
filter(!is.na(AQI)) |> filter(!is.na(AQI)) |>
left_join(metadf |> select(site, city = Area)) |> left_join(metadf |> select(site, city = Area)) |>
@ -77,42 +93,56 @@ testdf <- airqualitydf |>
specify(AQI ~ dayornight) |> specify(AQI ~ dayornight) |>
calculate(stat = "diff in medians", order = c("day", "night")) |> calculate(stat = "diff in medians", order = c("day", "night")) |>
pull(stat) pull(stat)
)) |> )) |>
ungroup() |> ungroup() |>
# slice_sample(n = 12) |> # slice_sample(n = 12) |>
mutate(null_dist = purrr::map(citydf, ~ mutate(null_dist = purrr::map(citydf, ~
.x |> .x |>
specify(AQI ~ dayornight) |> specify(AQI ~ dayornight) |>
hypothesize(null = "independence") |> hypothesize(null = "independence") |>
generate(reps = 1000, type = "permute") |> generate(reps = 1000, type = "permute") |>
calculate(stat = "diff in medians", order = c("day", "night")) calculate(stat = "diff in medians", order = c("day", "night"))
)) |>
mutate(fig = purrr::pmap(list(null_dist, median_diff, city),
~ visualize(..1) +
shade_p_value(obs_stat = ..2, direction = "both") +
ggtitle(..3)
)) |> )) |>
mutate(p_value = purrr::map2_dbl(null_dist, median_diff, mutate(p_value = purrr::map2_dbl(null_dist, median_diff,
~ get_p_value(.x, obs_stat = .y, direction = "both") |> ~ get_p_value(.x, obs_stat = .y, direction = "both") |>
pull(p_value) pull(p_value)
)) |> )) |>
arrange(p_value) |> mutate(sigdiff = ifelse(p_value < 0.01, "显著差异", "无显著差异")) |>
mutate(sigdiff = ifelse(p_value < 0.01, "显著差异", "无显著差异")) mutate(fig = purrr::pmap(list(null_dist, median_diff, city, sigdiff),
~ visualize(..1) +
testdf |> shade_p_value(obs_stat = ..2, direction = "both") +
select(city, sigdiff) |> ggtitle(paste0(..3, "", ..4)) +
knitr::kable() theme_sci(2, 2)
)) |>
lang <- "cn" arrange(p_value)
(testdf |> saveRDS(testdf, "./testdf.RDS")
slice_sample(n = 9) |>
pull(fig)) |>
patchwork::wrap_plots(ncol = 3) +
dwfun::theme_sci(5, 5)
dwfun::ggsavep("./testdf.pdf")
} }
lang <- "cn"
require(dwfun)
require(rmdify)
require(drwateR)
dwfun::init()
rmdify::rmd_init()
testdf <- readRDS("./testdf.RDS")
require(tidyverse)
testdf |>
select(city, median_diff, p_value, sigdiff) |>
knitr::kable()
testdf |>
mutate(grp = (row_number() - 1)%/% 12) |>
group_by(grp) |>
nest(grpdf = -grp) |>
ungroup() |>
# slice(1) |>
mutate(gp = purrr::map(grpdf,
~(.x |>
pull(fig)) |>
patchwork::wrap_plots(ncol = 3) +
dwfun::theme_sci(5, 7))) |>
pull(gp)
``` ```

View File

@ -0,0 +1,289 @@
options ls=256 ps=32767 nodate validmemname=extend validvarname=any;
title 'The SAS System';
%macro print(d);
proc print data=&d;run;
%mend;
%macro printobs(d,obs);
proc print data=&d (obs=&obs);run;
%mend;
%macro printfirstobsobs(d,firstobs,obs);
proc print data=&d (firstobs=&firstobs obs=&obs);run;
%mend;
%macro contents(d);
proc contents data=&d varnum;run;
%mend;
%macro contentsshort(d);
proc contents data=&d varnum short;run;
%mend;
%macro save_dataset(d);
data "d:&d";
set &d;
run;
%mend;
%macro load_dataset(d);
data &d;
set "d:&d";
run;
%mend;
%macro kill;
PROC DATASETS LIB=work KILL;RUN;quit;
%mend;
proc template;
list styles;
run;
%kill;
PROC IMPORT OUT=WORK.raw_metadf
DATAFILE="d:airquality.xlsx"
DBMS=EXCEL REPLACE;
RANGE="metadf$";
GETNAMES=YES;
MIXED=YES;
SCANTEXT=YES;
USEDATE=NO;
SCANTIME=NO;
RUN;
%print(raw_metadf);
%save_dataset(raw_metadf); *原始数据集存盘;
PROC IMPORT OUT=WORK.raw_airqualitydf
DATAFILE="d:airquality.xlsx"
DBMS=EXCEL REPLACE;
RANGE="airqualitydf$";
GETNAMES=YES;
MIXED=YES;
SCANTEXT=YES;
USEDATE=NO; *为YES崩溃闪退;
SCANTIME=NO; *为YES崩溃闪退;
RUN;
%print(raw_airqualitydf);
%save_dataset(raw_airqualitydf); *原始数据集存盘;
%kill;
/*加载硬盘原始数据集*/
%load_dataset(raw_metadf);
%load_dataset(raw_airqualitydf);
/*查看数据集内容*/
%contents(raw_metadf);
%contentsshort(raw_metadf);
/*site name Area lon lat*/
%contents(raw_airqualitydf);
%contentsshort(raw_airqualitydf);
/*datetime site 'CO_mg/m3'n 'CO_24h_mg/m3'n 'NO2_μg/m3'n 'NO2_24h_μg/m3'n 'O3_μg/m3'n 'O3_24h_μg/m3'n 'O3_8h_μg/m3'n 'O3_8h_24h_μg/m3'n 'PM10_μg/m3'n 'PM10_24h_μg/m3'n 'PM2#5_μg/m3'n 'PM2#5_24h_μg/m3'n 'SO2_μg/m3'n 'SO2_24h_μg/m3'n AQI PrimaryPollutant Quality Unheathful*/
%printobs(raw_metadf,10);
%printobs(raw_airqualitydf,10);
proc sort data=raw_metadf out=metadfsorted;
by site;
run;
proc sort data=raw_airqualitydf out=airqualitydfsorted;
by site;
run;
/*合并数据集数据预处理提取日期、时间部分划分day、night*/
data airquality;
retain datetime date time DayNight site name Area AQI lon lat;
length DayNight $ 5;
merge metadfsorted airqualitydfsorted;
by site;
date=datepart(datetime);
time=timepart(datetime);
if '8:00't<=time<'20:00't then DayNight='day';
else DayNight='night';
format datetime e8601dt25. date yymmdd10. time time5.;
keep site name Area lon lat datetime date time DayNight AQI;
run;
%printobs(airquality,100);
%save_dataset(airquality); *合并数据集存盘;
%kill;
/*#################### DATA SET airquality ####################*/
/*加载硬盘合并数据集*/
%load_dataset(airquality);
%printobs(airquality,100);
/*检查site、name数量是否一致发现不一致后以site进行统计*/
proc sql;
select count(distinct(site)) as count_site from airquality;
select count(distinct(name)) as count_name from airquality;
quit;
/*
count_site
1714
count_name
1522
*/
/*#########################################################################*/
/*按采样点统计白天8:00-20:00与夜晚20:00-8:00中空气质量指数AQI中位数*/
/*#########################################################################*/
/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@*/
ods pdf file='d:means.pdf' style=sapphire dpi=1200;
proc means data=airquality median maxdec=1;
class site DayNight;
var AQI;
where AQI is not missing;
run;
ods pdf close;
/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@*/
/*####################################################################################################*/
/*按城市统计低于所有采样点AQI30%分位值的采样点占比列出上述占比最高的10个城市不考虑采样点数低于5个的城市*/
/*####################################################################################################*/
/*输出查看所有采样点AQI30%分位值为与SQL验证可略去*/
proc univariate data=airquality noprint;
var AQI;
output out=airqualitystats pctlpts=30 pctlpre=P;
run;
%print(airqualitystats); /*42*/
/*输出所有采样点AQI30%分位值到宏变量*/
proc sql;
select AQI into : xvalues separated by ',' from airquality;
select distinct(pctl(30, &xvalues)) into : P30 from airquality;
quit;
/*查看所有采样点AQI30%分位值的宏变量值,为后续调用*/
%put P30=&P30.;
/*按所有采样点AQI30%分位值对AQI分级对合并数据集所有采样点所有数据直接分级后续用各采样点中位数进行统计可略去*/
data airquality1;
set airquality;
if AQI<&P30. then quality='good';
else quality='fair';
run;
%printobs(airquality1,100);
/*输出所有采样点AQI中位数*/
proc means data=airquality median maxdec=1;
class Area site;
var AQI;
where AQI is not missing;
output out=airqualitymedian median=;
run;
%print(airqualitymedian);
/*按所有采样点AQI30%分位值对AQI中位数分级*/
data airqualitymedian1;
set airqualitymedian;
if AQI<&P30. then quality='good';
else quality='fair';
where _TYPE_=3;
run;
%print(airqualitymedian1);
/*按城市统计低于所有采样点AQI30%分位值的采样点占比,查看结果*/
/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@*/
ods pdf file='d:freq.pdf' style=sapphire dpi=1200;
proc freq data=airqualitymedian1;
table Area*quality /nocol nopercent;
run;
ods pdf close;
/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@*/
/*按城市统计低于所有采样点AQI30%分位值的采样点占比,输出频数统计结果到数据集*/
proc freq data=airqualitymedian1;
table Area*quality /outpct out=airqualitymedianoutrow(drop=percent pct_col); *保留行列频数与行百分比;
run;
%printobs(airqualitymedianoutrow,100);
/*按城市对采样点数进行统计,查看结果,可略去*/
proc means data=airqualitymedianoutrow sum maxdec=0;
class Area;
var COUNT;
run;
/*输出采样点数不低于5个的城市查看结果可略去*/
proc sql;
select *,sum(COUNT) as total_COUNT from airqualitymedianoutrow group by Area having calculated total_COUNT>=5 order by quality desc,PCT_ROW desc,COUNT desc;
quit;
/*将采样点数不低于5个的城市输出到数据集*/
proc sql;
create table airqualitymedianoutrow5 as select *,sum(COUNT) as total_COUNT from airqualitymedianoutrow group by Area having calculated total_COUNT>=5 order by quality desc,PCT_ROW desc,COUNT desc;
quit;
/*列出上述占比最高的10个城市不含采样点数低于5个的城市*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
ods pdf file='d:airqualitymedianoutrow5.pdf' style=sapphire dpi=1200;
%printobs(airqualitymedianoutrow5,10);
%printobs(airqualitymedianoutrow5,20);
%printobs(airqualitymedianoutrow5,30);
%print(airqualitymedianoutrow5);
ods pdf close;
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/*#####################################################*/
/*按照不同城市分组统计白天与夜晚AQI中位数是否具有显著差异*/
/*#####################################################*/
/*发现有的site没有Area对应*/
proc sql;
select distinct(Area),count(distinct(Area)) as count_Area from airquality;
quit;
proc print data=airquality;
where Area is missing;
run;
proc sql;
select distinct(site),count(distinct(site)) as count_site from airquality where Area is missing;
quit;
/*有4个site采样点没有Area城市对应
site count_site
2628A 4
3128A 4
4034A 4
4036A 4
*/
proc sort data=airquality out=airqualitysorted;
by Area;
run;
/*按照不同城市分组统计白天与夜晚AQI中位数查看结果可略去*/
proc means data=airqualitysorted median maxdec=1;
by Area;
class DayNight;
var AQI;
where AQI is not missing;
run;
/*笼统地看白天与夜晚AQI中位数是否具有显著差异*/
proc npar1way data=airquality median;
class DayNight;
var AQI;
run;
/*按照不同城市分组统计白天与夜晚AQI中位数是否具有显著差异*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/
ods pdf file='d:npar1waymedian.pdf' style=sapphire dpi=1200;
proc npar1way data=airqualitysorted median;
class DayNight;
var AQI;
by Area;
where Area is not missing;
run;
ods pdf close;
/*@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/
/*
Using Wilcoxon scores in the linear rank statistic for two-sample data produces the rank sum statistic of the Mann-Whitney-Wilcoxon test.
Using Wilcoxon scores in the one-way ANOVA statistic produces the Kruskal-Wallis test.
Wilcoxon scores are locally most powerful for location shifts of a logistic distribution.
*//*
Using median scores in the linear rank statistic for two-sample data produces the two-sample median test.
The one-way ANOVA statistic with median scores is equivalent to the Brown-Mood test.
Median scores are particularly powerful for distributions that are symmetric and heavy-tailed.*/
/*
Scores for Linear Rank and One-Way ANOVA Tests
For each score type that you specify, PROC NPAR1WAY computes a one-way ANOVA statistic and also a linear rank statistic for two-sample data. The following score types are used primarily to test for differences in location: Wilcoxon, median, Van der Waerden (normal), and Savage. The following scores types are used to test for scale differences: Siegel-Tukey, Ansari-Bradley, Klotz, and Mood. Conover scores can be used to test for differences in both location and scale. This section gives formulas for the score types available in PROC NPAR1WAY. For further information about the formulas and the applicability of each score, see Randles and Wolfe (1979), Gibbons and Chakraborti (2010), Conover (1999), and Hollander and Wolfe (1999).
In addition to the score types described in this section, you can specify the SCORES=DATA option to use the input data observations as scores. This enables you to produce a wide variety of tests. You can construct any scores by using the DATA step, and then you can use PROC NPAR1WAY to compute the corresponding linear rank and one-way ANOVA tests for these scores. You can also analyze raw (unscored) data by using the SCORES=DATA option; for two-sample data, the corresponding exact test is a permutation test that is known as Pitmans test.
*/
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/
ods pdf file='d:npar1wayConover.pdf' style=sapphire dpi=1200;
proc npar1way data=airqualitysorted Conover;
class DayNight;
var AQI;
by Area;
where Area is not missing;
run;
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/
/*Conover scores can be used to test for differences in both location and scale.*/

View File

@ -0,0 +1,158 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="470.5 -706.5 869.75 527.75" width="869.75" height="527.75">
<defs>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="383.525" y="-759.275">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<g id="Canvas_1" fill="none" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_3492" filter="url(#Shadow)">
<ellipse cx="962.5" cy="-646.25" rx="57.7500922788345" ry="58.7500938767363" fill="white"/>
<ellipse cx="962.5" cy="-646.25" rx="57.7500922788345" ry="58.7500938767363" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(921.3 -655.474)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="13.496" y="15">All Data</tspan>
</text>
</g>
<g id="Graphic_3491" filter="url(#Shadow)">
<path d="M 898.75 -534.5 L 957.0022 -493.9047 L 934.7519 -428.2203 L 862.7481 -428.2203 L 840.4978 -493.9047 Z" fill="#ffeabb"/>
<path d="M 898.75 -534.5 L 957.0022 -493.9047 L 934.7519 -428.2203 L 862.7481 -428.2203 L 840.4978 -493.9047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(854.75 -479.099)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.144" y="15">Training</tspan>
</text>
</g>
<g id="Graphic_3490" filter="url(#Shadow)">
<path d="M 1213.25 -534.5 L 1271.5022 -493.9047 L 1249.2519 -428.2203 L 1177.2481 -428.2203 L 1154.9978 -493.9047 Z" fill="#e5e6ff"/>
<path d="M 1213.25 -534.5 L 1271.5022 -493.9047 L 1249.2519 -428.2203 L 1177.2481 -428.2203 L 1154.9978 -493.9047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1169.25 -479.099)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.664" y="15">Testing</tspan>
</text>
</g>
<g id="Line_3489">
<line x1="941.3568" y1="-591.56304" x2="918.5044" y2="-532.45516" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3488">
<line x1="1011.0099" y1="-614.35054" x2="1165.7454" y2="-512.5985" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_3487" filter="url(#Shadow)">
<ellipse cx="670.75" cy="-219.75" rx="61.2500978714911" ry="35.5000567255173" fill="#e5e6ff"/>
<ellipse cx="670.75" cy="-219.75" rx="61.2500978714911" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(626.75 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x=".432" y="15">Assessment</tspan>
</text>
</g>
<g id="Graphic_3486" filter="url(#Shadow)">
<ellipse cx="538" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#ffeabb"/>
<ellipse cx="538" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(491.8 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan>
</text>
</g>
<g id="Graphic_3485" filter="url(#Shadow)">
<rect x="536.25" y="-364" width="139" height="56.5" fill="white"/>
<rect x="536.25" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(541.25 -344.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.124" y="15">Fold 1</tspan>
</text>
</g>
<g id="Line_3484">
<line x1="852.5284" y1="-458.3897" x2="671.46085" y2="-368.40586" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3483">
<line x1="589.25054" y1="-307.5" x2="562.72166" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3482">
<line x1="621.57974" y1="-307.5" x2="646.9871" y2="-262.1577" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_3481" filter="url(#Shadow)">
<ellipse cx="968.75" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" fill="#e5e6ff"/>
<ellipse cx="968.75" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(922.55 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="2.6320008" y="15">Assessment</tspan>
</text>
</g>
<g id="Graphic_3480" filter="url(#Shadow)">
<ellipse cx="833.25" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" fill="#ffeabb"/>
<ellipse cx="833.25" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(787.05 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan>
</text>
</g>
<g id="Graphic_3479" filter="url(#Shadow)">
<rect x="831.5" y="-364" width="139" height="56.5" fill="white"/>
<rect x="831.5" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(836.5 -344.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.124" y="15">Fold 2</tspan>
</text>
</g>
<g id="Line_3478">
<line x1="899.5711" y1="-428.2203" x2="900.4105" y2="-373.8988" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3477">
<line x1="884.5005" y1="-307.5" x2="857.9717" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3476">
<line x1="917.4995" y1="-307.5" x2="944.0283" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_3475" filter="url(#Shadow)">
<ellipse cx="1272.75" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#e5e6ff"/>
<ellipse cx="1272.75" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1226.55 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="2.6320008" y="15">Assessment</tspan>
</text>
</g>
<g id="Graphic_3474" filter="url(#Shadow)">
<ellipse cx="1137.25" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#ffeabb"/>
<ellipse cx="1137.25" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1091.05 -228.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan>
</text>
</g>
<g id="Graphic_3473" filter="url(#Shadow)">
<rect x="1135.5" y="-364" width="139" height="56.5" fill="white"/>
<rect x="1135.5" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1140.5 -344.974)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="37.676" y="15">Fold 10</tspan>
</text>
</g>
<g id="Line_3472">
<line x1="945.2616" y1="-459.24567" x2="1136.6432" y2="-368.25103" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3471">
<line x1="1188.5005" y1="-307.5" x2="1161.9717" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3470">
<line x1="1221.4995" y1="-307.5" x2="1248.0283" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Group_3466">
<g id="Graphic_3469">
<ellipse cx="1030.25" cy="-335.75" rx="4.75000759003425" ry="4.00000639160761" fill="black"/>
<ellipse cx="1030.25" cy="-335.75" rx="4.75000759003425" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_3468">
<ellipse cx="1048.75" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" fill="black"/>
<ellipse cx="1048.75" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_3467">
<ellipse cx="1067.25" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" fill="black"/>
<ellipse cx="1067.25" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-133 803.5 723 483.016" width="723" height="483.016">
<defs>
<font-face font-family="Helvetica Neue" font-size="18" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400">
<font-face-src>
<font-face-name name="HelveticaNeue"/>
</font-face-src>
</font-face>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#941100" opacity="0">
<g>
<path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<metadata> Produced by OmniGraffle 7.18.5\n2021-06-10 19:49:00 +0000</metadata>
<g id="Canvas_1" fill-opacity="1" fill="none" stroke="none" stroke-opacity="1" stroke-dasharray="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_27">
<circle cx="218.25" cy="993.75" r="133.750213719379" fill="red" fill-opacity=".33470676"/>
</g>
<g id="Graphic_26">
<ellipse cx="390.75" cy="993.75" rx="83.2501330253328" ry="82.250131427431" fill="#4f4af8" fill-opacity=".3433219"/>
</g>
<g id="Graphic_25">
<text transform="translate(382.5 898.5)" fill="#005493">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="82.476" y="17">Transformation</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.854" y="38.504">Normalization </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.152" y="60.007996">Re-formatting</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="98.82" y="81.51199">Re-encoding</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="116.46" y="103.01599">Imputation</tspan>
</text>
</g>
<g id="Graphic_24">
<text transform="translate(-128 948.8653)" fill="#005493" fill-opacity="0">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="6.075" y="17">Steps necessary for the </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="38.061" y="38.504">data to be used </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="60.894" y="60.007996">effectively</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="19.557" y="103.51199">(Determined by data </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="68.751" y="125.01599">context)</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="6.057" y="168.51999">(Driven by the modeling </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="65.736" y="190.02399">problem)</tspan>
</text>
</g>
<g id="Graphic_23">
<text transform="translate(119 808.5)" fill="#b1001c">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="70.911" y="17">Feature </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="53.748" y="38.504">Engineering</tspan>
</text>
</g>
<g id="Line_22">
<path d="M 527.60516 1036.8936 C 526.91756 1048.8252 525.0482 1069.8035 520 1090 C 512.35076 1120.6026 501 1135.02 501 1135.02" marker-start="url(#FilledArrow_Marker)" stroke="#941100" stroke-opacity="0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_21">
<text transform="translate(331.5 1151.5)" fill="#005493" fill-opacity="0">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x=".562" y="17">Steps necessary for the model </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="74.938" y="38.504">to work well</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="4.558" y="82.008">(Independent of data context)</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="37.894" y="125.512">(Driven by the model)</tspan>
</text>
</g>
<g id="Line_20">
<path d="M 131.69865 825.2074 C 111.46518 823.5015 64.19503 822.835 30 848.3453 C -14.62874 881.6393 -16 943.8653 -16 943.8653" marker-start="url(#FilledArrow_Marker)" stroke="#941100" stroke-opacity="0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-22 148 723 483.016" width="723" height="483.016">
<defs>
<font-face font-family="Helvetica Neue" font-size="18" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400">
<font-face-src>
<font-face-name name="HelveticaNeue"/>
</font-face-src>
</font-face>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#011893">
<g>
<path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker_2" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#941100">
<g>
<path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<metadata> Produced by OmniGraffle 7.18.5\n2021-06-10 19:47:58 +0000</metadata>
<g id="Canvas_1" fill-opacity="1" fill="none" stroke="none" stroke-opacity="1" stroke-dasharray="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_2">
<circle cx="329.25" cy="338.25" r="133.750213719379" fill="red" fill-opacity=".33470676"/>
</g>
<g id="Graphic_3">
<ellipse cx="501.75" cy="338.25" rx="83.2501330253329" ry="82.250131427431" fill="#4f4af8" fill-opacity=".3433219"/>
</g>
<g id="Graphic_4">
<text transform="translate(493.5 243)" fill="#005493">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="82.476" y="17">Transformation</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.854" y="38.504">Normalization </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.152" y="60.007996">Re-formatting</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="98.82" y="81.51199">Re-encoding</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="116.46" y="103.01599">Imputation</tspan>
</text>
</g>
<g id="Graphic_5">
<text transform="translate(-17 293.36526)" fill="#b1001c">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="6.075" y="17">Steps necessary for the </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="38.061" y="38.504">data to be used </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="60.894" y="60.007996">effectively</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="19.557" y="103.51199">(Determined by data </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="68.751" y="125.01599">context)</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="6.057" y="168.51999">(Driven by the modeling </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="65.736" y="190.02399">problem)</tspan>
</text>
</g>
<g id="Graphic_6">
<text transform="translate(230 153)" fill="#b1001c">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="70.911" y="17">Feature </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="53.748" y="38.504">Engineering</tspan>
</text>
</g>
<g id="Line_9">
<path d="M 638.60516 381.39365 C 637.91756 393.32524 636.0482 414.3035 631 434.5 C 623.3508 465.1026 612 479.52 612 479.52" marker-start="url(#FilledArrow_Marker)" stroke="#011893" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_10">
<text transform="translate(442.5 496)" fill="#005493">
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x=".562" y="17">Steps necessary for the model </tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="74.938" y="38.504">to work well</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="4.558" y="82.008">(Independent of data context)</tspan>
<tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="37.894" y="125.512">(Driven by the model)</tspan>
</text>
</g>
<g id="Line_11">
<path d="M 242.69865 169.70744 C 222.46518 168.0015 175.19503 167.33504 141 192.84527 C 96.37126 226.13927 95 288.36526 95 288.36526" marker-start="url(#FilledArrow_Marker_2)" stroke="#941100" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

View File

@ -0,0 +1,80 @@
<?xml version='1.0' encoding='UTF-8' ?>
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='svglite' width='439.20pt' height='306.00pt' viewBox='0 0 439.20 306.00'>
<defs>
<style type='text/css'><![CDATA[
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
fill: none;
stroke: #000000;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10.00;
}
.svglite text {
white-space: pre;
}
]]></style>
</defs>
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
<defs>
<clipPath id='cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA='>
<rect x='0.00' y='0.00' width='439.20' height='306.00' />
</clipPath>
</defs>
<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'>
<rect x='0.00' y='0.00' width='439.20' height='306.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
</g>
<defs>
<clipPath id='cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3'>
<rect x='33.27' y='5.48' width='400.45' height='268.79' />
</clipPath>
</defs>
<g clip-path='url(#cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3)'>
<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
<polyline points='33.27,238.58 433.72,238.58 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,180.73 433.72,180.73 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,122.88 433.72,122.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,65.03 433.72,65.03 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,7.18 433.72,7.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='51.47,274.27 51.47,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='190.15,274.27 190.15,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='328.84,274.27 328.84,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,267.50 433.72,267.50 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,209.65 433.72,209.65 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,151.80 433.72,151.80 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,93.95 433.72,93.95 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,36.10 433.72,36.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='120.81,274.27 120.81,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='259.50,274.27 259.50,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='398.18,274.27 398.18,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='51.47,17.70 55.15,17.73 58.82,17.77 62.50,17.81 66.18,17.86 69.86,17.92 73.53,17.98 77.21,18.05 80.89,18.13 84.57,18.22 88.24,18.32 91.92,18.44 95.60,18.57 99.27,18.72 102.95,18.88 106.63,19.07 110.31,19.28 113.98,19.52 117.66,19.79 121.34,20.10 125.01,20.44 128.69,20.83 132.37,21.26 136.05,21.76 139.72,22.31 143.40,22.93 147.08,23.64 150.76,24.43 154.43,25.33 158.11,26.33 161.79,27.47 165.46,28.74 169.14,30.17 172.82,31.77 176.50,33.56 180.17,35.58 183.85,37.84 187.53,40.36 191.21,43.18 194.88,46.32 198.56,49.81 202.24,53.71 205.91,58.01 209.59,62.78 213.27,68.07 216.95,73.84 220.62,80.20 224.30,87.14 227.98,94.67 231.66,102.77 235.33,111.48 239.01,120.72 242.69,130.38 246.36,140.47 250.04,150.90 253.72,161.49 257.40,172.20 261.07,182.77 264.75,193.28 268.43,203.02 272.11,212.26 275.78,220.71 279.46,228.10 283.14,234.47 286.81,240.00 290.49,244.46 294.17,248.31 297.85,251.48 301.52,253.47 305.20,255.43 308.88,257.08 312.55,257.94 316.23,258.86 319.91,259.68 323.59,260.31 327.26,260.03 330.94,260.84 334.62,260.93 338.30,262.05 341.97,260.92 345.65,261.35 349.33,261.26 353.00,261.43 356.68,260.81 360.36,260.29 364.04,259.27 367.71,257.85 371.39,257.15 375.07,254.18 378.75,252.51 382.42,250.51 386.10,247.01 389.78,239.75 393.45,235.27 397.13,229.47 400.81,218.83 404.49,210.20 408.16,197.55 411.84,175.34 415.52,130.52 ' style='stroke-width: 3.20; stroke: #0B84A5; stroke-opacity: 0.50; stroke-linecap: butt;' />
<circle cx='51.47' cy='17.70' r='4.62' style='stroke-width: 0.71;' />
<circle cx='103.48' cy='18.91' r='4.62' style='stroke-width: 0.71;' />
<circle cx='155.48' cy='25.60' r='4.62' style='stroke-width: 0.71;' />
<circle cx='207.49' cy='60.00' r='4.62' style='stroke-width: 0.71;' />
<circle cx='259.50' cy='178.23' r='4.62' style='stroke-width: 0.71;' />
<circle cx='311.50' cy='257.85' r='4.62' style='stroke-width: 0.71;' />
<circle cx='363.51' cy='259.22' r='4.62' style='stroke-width: 0.71;' />
<circle cx='415.52' cy='130.52' r='4.62' style='stroke-width: 0.71;' />
<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: #333333;' />
</g>
<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'>
<text x='28.34' y='270.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>10</text>
<text x='28.34' y='212.81' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>20</text>
<text x='28.34' y='154.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>30</text>
<text x='28.34' y='97.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>40</text>
<text x='28.34' y='39.26' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>50</text>
<polyline points='30.53,267.50 33.27,267.50 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,209.65 33.27,209.65 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,151.80 33.27,151.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,93.95 33.27,93.95 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,36.10 33.27,36.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='120.81,277.01 120.81,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='259.50,277.01 259.50,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='398.18,277.01 398.18,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<text x='120.81' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-04</text>
<text x='259.50' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-02</text>
<text x='398.18' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='24.72px' lengthAdjust='spacingAndGlyphs'>1e+00</text>
<text x='233.49' y='298.09' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='69.11px' lengthAdjust='spacingAndGlyphs'>Learning Rate</text>
<text transform='translate(13.37,139.87) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='24.45px' lengthAdjust='spacingAndGlyphs'>Error</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-168.5 -1222.5 258.5 292.5" width="258.5" height="292.5">
<defs>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="-194.35" y="-1251.75">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<g id="Canvas_1" fill="none" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_3465" filter="url(#Shadow)">
<ellipse cx="-44.75" cy="-1162.25" rx="57.7500922788345" ry="58.7500938767365" fill="white"/>
<ellipse cx="-44.75" cy="-1162.25" rx="57.7500922788345" ry="58.7500938767365" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-85.95 -1171.474)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="13.496" y="15">All Data</tspan>
</text>
</g>
<g id="Graphic_3464" filter="url(#Shadow)">
<path d="M -103.75 -1053 L -45.49782 -1012.4047 L -67.74811 -946.7203 L -139.7519 -946.7203 L -162.00218 -1012.4047 Z" fill="#ffeabb"/>
<path d="M -103.75 -1053 L -45.49782 -1012.4047 L -67.74811 -946.7203 L -139.7519 -946.7203 L -162.00218 -1012.4047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-147.75 -997.599)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.144" y="15">Training</tspan>
</text>
</g>
<g id="Graphic_3463" filter="url(#Shadow)">
<path d="M 25.25 -1053 L 83.50218 -1012.4047 L 61.25189 -946.7203 L -10.751893 -946.7203 L -33.00218 -1012.4047 Z" fill="#e5e6ff"/>
<path d="M 25.25 -1053 L 83.50218 -1012.4047 L 61.25189 -946.7203 L -10.751893 -946.7203 L -33.00218 -1012.4047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-18.75 -997.599)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.664" y="15">Testing</tspan>
</text>
</g>
<g id="Line_3462">
<line x1="-64.1842" y1="-1106.912" x2="-83.89393" y2="-1050.7893" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_3461">
<line x1="-22.20604" y1="-1108.1445" x2="2.4716575" y2="-1048.918" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

View File

@ -0,0 +1,111 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="486.47526 181.5 960.5495 456.00105" width="960.5495" height="456.00105">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" fill="none" stroke-opacity="1">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_33">
<rect x="486.97526" y="182" width="959.5495" height="455.00105" fill="#ffeabb" fill-opacity=".20827085"/>
<rect x="486.97526" y="182" width="959.5495" height="455.00105" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Group_27">
<g id="Line_32">
<path d="M 865.3143 395.9143 C 865.3143 395.9143 879.4107 382.0051 901.2502 382.16737 C 914.2004 382.2636 926.2621 387.2807 933.9356 391.34896" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_31">
<path d="M 949.2982 406.6421 C 949.2982 406.6421 961.8225 421.95014 959.3763 443.39734 C 957.9277 456.0981 951.6326 467.41505 946.739 474.53314" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_30">
<path d="M 932.483 489.43703 C 932.483 489.43703 915.7683 500.14596 894.4402 495.5 C 881.8016 492.7469 871.0648 485.3691 864.4139 479.81436" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_29">
<path d="M 854.5534 470.23047 C 854.5534 470.23047 842.0291 454.92243 844.4753 433.4752 C 845.9238 420.77445 852.219 409.4575 857.1125 402.3394" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_28"/>
</g>
<g id="Graphic_26">
<rect x="1228.9753" y="396.625" width="159.11903" height="92.25" fill="white"/>
<rect x="1228.9753" y="396.625" width="159.11903" height="92.25" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1233.9753 415.078)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="45.671517" y="15">Select a </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.919517" y="33.448">model/feature </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.743517" y="51.895996">configuration</tspan>
</text>
</g>
<g id="Graphic_25">
<path d="M 681.4753 311 L 746.6226 355.7412 L 721.7386 428.1338 L 641.2119 428.1338 L 616.3279 355.7412 Z" fill="white"/>
<path d="M 681.4753 311 L 746.6226 355.7412 L 721.7386 428.1338 L 641.2119 428.1338 L 616.3279 355.7412 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(631.67526 363.777)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.84" y="15">Variables/</tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="21.056" y="33.448">features</tspan>
</text>
</g>
<g id="Graphic_24">
<path d="M 681.4753 462 L 746.6226 506.7412 L 721.7386 579.1338 L 641.2119 579.1338 L 616.3279 506.7412 Z" fill="white"/>
<path d="M 681.4753 462 L 746.6226 506.7412 L 721.7386 579.1338 L 641.2119 579.1338 L 616.3279 506.7412 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(631.67526 496.329)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.232" y="15">Tuning </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="12.759999" y="33.448">Parameter</tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.536" y="51.895996">Values</tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.248" y="70.34399">(If any)</tspan>
</text>
</g>
<g id="Graphic_23">
<path d="M 1065.4258 384 L 1122.8763 442.75 L 1065.4258 501.5 L 1007.9753 442.75 Z" fill="white"/>
<path d="M 1065.4258 384 L 1122.8763 442.75 L 1065.4258 501.5 L 1007.9753 442.75 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1028.4869 423.127)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.08789" y="15">Good </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="7.119891" y="33.448">Results?</tspan>
</text>
</g>
<g id="Line_22">
<line x1="733.42135" y1="394.1463" x2="835.1432" y2="430.17034" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_21">
<line x1="732.9047" y1="497.32015" x2="835.8827" y2="438.39224" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_20">
<line x1="959.3763" y1="443.39734" x2="998.4163" y2="443.15904" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_19">
<line x1="1122.8763" y1="442.75" x2="1219.0753" y2="442.75" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_18">
<path d="M 1065.6305 384.2094 L 1066.1419 238 L 539.97526 238 L 539.47526 440.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_17">
<line x1="539.57526" y1="441.20003" x2="622.7898" y2="491.3692" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_16">
<line x1="539.57526" y1="441.20003" x2="622.19" y2="403.09478" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_15">
<rect x="1151.708" y="428.526" width="34.592" height="28.447998" fill="#fffbf1"/>
<text transform="translate(1156.412 433.526)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="552447e-18" y="15">Yes</tspan>
</text>
</g>
<g id="Graphic_14">
<rect x="1035.9936" y="256.0024" width="60.071305" height="28.447998" fill="#fffbf1"/>
<text transform="translate(1040.9936 261.0024)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.667652" y="15">No</tspan>
</text>
</g>
<g id="Graphic_3">
<text transform="translate(857.0298 411.1617)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="6394885e-19" y="15">Resampling/</tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="7.56" y="33.448">Validation/</tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="21.328" y="51.895996">Tuning</tspan>
</text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 569 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="171 -266 641 1305" width="641" height="1305">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -3 7 6" markerWidth="7" markerHeight="6" color="black">
<g>
<path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<g id="Canvas_1" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Graphic_4"/>
<g id="Graphic_2">
<text transform="translate(317.988 415)" fill="black">
<tspan font-family="Helvetica Neue" font-size="53" fill="black" x="20.871993" y="50">See this icon </tspan>
<tspan font-family="Helvetica Neue" font-size="53" fill="black" x="9.582993" y="112.484">in the corner? </tspan>
</text>
</g>
<g id="Line_7">
<line x1="491.5" y1="386.5" x2="790.6051" y2="-235.6239" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,579 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="-377 1076 642 429.65" width="642" height="429.65">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<font-face font-family="Helvetica Neue" font-size="16" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400">
<font-face-src>
<font-face-name name="HelveticaNeue"/>
</font-face-src>
</font-face>
<font-face font-family="Helvetica Neue" font-size="14" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400">
<font-face-src>
<font-face-name name="HelveticaNeue"/>
</font-face-src>
</font-face>
</defs>
<metadata> Produced by OmniGraffle 7.18.6\n2022-02-15 21:09:58 +0000</metadata>
<g id="Canvas_1" fill="none" fill-opacity="1" stroke-opacity="1" stroke-dasharray="none" stroke="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Line_668">
<line x1="-236" y1="1112" x2="219.1" y2="1112" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_667">
<text transform="translate(-113.03865 1081)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="29842795e-20" y="15">Original Data (ordered by time)</tspan>
</text>
</g>
<g id="Group_2023">
<g id="Graphic_2037">
<path d="M 208.85 1133 L 218.15 1133 C 221.25 1133 222.8 1133 224.66 1133.64 C 226.21 1134.28 227.76 1135.88 228.38 1137.48 C 229 1139.4 229 1141 229 1144.2 L 229 1153.8 C 229 1157 229 1158.6 228.38 1160.52 C 227.76 1162.12 226.21 1163.72 224.66 1164.36 C 222.8 1165 221.25 1165 218.15 1165 L 208.85 1165 C 205.75 1165 204.2 1165 202.34 1164.36 C 200.79 1163.72 199.24 1162.12 198.62 1160.52 C 198 1158.6 198 1157 198 1153.8 L 198 1144.2 C 198 1141 198 1139.4 198.62 1137.48 C 199.24 1135.88 200.79 1134.28 202.34 1133.64 C 204.2 1133 205.75 1133 208.85 1133 M 208.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(205.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">15</tspan>
</text>
</g>
<g id="Graphic_2036">
<path d="M 177.85 1133 L 187.15 1133 C 190.25 1133 191.8 1133 193.66 1133.64 C 195.21 1134.28 196.76 1135.88 197.38 1137.48 C 198 1139.4 198 1141 198 1144.2 L 198 1153.8 C 198 1157 198 1158.6 197.38 1160.52 C 196.76 1162.12 195.21 1163.72 193.66 1164.36 C 191.8 1165 190.25 1165 187.15 1165 L 177.85 1165 C 174.75 1165 173.2 1165 171.34 1164.36 C 169.79 1163.72 168.24 1162.12 167.62 1160.52 C 167 1158.6 167 1157 167 1153.8 L 167 1144.2 C 167 1141 167 1139.4 167.62 1137.48 C 168.24 1135.88 169.79 1134.28 171.34 1133.64 C 173.2 1133 174.75 1133 177.85 1133 M 177.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(174.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan>
</text>
</g>
<g id="Graphic_2035">
<path d="M 146.85 1133 L 156.15 1133 C 159.25 1133 160.8 1133 162.66 1133.64 C 164.21 1134.28 165.76 1135.88 166.38 1137.48 C 167 1139.4 167 1141 167 1144.2 L 167 1153.8 C 167 1157 167 1158.6 166.38 1160.52 C 165.76 1162.12 164.21 1163.72 162.66 1164.36 C 160.8 1165 159.25 1165 156.15 1165 L 146.85 1165 C 143.75 1165 142.2 1165 140.34 1164.36 C 138.79 1163.72 137.24 1162.12 136.62 1160.52 C 136 1158.6 136 1157 136 1153.8 L 136 1144.2 C 136 1141 136 1139.4 136.62 1137.48 C 137.24 1135.88 138.79 1134.28 140.34 1133.64 C 142.2 1133 143.75 1133 146.85 1133 M 146.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(143.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan>
</text>
</g>
<g id="Graphic_2034">
<path d="M 115.85 1133 L 125.15 1133 C 128.25 1133 129.8 1133 131.66 1133.64 C 133.21 1134.28 134.76 1135.88 135.38 1137.48 C 136 1139.4 136 1141 136 1144.2 L 136 1153.8 C 136 1157 136 1158.6 135.38 1160.52 C 134.76 1162.12 133.21 1163.72 131.66 1164.36 C 129.8 1165 128.25 1165 125.15 1165 L 115.85 1165 C 112.75 1165 111.2 1165 109.34 1164.36 C 107.79 1163.72 106.24 1162.12 105.62 1160.52 C 105 1158.6 105 1157 105 1153.8 L 105 1144.2 C 105 1141 105 1139.4 105.62 1137.48 C 106.24 1135.88 107.79 1134.28 109.34 1133.64 C 111.2 1133 112.75 1133 115.85 1133 M 115.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(112.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan>
</text>
</g>
<g id="Graphic_2033">
<path d="M 84.85 1133 L 94.15 1133 C 97.25 1133 98.8 1133 100.66 1133.64 C 102.21 1134.28 103.76 1135.88 104.38 1137.48 C 105 1139.4 105 1141 105 1144.2 L 105 1153.8 C 105 1157 105 1158.6 104.38 1160.52 C 103.76 1162.12 102.21 1163.72 100.66 1164.36 C 98.8 1165 97.25 1165 94.15 1165 L 84.85 1165 C 81.75 1165 80.2 1165 78.34 1164.36 C 76.79 1163.72 75.24 1162.12 74.62 1160.52 C 74 1158.6 74 1157 74 1153.8 L 74 1144.2 C 74 1141 74 1139.4 74.62 1137.48 C 75.24 1135.88 76.79 1134.28 78.34 1133.64 C 80.2 1133 81.75 1133 84.85 1133 M 84.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(81.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2032">
<path d="M 53.85 1133 L 63.15 1133 C 66.25 1133 67.8 1133 69.66 1133.64 C 71.21 1134.28 72.76 1135.88 73.38 1137.48 C 74 1139.4 74 1141 74 1144.2 L 74 1153.8 C 74 1157 74 1158.6 73.38 1160.52 C 72.76 1162.12 71.21 1163.72 69.66 1164.36 C 67.8 1165 66.25 1165 63.15 1165 L 53.85 1165 C 50.75 1165 49.2 1165 47.34 1164.36 C 45.79 1163.72 44.24 1162.12 43.62 1160.52 C 43 1158.6 43 1157 43 1153.8 L 43 1144.2 C 43 1141 43 1139.4 43.62 1137.48 C 44.24 1135.88 45.79 1134.28 47.34 1133.64 C 49.2 1133 50.75 1133 53.85 1133 M 53.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(50.716 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2031">
<path d="M 22.85 1133 L 32.15 1133 C 35.25 1133 36.8 1133 38.66 1133.64 C 40.21 1134.28 41.76 1135.88 42.38 1137.48 C 43 1139.4 43 1141 43 1144.2 L 43 1153.8 C 43 1157 43 1158.6 42.38 1160.52 C 41.76 1162.12 40.21 1163.72 38.66 1164.36 C 36.8 1165 35.25 1165 32.15 1165 L 22.85 1165 C 19.75 1165 18.2 1165 16.34 1164.36 C 14.79 1163.72 13.24 1162.12 12.62 1160.52 C 12 1158.6 12 1157 12 1153.8 L 12 1144.2 C 12 1141 12 1139.4 12.62 1137.48 C 13.24 1135.88 14.79 1134.28 16.34 1133.64 C 18.2 1133 19.75 1133 22.85 1133 M 22.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(23.608 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2030">
<path d="M -8.15 1133 L 1.15 1133 C 4.25 1133 5.8 1133 7.66 1133.64 C 9.21 1134.28 10.76 1135.88 11.38 1137.48 C 12 1139.4 12 1141 12 1144.2 L 12 1153.8 C 12 1157 12 1158.6 11.38 1160.52 C 10.76 1162.12 9.21 1163.72 7.66 1164.36 C 5.8 1165 4.25 1165 1.15 1165 L -8.15 1165 C -11.25 1165 -12.8 1165 -14.66 1164.36 C -16.21 1163.72 -17.76 1162.12 -18.38 1160.52 C -19 1158.6 -19 1157 -19 1153.8 L -19 1144.2 C -19 1141 -19 1139.4 -18.38 1137.48 C -17.76 1135.88 -16.21 1134.28 -14.66 1133.64 C -12.8 1133 -11.25 1133 -8.15 1133 M -8.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-7.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2029">
<path d="M -39.15 1133 L -29.85 1133 C -26.75 1133 -25.2 1133 -23.34 1133.64 C -21.79 1134.28 -20.24 1135.88 -19.62 1137.48 C -19 1139.4 -19 1141 -19 1144.2 L -19 1153.8 C -19 1157 -19 1158.6 -19.62 1160.52 C -20.24 1162.12 -21.79 1163.72 -23.34 1164.36 C -25.2 1165 -26.75 1165 -29.85 1165 L -39.15 1165 C -42.25 1165 -43.8 1165 -45.66 1164.36 C -47.21 1163.72 -48.76 1162.12 -49.38 1160.52 C -50 1158.6 -50 1157 -50 1153.8 L -50 1144.2 C -50 1141 -50 1139.4 -49.38 1137.48 C -48.76 1135.88 -47.21 1134.28 -45.66 1133.64 C -43.8 1133 -42.25 1133 -39.15 1133 M -39.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-38.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2028">
<path d="M -70.15 1133 L -60.85 1133 C -57.75 1133 -56.2 1133 -54.34 1133.64 C -52.79 1134.28 -51.24 1135.88 -50.62 1137.48 C -50 1139.4 -50 1141 -50 1144.2 L -50 1153.8 C -50 1157 -50 1158.6 -50.62 1160.52 C -51.24 1162.12 -52.79 1163.72 -54.34 1164.36 C -56.2 1165 -57.75 1165 -60.85 1165 L -70.15 1165 C -73.25 1165 -74.8 1165 -76.66 1164.36 C -78.21 1163.72 -79.76 1162.12 -80.38 1160.52 C -81 1158.6 -81 1157 -81 1153.8 L -81 1144.2 C -81 1141 -81 1139.4 -80.38 1137.48 C -79.76 1135.88 -78.21 1134.28 -76.66 1133.64 C -74.8 1133 -73.25 1133 -70.15 1133 M -70.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-69.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2027">
<path d="M -101.15 1133 L -91.85 1133 C -88.75 1133 -87.2 1133 -85.34 1133.64 C -83.79 1134.28 -82.24 1135.88 -81.62 1137.48 C -81 1139.4 -81 1141 -81 1144.2 L -81 1153.8 C -81 1157 -81 1158.6 -81.62 1160.52 C -82.24 1162.12 -83.79 1163.72 -85.34 1164.36 C -87.2 1165 -88.75 1165 -91.85 1165 L -101.15 1165 C -104.25 1165 -105.8 1165 -107.66 1164.36 C -109.21 1163.72 -110.76 1162.12 -111.38 1160.52 C -112 1158.6 -112 1157 -112 1153.8 L -112 1144.2 C -112 1141 -112 1139.4 -111.38 1137.48 C -110.76 1135.88 -109.21 1134.28 -107.66 1133.64 C -105.8 1133 -104.25 1133 -101.15 1133 M -101.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-100.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2026">
<path d="M -132.15 1133 L -122.85 1133 C -119.75 1133 -118.2 1133 -116.34 1133.64 C -114.79 1134.28 -113.24 1135.88 -112.62 1137.48 C -112 1139.4 -112 1141 -112 1144.2 L -112 1153.8 C -112 1157 -112 1158.6 -112.62 1160.52 C -113.24 1162.12 -114.79 1163.72 -116.34 1164.36 C -118.2 1165 -119.75 1165 -122.85 1165 L -132.15 1165 C -135.25 1165 -136.8 1165 -138.66 1164.36 C -140.21 1163.72 -141.76 1162.12 -142.38 1160.52 C -143 1158.6 -143 1157 -143 1153.8 L -143 1144.2 C -143 1141 -143 1139.4 -142.38 1137.48 C -141.76 1135.88 -140.21 1134.28 -138.66 1133.64 C -136.8 1133 -135.25 1133 -132.15 1133 M -132.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-131.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan>
</text>
</g>
<g id="Graphic_2025">
<path d="M -163.15 1133 L -153.85 1133 C -150.75 1133 -149.2 1133 -147.34 1133.64 C -145.79 1134.28 -144.24 1135.88 -143.62 1137.48 C -143 1139.4 -143 1141 -143 1144.2 L -143 1153.8 C -143 1157 -143 1158.6 -143.62 1160.52 C -144.24 1162.12 -145.79 1163.72 -147.34 1164.36 C -149.2 1165 -150.75 1165 -153.85 1165 L -163.15 1165 C -166.25 1165 -167.8 1165 -169.66 1164.36 C -171.21 1163.72 -172.76 1162.12 -173.38 1160.52 C -174 1158.6 -174 1157 -174 1153.8 L -174 1144.2 C -174 1141 -174 1139.4 -173.38 1137.48 C -172.76 1135.88 -171.21 1134.28 -169.66 1133.64 C -167.8 1133 -166.25 1133 -163.15 1133 M -163.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-162.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan>
</text>
</g>
<g id="Graphic_2024">
<path d="M -194.15 1133 L -184.85 1133 C -181.75 1133 -180.2 1133 -178.34 1133.64 C -176.79 1134.28 -175.24 1135.88 -174.62 1137.48 C -174 1139.4 -174 1141 -174 1144.2 L -174 1153.8 C -174 1157 -174 1158.6 -174.62 1160.52 C -175.24 1162.12 -176.79 1163.72 -178.34 1164.36 C -180.2 1165 -181.75 1165 -184.85 1165 L -194.15 1165 C -197.25 1165 -198.8 1165 -200.66 1164.36 C -202.21 1163.72 -203.76 1162.12 -204.38 1160.52 C -205 1158.6 -205 1157 -205 1153.8 L -205 1144.2 C -205 1141 -205 1139.4 -204.38 1137.48 C -203.76 1135.88 -202.21 1134.28 -200.66 1133.64 C -198.8 1133 -197.25 1133 -194.15 1133 M -194.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-193.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan>
</text>
</g>
<g id="Graphic_2022">
<path d="M -225.15 1133 L -215.85 1133 C -212.75 1133 -211.2 1133 -209.34 1133.64 C -207.79 1134.28 -206.24 1135.88 -205.62 1137.48 C -205 1139.4 -205 1141 -205 1144.2 L -205 1153.8 C -205 1157 -205 1158.6 -205.62 1160.52 C -206.24 1162.12 -207.79 1163.72 -209.34 1164.36 C -211.2 1165 -212.75 1165 -215.85 1165 L -225.15 1165 C -228.25 1165 -229.8 1165 -231.66 1164.36 C -233.21 1163.72 -234.76 1162.12 -235.38 1160.52 C -236 1158.6 -236 1157 -236 1153.8 L -236 1144.2 C -236 1141 -236 1139.4 -235.38 1137.48 C -234.76 1135.88 -233.21 1134.28 -231.66 1133.64 C -229.8 1133 -228.25 1133 -225.15 1133 M -225.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-224.392 1140.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">1</tspan>
</text>
</g>
</g>
<g id="Graphic_2053"/>
<g id="Graphic_2052"/>
<g id="Graphic_2051">
<path d="M 182.85 1297 L 192.15 1297 C 195.25 1297 196.8 1297 198.66 1297.64 C 200.21 1298.28 201.76 1299.88 202.38 1301.48 C 203 1303.4 203 1305 203 1308.2 L 203 1317.8 C 203 1321 203 1322.6 202.38 1324.52 C 201.76 1326.12 200.21 1327.72 198.66 1328.36 C 196.8 1329 195.25 1329 192.15 1329 L 182.85 1329 C 179.75 1329 178.2 1329 176.34 1328.36 C 174.79 1327.72 173.24 1326.12 172.62 1324.52 C 172 1322.6 172 1321 172 1317.8 L 172 1308.2 C 172 1305 172 1303.4 172.62 1301.48 C 173.24 1299.88 174.79 1298.28 176.34 1297.64 C 178.2 1297 179.75 1297 182.85 1297 M 182.85 1297" fill="#afb1ff"/>
<path d="M 182.85 1297 L 192.15 1297 C 195.25 1297 196.8 1297 198.66 1297.64 C 200.21 1298.28 201.76 1299.88 202.38 1301.48 C 203 1303.4 203 1305 203 1308.2 L 203 1317.8 C 203 1321 203 1322.6 202.38 1324.52 C 201.76 1326.12 200.21 1327.72 198.66 1328.36 C 196.8 1329 195.25 1329 192.15 1329 L 182.85 1329 C 179.75 1329 178.2 1329 176.34 1328.36 C 174.79 1327.72 173.24 1326.12 172.62 1324.52 C 172 1322.6 172 1321 172 1317.8 L 172 1308.2 C 172 1305 172 1303.4 172.62 1301.48 C 173.24 1299.88 174.79 1298.28 176.34 1297.64 C 178.2 1297 179.75 1297 182.85 1297 M 182.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(179.716 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2050">
<path d="M 151.85 1297 L 161.15 1297 C 164.25 1297 165.8 1297 167.66 1297.64 C 169.21 1298.28 170.76 1299.88 171.38 1301.48 C 172 1303.4 172 1305 172 1308.2 L 172 1317.8 C 172 1321 172 1322.6 171.38 1324.52 C 170.76 1326.12 169.21 1327.72 167.66 1328.36 C 165.8 1329 164.25 1329 161.15 1329 L 151.85 1329 C 148.75 1329 147.2 1329 145.34 1328.36 C 143.79 1327.72 142.24 1326.12 141.62 1324.52 C 141 1322.6 141 1321 141 1317.8 L 141 1308.2 C 141 1305 141 1303.4 141.62 1301.48 C 142.24 1299.88 143.79 1298.28 145.34 1297.64 C 147.2 1297 148.75 1297 151.85 1297 M 151.85 1297" fill="#afb1ff"/>
<path d="M 151.85 1297 L 161.15 1297 C 164.25 1297 165.8 1297 167.66 1297.64 C 169.21 1298.28 170.76 1299.88 171.38 1301.48 C 172 1303.4 172 1305 172 1308.2 L 172 1317.8 C 172 1321 172 1322.6 171.38 1324.52 C 170.76 1326.12 169.21 1327.72 167.66 1328.36 C 165.8 1329 164.25 1329 161.15 1329 L 151.85 1329 C 148.75 1329 147.2 1329 145.34 1328.36 C 143.79 1327.72 142.24 1326.12 141.62 1324.52 C 141 1322.6 141 1321 141 1317.8 L 141 1308.2 C 141 1305 141 1303.4 141.62 1301.48 C 142.24 1299.88 143.79 1298.28 145.34 1297.64 C 147.2 1297 148.75 1297 151.85 1297 M 151.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(148.716 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2049">
<path d="M 120.85 1297 L 130.15 1297 C 133.25 1297 134.8 1297 136.66 1297.64 C 138.21 1298.28 139.76 1299.88 140.38 1301.48 C 141 1303.4 141 1305 141 1308.2 L 141 1317.8 C 141 1321 141 1322.6 140.38 1324.52 C 139.76 1326.12 138.21 1327.72 136.66 1328.36 C 134.8 1329 133.25 1329 130.15 1329 L 120.85 1329 C 117.75 1329 116.2 1329 114.34 1328.36 C 112.79 1327.72 111.24 1326.12 110.62 1324.52 C 110 1322.6 110 1321 110 1317.8 L 110 1308.2 C 110 1305 110 1303.4 110.62 1301.48 C 111.24 1299.88 112.79 1298.28 114.34 1297.64 C 116.2 1297 117.75 1297 120.85 1297 M 120.85 1297" fill="#afb1ff"/>
<path d="M 120.85 1297 L 130.15 1297 C 133.25 1297 134.8 1297 136.66 1297.64 C 138.21 1298.28 139.76 1299.88 140.38 1301.48 C 141 1303.4 141 1305 141 1308.2 L 141 1317.8 C 141 1321 141 1322.6 140.38 1324.52 C 139.76 1326.12 138.21 1327.72 136.66 1328.36 C 134.8 1329 133.25 1329 130.15 1329 L 120.85 1329 C 117.75 1329 116.2 1329 114.34 1328.36 C 112.79 1327.72 111.24 1326.12 110.62 1324.52 C 110 1322.6 110 1321 110 1317.8 L 110 1308.2 C 110 1305 110 1303.4 110.62 1301.48 C 111.24 1299.88 112.79 1298.28 114.34 1297.64 C 116.2 1297 117.75 1297 120.85 1297 M 120.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(121.608 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2048"/>
<g id="Graphic_2047"/>
<g id="Graphic_2046">
<path d="M 27.85 1297 L 37.15 1297 C 40.25 1297 41.8 1297 43.66 1297.64 C 45.21 1298.28 46.76 1299.88 47.38 1301.48 C 48 1303.4 48 1305 48 1308.2 L 48 1317.8 C 48 1321 48 1322.6 47.38 1324.52 C 46.76 1326.12 45.21 1327.72 43.66 1328.36 C 41.8 1329 40.25 1329 37.15 1329 L 27.85 1329 C 24.75 1329 23.2 1329 21.34 1328.36 C 19.79 1327.72 18.24 1326.12 17.62 1324.52 C 17 1322.6 17 1321 17 1317.8 L 17 1308.2 C 17 1305 17 1303.4 17.62 1301.48 C 18.24 1299.88 19.79 1298.28 21.34 1297.64 C 23.2 1297 24.75 1297 27.85 1297 M 27.85 1297" fill="#dce7fd"/>
<path d="M 27.85 1297 L 37.15 1297 C 40.25 1297 41.8 1297 43.66 1297.64 C 45.21 1298.28 46.76 1299.88 47.38 1301.48 C 48 1303.4 48 1305 48 1308.2 L 48 1317.8 C 48 1321 48 1322.6 47.38 1324.52 C 46.76 1326.12 45.21 1327.72 43.66 1328.36 C 41.8 1329 40.25 1329 37.15 1329 L 27.85 1329 C 24.75 1329 23.2 1329 21.34 1328.36 C 19.79 1327.72 18.24 1326.12 17.62 1324.52 C 17 1322.6 17 1321 17 1317.8 L 17 1308.2 C 17 1305 17 1303.4 17.62 1301.48 C 18.24 1299.88 19.79 1298.28 21.34 1297.64 C 23.2 1297 24.75 1297 27.85 1297 M 27.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(28.608 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2045">
<path d="M -3.15 1297 L 6.15 1297 C 9.25 1297 10.8 1297 12.66 1297.64 C 14.21 1298.28 15.76 1299.88 16.38 1301.48 C 17 1303.4 17 1305 17 1308.2 L 17 1317.8 C 17 1321 17 1322.6 16.38 1324.52 C 15.76 1326.12 14.21 1327.72 12.66 1328.36 C 10.8 1329 9.25 1329 6.15 1329 L -3.15 1329 C -6.25 1329 -7.8 1329 -9.66 1328.36 C -11.21 1327.72 -12.76 1326.12 -13.38 1324.52 C -14 1322.6 -14 1321 -14 1317.8 L -14 1308.2 C -14 1305 -14 1303.4 -13.38 1301.48 C -12.76 1299.88 -11.21 1298.28 -9.66 1297.64 C -7.8 1297 -6.25 1297 -3.15 1297 M -3.15 1297" fill="#dce7fd"/>
<path d="M -3.15 1297 L 6.15 1297 C 9.25 1297 10.8 1297 12.66 1297.64 C 14.21 1298.28 15.76 1299.88 16.38 1301.48 C 17 1303.4 17 1305 17 1308.2 L 17 1317.8 C 17 1321 17 1322.6 16.38 1324.52 C 15.76 1326.12 14.21 1327.72 12.66 1328.36 C 10.8 1329 9.25 1329 6.15 1329 L -3.15 1329 C -6.25 1329 -7.8 1329 -9.66 1328.36 C -11.21 1327.72 -12.76 1326.12 -13.38 1324.52 C -14 1322.6 -14 1321 -14 1317.8 L -14 1308.2 C -14 1305 -14 1303.4 -13.38 1301.48 C -12.76 1299.88 -11.21 1298.28 -9.66 1297.64 C -7.8 1297 -6.25 1297 -3.15 1297 M -3.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-2.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2044">
<path d="M -34.15 1297 L -24.85 1297 C -21.75 1297 -20.2 1297 -18.34 1297.64 C -16.79 1298.28 -15.24 1299.88 -14.62 1301.48 C -14 1303.4 -14 1305 -14 1308.2 L -14 1317.8 C -14 1321 -14 1322.6 -14.62 1324.52 C -15.24 1326.12 -16.79 1327.72 -18.34 1328.36 C -20.2 1329 -21.75 1329 -24.85 1329 L -34.15 1329 C -37.25 1329 -38.8 1329 -40.66 1328.36 C -42.21 1327.72 -43.76 1326.12 -44.38 1324.52 C -45 1322.6 -45 1321 -45 1317.8 L -45 1308.2 C -45 1305 -45 1303.4 -44.38 1301.48 C -43.76 1299.88 -42.21 1298.28 -40.66 1297.64 C -38.8 1297 -37.25 1297 -34.15 1297 M -34.15 1297" fill="#dce7fd"/>
<path d="M -34.15 1297 L -24.85 1297 C -21.75 1297 -20.2 1297 -18.34 1297.64 C -16.79 1298.28 -15.24 1299.88 -14.62 1301.48 C -14 1303.4 -14 1305 -14 1308.2 L -14 1317.8 C -14 1321 -14 1322.6 -14.62 1324.52 C -15.24 1326.12 -16.79 1327.72 -18.34 1328.36 C -20.2 1329 -21.75 1329 -24.85 1329 L -34.15 1329 C -37.25 1329 -38.8 1329 -40.66 1328.36 C -42.21 1327.72 -43.76 1326.12 -44.38 1324.52 C -45 1322.6 -45 1321 -45 1317.8 L -45 1308.2 C -45 1305 -45 1303.4 -44.38 1301.48 C -43.76 1299.88 -42.21 1298.28 -40.66 1297.64 C -38.8 1297 -37.25 1297 -34.15 1297 M -34.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-33.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2043">
<path d="M -65.15 1297 L -55.85 1297 C -52.75 1297 -51.2 1297 -49.34 1297.64 C -47.79 1298.28 -46.24 1299.88 -45.62 1301.48 C -45 1303.4 -45 1305 -45 1308.2 L -45 1317.8 C -45 1321 -45 1322.6 -45.62 1324.52 C -46.24 1326.12 -47.79 1327.72 -49.34 1328.36 C -51.2 1329 -52.75 1329 -55.85 1329 L -65.15 1329 C -68.25 1329 -69.8 1329 -71.66 1328.36 C -73.21 1327.72 -74.76 1326.12 -75.38 1324.52 C -76 1322.6 -76 1321 -76 1317.8 L -76 1308.2 C -76 1305 -76 1303.4 -75.38 1301.48 C -74.76 1299.88 -73.21 1298.28 -71.66 1297.64 C -69.8 1297 -68.25 1297 -65.15 1297 M -65.15 1297" fill="#dce7fd"/>
<path d="M -65.15 1297 L -55.85 1297 C -52.75 1297 -51.2 1297 -49.34 1297.64 C -47.79 1298.28 -46.24 1299.88 -45.62 1301.48 C -45 1303.4 -45 1305 -45 1308.2 L -45 1317.8 C -45 1321 -45 1322.6 -45.62 1324.52 C -46.24 1326.12 -47.79 1327.72 -49.34 1328.36 C -51.2 1329 -52.75 1329 -55.85 1329 L -65.15 1329 C -68.25 1329 -69.8 1329 -71.66 1328.36 C -73.21 1327.72 -74.76 1326.12 -75.38 1324.52 C -76 1322.6 -76 1321 -76 1317.8 L -76 1308.2 C -76 1305 -76 1303.4 -75.38 1301.48 C -74.76 1299.88 -73.21 1298.28 -71.66 1297.64 C -69.8 1297 -68.25 1297 -65.15 1297 M -65.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-64.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2042">
<path d="M -96.15 1297 L -86.85 1297 C -83.75 1297 -82.2 1297 -80.34 1297.64 C -78.79 1298.28 -77.24 1299.88 -76.62 1301.48 C -76 1303.4 -76 1305 -76 1308.2 L -76 1317.8 C -76 1321 -76 1322.6 -76.62 1324.52 C -77.24 1326.12 -78.79 1327.72 -80.34 1328.36 C -82.2 1329 -83.75 1329 -86.85 1329 L -96.15 1329 C -99.25 1329 -100.8 1329 -102.66 1328.36 C -104.21 1327.72 -105.76 1326.12 -106.38 1324.52 C -107 1322.6 -107 1321 -107 1317.8 L -107 1308.2 C -107 1305 -107 1303.4 -106.38 1301.48 C -105.76 1299.88 -104.21 1298.28 -102.66 1297.64 C -100.8 1297 -99.25 1297 -96.15 1297 M -96.15 1297" fill="#dce7fd"/>
<path d="M -96.15 1297 L -86.85 1297 C -83.75 1297 -82.2 1297 -80.34 1297.64 C -78.79 1298.28 -77.24 1299.88 -76.62 1301.48 C -76 1303.4 -76 1305 -76 1308.2 L -76 1317.8 C -76 1321 -76 1322.6 -76.62 1324.52 C -77.24 1326.12 -78.79 1327.72 -80.34 1328.36 C -82.2 1329 -83.75 1329 -86.85 1329 L -96.15 1329 C -99.25 1329 -100.8 1329 -102.66 1328.36 C -104.21 1327.72 -105.76 1326.12 -106.38 1324.52 C -107 1322.6 -107 1321 -107 1317.8 L -107 1308.2 C -107 1305 -107 1303.4 -106.38 1301.48 C -105.76 1299.88 -104.21 1298.28 -102.66 1297.64 C -100.8 1297 -99.25 1297 -96.15 1297 M -96.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-95.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan>
</text>
</g>
<g id="Graphic_2041">
<path d="M -127.15 1297 L -117.85 1297 C -114.75 1297 -113.2 1297 -111.34 1297.64 C -109.79 1298.28 -108.24 1299.88 -107.62 1301.48 C -107 1303.4 -107 1305 -107 1308.2 L -107 1317.8 C -107 1321 -107 1322.6 -107.62 1324.52 C -108.24 1326.12 -109.79 1327.72 -111.34 1328.36 C -113.2 1329 -114.75 1329 -117.85 1329 L -127.15 1329 C -130.25 1329 -131.8 1329 -133.66 1328.36 C -135.21 1327.72 -136.76 1326.12 -137.38 1324.52 C -138 1322.6 -138 1321 -138 1317.8 L -138 1308.2 C -138 1305 -138 1303.4 -137.38 1301.48 C -136.76 1299.88 -135.21 1298.28 -133.66 1297.64 C -131.8 1297 -130.25 1297 -127.15 1297 M -127.15 1297" fill="#dce7fd"/>
<path d="M -127.15 1297 L -117.85 1297 C -114.75 1297 -113.2 1297 -111.34 1297.64 C -109.79 1298.28 -108.24 1299.88 -107.62 1301.48 C -107 1303.4 -107 1305 -107 1308.2 L -107 1317.8 C -107 1321 -107 1322.6 -107.62 1324.52 C -108.24 1326.12 -109.79 1327.72 -111.34 1328.36 C -113.2 1329 -114.75 1329 -117.85 1329 L -127.15 1329 C -130.25 1329 -131.8 1329 -133.66 1328.36 C -135.21 1327.72 -136.76 1326.12 -137.38 1324.52 C -138 1322.6 -138 1321 -138 1317.8 L -138 1308.2 C -138 1305 -138 1303.4 -137.38 1301.48 C -136.76 1299.88 -135.21 1298.28 -133.66 1297.64 C -131.8 1297 -130.25 1297 -127.15 1297 M -127.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-126.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan>
</text>
</g>
<g id="Graphic_2040">
<path d="M -158.15 1297 L -148.85 1297 C -145.75 1297 -144.2 1297 -142.34 1297.64 C -140.79 1298.28 -139.24 1299.88 -138.62 1301.48 C -138 1303.4 -138 1305 -138 1308.2 L -138 1317.8 C -138 1321 -138 1322.6 -138.62 1324.52 C -139.24 1326.12 -140.79 1327.72 -142.34 1328.36 C -144.2 1329 -145.75 1329 -148.85 1329 L -158.15 1329 C -161.25 1329 -162.8 1329 -164.66 1328.36 C -166.21 1327.72 -167.76 1326.12 -168.38 1324.52 C -169 1322.6 -169 1321 -169 1317.8 L -169 1308.2 C -169 1305 -169 1303.4 -168.38 1301.48 C -167.76 1299.88 -166.21 1298.28 -164.66 1297.64 C -162.8 1297 -161.25 1297 -158.15 1297 M -158.15 1297" fill="#dce7fd"/>
<path d="M -158.15 1297 L -148.85 1297 C -145.75 1297 -144.2 1297 -142.34 1297.64 C -140.79 1298.28 -139.24 1299.88 -138.62 1301.48 C -138 1303.4 -138 1305 -138 1308.2 L -138 1317.8 C -138 1321 -138 1322.6 -138.62 1324.52 C -139.24 1326.12 -140.79 1327.72 -142.34 1328.36 C -144.2 1329 -145.75 1329 -148.85 1329 L -158.15 1329 C -161.25 1329 -162.8 1329 -164.66 1328.36 C -166.21 1327.72 -167.76 1326.12 -168.38 1324.52 C -169 1322.6 -169 1321 -169 1317.8 L -169 1308.2 C -169 1305 -169 1303.4 -168.38 1301.48 C -167.76 1299.88 -166.21 1298.28 -164.66 1297.64 C -162.8 1297 -161.25 1297 -158.15 1297 M -158.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-157.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan>
</text>
</g>
<g id="Graphic_2039">
<path d="M -189.15 1297 L -179.85 1297 C -176.75 1297 -175.2 1297 -173.34 1297.64 C -171.79 1298.28 -170.24 1299.88 -169.62 1301.48 C -169 1303.4 -169 1305 -169 1308.2 L -169 1317.8 C -169 1321 -169 1322.6 -169.62 1324.52 C -170.24 1326.12 -171.79 1327.72 -173.34 1328.36 C -175.2 1329 -176.75 1329 -179.85 1329 L -189.15 1329 C -192.25 1329 -193.8 1329 -195.66 1328.36 C -197.21 1327.72 -198.76 1326.12 -199.38 1324.52 C -200 1322.6 -200 1321 -200 1317.8 L -200 1308.2 C -200 1305 -200 1303.4 -199.38 1301.48 C -198.76 1299.88 -197.21 1298.28 -195.66 1297.64 C -193.8 1297 -192.25 1297 -189.15 1297 M -189.15 1297" fill="#dce7fd"/>
<path d="M -189.15 1297 L -179.85 1297 C -176.75 1297 -175.2 1297 -173.34 1297.64 C -171.79 1298.28 -170.24 1299.88 -169.62 1301.48 C -169 1303.4 -169 1305 -169 1308.2 L -169 1317.8 C -169 1321 -169 1322.6 -169.62 1324.52 C -170.24 1326.12 -171.79 1327.72 -173.34 1328.36 C -175.2 1329 -176.75 1329 -179.85 1329 L -189.15 1329 C -192.25 1329 -193.8 1329 -195.66 1328.36 C -197.21 1327.72 -198.76 1326.12 -199.38 1324.52 C -200 1322.6 -200 1321 -200 1317.8 L -200 1308.2 C -200 1305 -200 1303.4 -199.38 1301.48 C -198.76 1299.88 -197.21 1298.28 -195.66 1297.64 C -193.8 1297 -192.25 1297 -189.15 1297 M -189.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-188.392 1304.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">1</tspan>
</text>
</g>
<g id="Line_2054">
<line x1="-250" y1="1505" x2="-250" y2="1297" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/>
</g>
<g id="Graphic_2055">
<text transform="translate(-372 1305.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 1</tspan>
</text>
</g>
<g id="Graphic_2276"/>
<g id="Graphic_2275"/>
<g id="Graphic_2274">
<path d="M 182.85 1341 L 192.15 1341 C 195.25 1341 196.8 1341 198.66 1341.64 C 200.21 1342.28 201.76 1343.88 202.38 1345.48 C 203 1347.4 203 1349 203 1352.2 L 203 1361.8 C 203 1365 203 1366.6 202.38 1368.52 C 201.76 1370.12 200.21 1371.72 198.66 1372.36 C 196.8 1373 195.25 1373 192.15 1373 L 182.85 1373 C 179.75 1373 178.2 1373 176.34 1372.36 C 174.79 1371.72 173.24 1370.12 172.62 1368.52 C 172 1366.6 172 1365 172 1361.8 L 172 1352.2 C 172 1349 172 1347.4 172.62 1345.48 C 173.24 1343.88 174.79 1342.28 176.34 1341.64 C 178.2 1341 179.75 1341 182.85 1341 M 182.85 1341" fill="#afb1ff"/>
<path d="M 182.85 1341 L 192.15 1341 C 195.25 1341 196.8 1341 198.66 1341.64 C 200.21 1342.28 201.76 1343.88 202.38 1345.48 C 203 1347.4 203 1349 203 1352.2 L 203 1361.8 C 203 1365 203 1366.6 202.38 1368.52 C 201.76 1370.12 200.21 1371.72 198.66 1372.36 C 196.8 1373 195.25 1373 192.15 1373 L 182.85 1373 C 179.75 1373 178.2 1373 176.34 1372.36 C 174.79 1371.72 173.24 1370.12 172.62 1368.52 C 172 1366.6 172 1365 172 1361.8 L 172 1352.2 C 172 1349 172 1347.4 172.62 1345.48 C 173.24 1343.88 174.79 1342.28 176.34 1341.64 C 178.2 1341 179.75 1341 182.85 1341 M 182.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(179.716 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan>
</text>
</g>
<g id="Graphic_2273">
<path d="M 151.85 1341 L 161.15 1341 C 164.25 1341 165.8 1341 167.66 1341.64 C 169.21 1342.28 170.76 1343.88 171.38 1345.48 C 172 1347.4 172 1349 172 1352.2 L 172 1361.8 C 172 1365 172 1366.6 171.38 1368.52 C 170.76 1370.12 169.21 1371.72 167.66 1372.36 C 165.8 1373 164.25 1373 161.15 1373 L 151.85 1373 C 148.75 1373 147.2 1373 145.34 1372.36 C 143.79 1371.72 142.24 1370.12 141.62 1368.52 C 141 1366.6 141 1365 141 1361.8 L 141 1352.2 C 141 1349 141 1347.4 141.62 1345.48 C 142.24 1343.88 143.79 1342.28 145.34 1341.64 C 147.2 1341 148.75 1341 151.85 1341 M 151.85 1341" fill="#afb1ff"/>
<path d="M 151.85 1341 L 161.15 1341 C 164.25 1341 165.8 1341 167.66 1341.64 C 169.21 1342.28 170.76 1343.88 171.38 1345.48 C 172 1347.4 172 1349 172 1352.2 L 172 1361.8 C 172 1365 172 1366.6 171.38 1368.52 C 170.76 1370.12 169.21 1371.72 167.66 1372.36 C 165.8 1373 164.25 1373 161.15 1373 L 151.85 1373 C 148.75 1373 147.2 1373 145.34 1372.36 C 143.79 1371.72 142.24 1370.12 141.62 1368.52 C 141 1366.6 141 1365 141 1361.8 L 141 1352.2 C 141 1349 141 1347.4 141.62 1345.48 C 142.24 1343.88 143.79 1342.28 145.34 1341.64 C 147.2 1341 148.75 1341 151.85 1341 M 151.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(148.716 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2272">
<path d="M 120.85 1341 L 130.15 1341 C 133.25 1341 134.8 1341 136.66 1341.64 C 138.21 1342.28 139.76 1343.88 140.38 1345.48 C 141 1347.4 141 1349 141 1352.2 L 141 1361.8 C 141 1365 141 1366.6 140.38 1368.52 C 139.76 1370.12 138.21 1371.72 136.66 1372.36 C 134.8 1373 133.25 1373 130.15 1373 L 120.85 1373 C 117.75 1373 116.2 1373 114.34 1372.36 C 112.79 1371.72 111.24 1370.12 110.62 1368.52 C 110 1366.6 110 1365 110 1361.8 L 110 1352.2 C 110 1349 110 1347.4 110.62 1345.48 C 111.24 1343.88 112.79 1342.28 114.34 1341.64 C 116.2 1341 117.75 1341 120.85 1341 M 120.85 1341" fill="#afb1ff"/>
<path d="M 120.85 1341 L 130.15 1341 C 133.25 1341 134.8 1341 136.66 1341.64 C 138.21 1342.28 139.76 1343.88 140.38 1345.48 C 141 1347.4 141 1349 141 1352.2 L 141 1361.8 C 141 1365 141 1366.6 140.38 1368.52 C 139.76 1370.12 138.21 1371.72 136.66 1372.36 C 134.8 1373 133.25 1373 130.15 1373 L 120.85 1373 C 117.75 1373 116.2 1373 114.34 1372.36 C 112.79 1371.72 111.24 1370.12 110.62 1368.52 C 110 1366.6 110 1365 110 1361.8 L 110 1352.2 C 110 1349 110 1347.4 110.62 1345.48 C 111.24 1343.88 112.79 1342.28 114.34 1341.64 C 116.2 1341 117.75 1341 120.85 1341 M 120.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(117.716 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2271"/>
<g id="Graphic_2270"/>
<g id="Graphic_2269">
<path d="M 27.85 1341 L 37.15 1341 C 40.25 1341 41.8 1341 43.66 1341.64 C 45.21 1342.28 46.76 1343.88 47.38 1345.48 C 48 1347.4 48 1349 48 1352.2 L 48 1361.8 C 48 1365 48 1366.6 47.38 1368.52 C 46.76 1370.12 45.21 1371.72 43.66 1372.36 C 41.8 1373 40.25 1373 37.15 1373 L 27.85 1373 C 24.75 1373 23.2 1373 21.34 1372.36 C 19.79 1371.72 18.24 1370.12 17.62 1368.52 C 17 1366.6 17 1365 17 1361.8 L 17 1352.2 C 17 1349 17 1347.4 17.62 1345.48 C 18.24 1343.88 19.79 1342.28 21.34 1341.64 C 23.2 1341 24.75 1341 27.85 1341 M 27.85 1341" fill="#dce7fd"/>
<path d="M 27.85 1341 L 37.15 1341 C 40.25 1341 41.8 1341 43.66 1341.64 C 45.21 1342.28 46.76 1343.88 47.38 1345.48 C 48 1347.4 48 1349 48 1352.2 L 48 1361.8 C 48 1365 48 1366.6 47.38 1368.52 C 46.76 1370.12 45.21 1371.72 43.66 1372.36 C 41.8 1373 40.25 1373 37.15 1373 L 27.85 1373 C 24.75 1373 23.2 1373 21.34 1372.36 C 19.79 1371.72 18.24 1370.12 17.62 1368.52 C 17 1366.6 17 1365 17 1361.8 L 17 1352.2 C 17 1349 17 1347.4 17.62 1345.48 C 18.24 1343.88 19.79 1342.28 21.34 1341.64 C 23.2 1341 24.75 1341 27.85 1341 M 27.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(28.608 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2268">
<path d="M -3.15 1341 L 6.15 1341 C 9.25 1341 10.8 1341 12.66 1341.64 C 14.21 1342.28 15.76 1343.88 16.38 1345.48 C 17 1347.4 17 1349 17 1352.2 L 17 1361.8 C 17 1365 17 1366.6 16.38 1368.52 C 15.76 1370.12 14.21 1371.72 12.66 1372.36 C 10.8 1373 9.25 1373 6.15 1373 L -3.15 1373 C -6.25 1373 -7.8 1373 -9.66 1372.36 C -11.21 1371.72 -12.76 1370.12 -13.38 1368.52 C -14 1366.6 -14 1365 -14 1361.8 L -14 1352.2 C -14 1349 -14 1347.4 -13.38 1345.48 C -12.76 1343.88 -11.21 1342.28 -9.66 1341.64 C -7.8 1341 -6.25 1341 -3.15 1341 M -3.15 1341" fill="#dce7fd"/>
<path d="M -3.15 1341 L 6.15 1341 C 9.25 1341 10.8 1341 12.66 1341.64 C 14.21 1342.28 15.76 1343.88 16.38 1345.48 C 17 1347.4 17 1349 17 1352.2 L 17 1361.8 C 17 1365 17 1366.6 16.38 1368.52 C 15.76 1370.12 14.21 1371.72 12.66 1372.36 C 10.8 1373 9.25 1373 6.15 1373 L -3.15 1373 C -6.25 1373 -7.8 1373 -9.66 1372.36 C -11.21 1371.72 -12.76 1370.12 -13.38 1368.52 C -14 1366.6 -14 1365 -14 1361.8 L -14 1352.2 C -14 1349 -14 1347.4 -13.38 1345.48 C -12.76 1343.88 -11.21 1342.28 -9.66 1341.64 C -7.8 1341 -6.25 1341 -3.15 1341 M -3.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-2.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2267">
<path d="M -34.15 1341 L -24.85 1341 C -21.75 1341 -20.2 1341 -18.34 1341.64 C -16.79 1342.28 -15.24 1343.88 -14.62 1345.48 C -14 1347.4 -14 1349 -14 1352.2 L -14 1361.8 C -14 1365 -14 1366.6 -14.62 1368.52 C -15.24 1370.12 -16.79 1371.72 -18.34 1372.36 C -20.2 1373 -21.75 1373 -24.85 1373 L -34.15 1373 C -37.25 1373 -38.8 1373 -40.66 1372.36 C -42.21 1371.72 -43.76 1370.12 -44.38 1368.52 C -45 1366.6 -45 1365 -45 1361.8 L -45 1352.2 C -45 1349 -45 1347.4 -44.38 1345.48 C -43.76 1343.88 -42.21 1342.28 -40.66 1341.64 C -38.8 1341 -37.25 1341 -34.15 1341 M -34.15 1341" fill="#dce7fd"/>
<path d="M -34.15 1341 L -24.85 1341 C -21.75 1341 -20.2 1341 -18.34 1341.64 C -16.79 1342.28 -15.24 1343.88 -14.62 1345.48 C -14 1347.4 -14 1349 -14 1352.2 L -14 1361.8 C -14 1365 -14 1366.6 -14.62 1368.52 C -15.24 1370.12 -16.79 1371.72 -18.34 1372.36 C -20.2 1373 -21.75 1373 -24.85 1373 L -34.15 1373 C -37.25 1373 -38.8 1373 -40.66 1372.36 C -42.21 1371.72 -43.76 1370.12 -44.38 1368.52 C -45 1366.6 -45 1365 -45 1361.8 L -45 1352.2 C -45 1349 -45 1347.4 -44.38 1345.48 C -43.76 1343.88 -42.21 1342.28 -40.66 1341.64 C -38.8 1341 -37.25 1341 -34.15 1341 M -34.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-33.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2266">
<path d="M -65.15 1341 L -55.85 1341 C -52.75 1341 -51.2 1341 -49.34 1341.64 C -47.79 1342.28 -46.24 1343.88 -45.62 1345.48 C -45 1347.4 -45 1349 -45 1352.2 L -45 1361.8 C -45 1365 -45 1366.6 -45.62 1368.52 C -46.24 1370.12 -47.79 1371.72 -49.34 1372.36 C -51.2 1373 -52.75 1373 -55.85 1373 L -65.15 1373 C -68.25 1373 -69.8 1373 -71.66 1372.36 C -73.21 1371.72 -74.76 1370.12 -75.38 1368.52 C -76 1366.6 -76 1365 -76 1361.8 L -76 1352.2 C -76 1349 -76 1347.4 -75.38 1345.48 C -74.76 1343.88 -73.21 1342.28 -71.66 1341.64 C -69.8 1341 -68.25 1341 -65.15 1341 M -65.15 1341" fill="#dce7fd"/>
<path d="M -65.15 1341 L -55.85 1341 C -52.75 1341 -51.2 1341 -49.34 1341.64 C -47.79 1342.28 -46.24 1343.88 -45.62 1345.48 C -45 1347.4 -45 1349 -45 1352.2 L -45 1361.8 C -45 1365 -45 1366.6 -45.62 1368.52 C -46.24 1370.12 -47.79 1371.72 -49.34 1372.36 C -51.2 1373 -52.75 1373 -55.85 1373 L -65.15 1373 C -68.25 1373 -69.8 1373 -71.66 1372.36 C -73.21 1371.72 -74.76 1370.12 -75.38 1368.52 C -76 1366.6 -76 1365 -76 1361.8 L -76 1352.2 C -76 1349 -76 1347.4 -75.38 1345.48 C -74.76 1343.88 -73.21 1342.28 -71.66 1341.64 C -69.8 1341 -68.25 1341 -65.15 1341 M -65.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-64.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2265">
<path d="M -96.15 1341 L -86.85 1341 C -83.75 1341 -82.2 1341 -80.34 1341.64 C -78.79 1342.28 -77.24 1343.88 -76.62 1345.48 C -76 1347.4 -76 1349 -76 1352.2 L -76 1361.8 C -76 1365 -76 1366.6 -76.62 1368.52 C -77.24 1370.12 -78.79 1371.72 -80.34 1372.36 C -82.2 1373 -83.75 1373 -86.85 1373 L -96.15 1373 C -99.25 1373 -100.8 1373 -102.66 1372.36 C -104.21 1371.72 -105.76 1370.12 -106.38 1368.52 C -107 1366.6 -107 1365 -107 1361.8 L -107 1352.2 C -107 1349 -107 1347.4 -106.38 1345.48 C -105.76 1343.88 -104.21 1342.28 -102.66 1341.64 C -100.8 1341 -99.25 1341 -96.15 1341 M -96.15 1341" fill="#dce7fd"/>
<path d="M -96.15 1341 L -86.85 1341 C -83.75 1341 -82.2 1341 -80.34 1341.64 C -78.79 1342.28 -77.24 1343.88 -76.62 1345.48 C -76 1347.4 -76 1349 -76 1352.2 L -76 1361.8 C -76 1365 -76 1366.6 -76.62 1368.52 C -77.24 1370.12 -78.79 1371.72 -80.34 1372.36 C -82.2 1373 -83.75 1373 -86.85 1373 L -96.15 1373 C -99.25 1373 -100.8 1373 -102.66 1372.36 C -104.21 1371.72 -105.76 1370.12 -106.38 1368.52 C -107 1366.6 -107 1365 -107 1361.8 L -107 1352.2 C -107 1349 -107 1347.4 -106.38 1345.48 C -105.76 1343.88 -104.21 1342.28 -102.66 1341.64 C -100.8 1341 -99.25 1341 -96.15 1341 M -96.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-95.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2264">
<path d="M -127.15 1341 L -117.85 1341 C -114.75 1341 -113.2 1341 -111.34 1341.64 C -109.79 1342.28 -108.24 1343.88 -107.62 1345.48 C -107 1347.4 -107 1349 -107 1352.2 L -107 1361.8 C -107 1365 -107 1366.6 -107.62 1368.52 C -108.24 1370.12 -109.79 1371.72 -111.34 1372.36 C -113.2 1373 -114.75 1373 -117.85 1373 L -127.15 1373 C -130.25 1373 -131.8 1373 -133.66 1372.36 C -135.21 1371.72 -136.76 1370.12 -137.38 1368.52 C -138 1366.6 -138 1365 -138 1361.8 L -138 1352.2 C -138 1349 -138 1347.4 -137.38 1345.48 C -136.76 1343.88 -135.21 1342.28 -133.66 1341.64 C -131.8 1341 -130.25 1341 -127.15 1341 M -127.15 1341" fill="#dce7fd"/>
<path d="M -127.15 1341 L -117.85 1341 C -114.75 1341 -113.2 1341 -111.34 1341.64 C -109.79 1342.28 -108.24 1343.88 -107.62 1345.48 C -107 1347.4 -107 1349 -107 1352.2 L -107 1361.8 C -107 1365 -107 1366.6 -107.62 1368.52 C -108.24 1370.12 -109.79 1371.72 -111.34 1372.36 C -113.2 1373 -114.75 1373 -117.85 1373 L -127.15 1373 C -130.25 1373 -131.8 1373 -133.66 1372.36 C -135.21 1371.72 -136.76 1370.12 -137.38 1368.52 C -138 1366.6 -138 1365 -138 1361.8 L -138 1352.2 C -138 1349 -138 1347.4 -137.38 1345.48 C -136.76 1343.88 -135.21 1342.28 -133.66 1341.64 C -131.8 1341 -130.25 1341 -127.15 1341 M -127.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-126.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan>
</text>
</g>
<g id="Graphic_2263">
<path d="M -158.15 1341 L -148.85 1341 C -145.75 1341 -144.2 1341 -142.34 1341.64 C -140.79 1342.28 -139.24 1343.88 -138.62 1345.48 C -138 1347.4 -138 1349 -138 1352.2 L -138 1361.8 C -138 1365 -138 1366.6 -138.62 1368.52 C -139.24 1370.12 -140.79 1371.72 -142.34 1372.36 C -144.2 1373 -145.75 1373 -148.85 1373 L -158.15 1373 C -161.25 1373 -162.8 1373 -164.66 1372.36 C -166.21 1371.72 -167.76 1370.12 -168.38 1368.52 C -169 1366.6 -169 1365 -169 1361.8 L -169 1352.2 C -169 1349 -169 1347.4 -168.38 1345.48 C -167.76 1343.88 -166.21 1342.28 -164.66 1341.64 C -162.8 1341 -161.25 1341 -158.15 1341 M -158.15 1341" fill="#dce7fd"/>
<path d="M -158.15 1341 L -148.85 1341 C -145.75 1341 -144.2 1341 -142.34 1341.64 C -140.79 1342.28 -139.24 1343.88 -138.62 1345.48 C -138 1347.4 -138 1349 -138 1352.2 L -138 1361.8 C -138 1365 -138 1366.6 -138.62 1368.52 C -139.24 1370.12 -140.79 1371.72 -142.34 1372.36 C -144.2 1373 -145.75 1373 -148.85 1373 L -158.15 1373 C -161.25 1373 -162.8 1373 -164.66 1372.36 C -166.21 1371.72 -167.76 1370.12 -168.38 1368.52 C -169 1366.6 -169 1365 -169 1361.8 L -169 1352.2 C -169 1349 -169 1347.4 -168.38 1345.48 C -167.76 1343.88 -166.21 1342.28 -164.66 1341.64 C -162.8 1341 -161.25 1341 -158.15 1341 M -158.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-157.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan>
</text>
</g>
<g id="Graphic_2262">
<path d="M -189.15 1341 L -179.85 1341 C -176.75 1341 -175.2 1341 -173.34 1341.64 C -171.79 1342.28 -170.24 1343.88 -169.62 1345.48 C -169 1347.4 -169 1349 -169 1352.2 L -169 1361.8 C -169 1365 -169 1366.6 -169.62 1368.52 C -170.24 1370.12 -171.79 1371.72 -173.34 1372.36 C -175.2 1373 -176.75 1373 -179.85 1373 L -189.15 1373 C -192.25 1373 -193.8 1373 -195.66 1372.36 C -197.21 1371.72 -198.76 1370.12 -199.38 1368.52 C -200 1366.6 -200 1365 -200 1361.8 L -200 1352.2 C -200 1349 -200 1347.4 -199.38 1345.48 C -198.76 1343.88 -197.21 1342.28 -195.66 1341.64 C -193.8 1341 -192.25 1341 -189.15 1341 M -189.15 1341" fill="#dce7fd"/>
<path d="M -189.15 1341 L -179.85 1341 C -176.75 1341 -175.2 1341 -173.34 1341.64 C -171.79 1342.28 -170.24 1343.88 -169.62 1345.48 C -169 1347.4 -169 1349 -169 1352.2 L -169 1361.8 C -169 1365 -169 1366.6 -169.62 1368.52 C -170.24 1370.12 -171.79 1371.72 -173.34 1372.36 C -175.2 1373 -176.75 1373 -179.85 1373 L -189.15 1373 C -192.25 1373 -193.8 1373 -195.66 1372.36 C -197.21 1371.72 -198.76 1370.12 -199.38 1368.52 C -200 1366.6 -200 1365 -200 1361.8 L -200 1352.2 C -200 1349 -200 1347.4 -199.38 1345.48 C -198.76 1343.88 -197.21 1342.28 -195.66 1341.64 C -193.8 1341 -192.25 1341 -189.15 1341 M -189.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-188.392 1348.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan>
</text>
</g>
<g id="Graphic_2260">
<text transform="translate(-372 1349.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 2</tspan>
</text>
</g>
<g id="Graphic_2293"/>
<g id="Graphic_2292"/>
<g id="Graphic_2291">
<path d="M 182.85 1385 L 192.15 1385 C 195.25 1385 196.8 1385 198.66 1385.64 C 200.21 1386.28 201.76 1387.88 202.38 1389.48 C 203 1391.4 203 1393 203 1396.2 L 203 1405.8 C 203 1409 203 1410.6 202.38 1412.52 C 201.76 1414.12 200.21 1415.72 198.66 1416.36 C 196.8 1417 195.25 1417 192.15 1417 L 182.85 1417 C 179.75 1417 178.2 1417 176.34 1416.36 C 174.79 1415.72 173.24 1414.12 172.62 1412.52 C 172 1410.6 172 1409 172 1405.8 L 172 1396.2 C 172 1393 172 1391.4 172.62 1389.48 C 173.24 1387.88 174.79 1386.28 176.34 1385.64 C 178.2 1385 179.75 1385 182.85 1385 M 182.85 1385" fill="#afb1ff"/>
<path d="M 182.85 1385 L 192.15 1385 C 195.25 1385 196.8 1385 198.66 1385.64 C 200.21 1386.28 201.76 1387.88 202.38 1389.48 C 203 1391.4 203 1393 203 1396.2 L 203 1405.8 C 203 1409 203 1410.6 202.38 1412.52 C 201.76 1414.12 200.21 1415.72 198.66 1416.36 C 196.8 1417 195.25 1417 192.15 1417 L 182.85 1417 C 179.75 1417 178.2 1417 176.34 1416.36 C 174.79 1415.72 173.24 1414.12 172.62 1412.52 C 172 1410.6 172 1409 172 1405.8 L 172 1396.2 C 172 1393 172 1391.4 172.62 1389.48 C 173.24 1387.88 174.79 1386.28 176.34 1385.64 C 178.2 1385 179.75 1385 182.85 1385 M 182.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(179.716 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan>
</text>
</g>
<g id="Graphic_2290">
<path d="M 151.85 1385 L 161.15 1385 C 164.25 1385 165.8 1385 167.66 1385.64 C 169.21 1386.28 170.76 1387.88 171.38 1389.48 C 172 1391.4 172 1393 172 1396.2 L 172 1405.8 C 172 1409 172 1410.6 171.38 1412.52 C 170.76 1414.12 169.21 1415.72 167.66 1416.36 C 165.8 1417 164.25 1417 161.15 1417 L 151.85 1417 C 148.75 1417 147.2 1417 145.34 1416.36 C 143.79 1415.72 142.24 1414.12 141.62 1412.52 C 141 1410.6 141 1409 141 1405.8 L 141 1396.2 C 141 1393 141 1391.4 141.62 1389.48 C 142.24 1387.88 143.79 1386.28 145.34 1385.64 C 147.2 1385 148.75 1385 151.85 1385 M 151.85 1385" fill="#afb1ff"/>
<path d="M 151.85 1385 L 161.15 1385 C 164.25 1385 165.8 1385 167.66 1385.64 C 169.21 1386.28 170.76 1387.88 171.38 1389.48 C 172 1391.4 172 1393 172 1396.2 L 172 1405.8 C 172 1409 172 1410.6 171.38 1412.52 C 170.76 1414.12 169.21 1415.72 167.66 1416.36 C 165.8 1417 164.25 1417 161.15 1417 L 151.85 1417 C 148.75 1417 147.2 1417 145.34 1416.36 C 143.79 1415.72 142.24 1414.12 141.62 1412.52 C 141 1410.6 141 1409 141 1405.8 L 141 1396.2 C 141 1393 141 1391.4 141.62 1389.48 C 142.24 1387.88 143.79 1386.28 145.34 1385.64 C 147.2 1385 148.75 1385 151.85 1385 M 151.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(148.716 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan>
</text>
</g>
<g id="Graphic_2289">
<path d="M 120.85 1385 L 130.15 1385 C 133.25 1385 134.8 1385 136.66 1385.64 C 138.21 1386.28 139.76 1387.88 140.38 1389.48 C 141 1391.4 141 1393 141 1396.2 L 141 1405.8 C 141 1409 141 1410.6 140.38 1412.52 C 139.76 1414.12 138.21 1415.72 136.66 1416.36 C 134.8 1417 133.25 1417 130.15 1417 L 120.85 1417 C 117.75 1417 116.2 1417 114.34 1416.36 C 112.79 1415.72 111.24 1414.12 110.62 1412.52 C 110 1410.6 110 1409 110 1405.8 L 110 1396.2 C 110 1393 110 1391.4 110.62 1389.48 C 111.24 1387.88 112.79 1386.28 114.34 1385.64 C 116.2 1385 117.75 1385 120.85 1385 M 120.85 1385" fill="#afb1ff"/>
<path d="M 120.85 1385 L 130.15 1385 C 133.25 1385 134.8 1385 136.66 1385.64 C 138.21 1386.28 139.76 1387.88 140.38 1389.48 C 141 1391.4 141 1393 141 1396.2 L 141 1405.8 C 141 1409 141 1410.6 140.38 1412.52 C 139.76 1414.12 138.21 1415.72 136.66 1416.36 C 134.8 1417 133.25 1417 130.15 1417 L 120.85 1417 C 117.75 1417 116.2 1417 114.34 1416.36 C 112.79 1415.72 111.24 1414.12 110.62 1412.52 C 110 1410.6 110 1409 110 1405.8 L 110 1396.2 C 110 1393 110 1391.4 110.62 1389.48 C 111.24 1387.88 112.79 1386.28 114.34 1385.64 C 116.2 1385 117.75 1385 120.85 1385 M 120.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(117.716 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2288"/>
<g id="Graphic_2287"/>
<g id="Graphic_2286">
<path d="M 27.85 1385 L 37.15 1385 C 40.25 1385 41.8 1385 43.66 1385.64 C 45.21 1386.28 46.76 1387.88 47.38 1389.48 C 48 1391.4 48 1393 48 1396.2 L 48 1405.8 C 48 1409 48 1410.6 47.38 1412.52 C 46.76 1414.12 45.21 1415.72 43.66 1416.36 C 41.8 1417 40.25 1417 37.15 1417 L 27.85 1417 C 24.75 1417 23.2 1417 21.34 1416.36 C 19.79 1415.72 18.24 1414.12 17.62 1412.52 C 17 1410.6 17 1409 17 1405.8 L 17 1396.2 C 17 1393 17 1391.4 17.62 1389.48 C 18.24 1387.88 19.79 1386.28 21.34 1385.64 C 23.2 1385 24.75 1385 27.85 1385 M 27.85 1385" fill="#dce7fd"/>
<path d="M 27.85 1385 L 37.15 1385 C 40.25 1385 41.8 1385 43.66 1385.64 C 45.21 1386.28 46.76 1387.88 47.38 1389.48 C 48 1391.4 48 1393 48 1396.2 L 48 1405.8 C 48 1409 48 1410.6 47.38 1412.52 C 46.76 1414.12 45.21 1415.72 43.66 1416.36 C 41.8 1417 40.25 1417 37.15 1417 L 27.85 1417 C 24.75 1417 23.2 1417 21.34 1416.36 C 19.79 1415.72 18.24 1414.12 17.62 1412.52 C 17 1410.6 17 1409 17 1405.8 L 17 1396.2 C 17 1393 17 1391.4 17.62 1389.48 C 18.24 1387.88 19.79 1386.28 21.34 1385.64 C 23.2 1385 24.75 1385 27.85 1385 M 27.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(24.716 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2285">
<path d="M -3.15 1385 L 6.15 1385 C 9.25 1385 10.8 1385 12.66 1385.64 C 14.21 1386.28 15.76 1387.88 16.38 1389.48 C 17 1391.4 17 1393 17 1396.2 L 17 1405.8 C 17 1409 17 1410.6 16.38 1412.52 C 15.76 1414.12 14.21 1415.72 12.66 1416.36 C 10.8 1417 9.25 1417 6.15 1417 L -3.15 1417 C -6.25 1417 -7.8 1417 -9.66 1416.36 C -11.21 1415.72 -12.76 1414.12 -13.38 1412.52 C -14 1410.6 -14 1409 -14 1405.8 L -14 1396.2 C -14 1393 -14 1391.4 -13.38 1389.48 C -12.76 1387.88 -11.21 1386.28 -9.66 1385.64 C -7.8 1385 -6.25 1385 -3.15 1385 M -3.15 1385" fill="#dce7fd"/>
<path d="M -3.15 1385 L 6.15 1385 C 9.25 1385 10.8 1385 12.66 1385.64 C 14.21 1386.28 15.76 1387.88 16.38 1389.48 C 17 1391.4 17 1393 17 1396.2 L 17 1405.8 C 17 1409 17 1410.6 16.38 1412.52 C 15.76 1414.12 14.21 1415.72 12.66 1416.36 C 10.8 1417 9.25 1417 6.15 1417 L -3.15 1417 C -6.25 1417 -7.8 1417 -9.66 1416.36 C -11.21 1415.72 -12.76 1414.12 -13.38 1412.52 C -14 1410.6 -14 1409 -14 1405.8 L -14 1396.2 C -14 1393 -14 1391.4 -13.38 1389.48 C -12.76 1387.88 -11.21 1386.28 -9.66 1385.64 C -7.8 1385 -6.25 1385 -3.15 1385 M -3.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-2.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2284">
<path d="M -34.15 1385 L -24.85 1385 C -21.75 1385 -20.2 1385 -18.34 1385.64 C -16.79 1386.28 -15.24 1387.88 -14.62 1389.48 C -14 1391.4 -14 1393 -14 1396.2 L -14 1405.8 C -14 1409 -14 1410.6 -14.62 1412.52 C -15.24 1414.12 -16.79 1415.72 -18.34 1416.36 C -20.2 1417 -21.75 1417 -24.85 1417 L -34.15 1417 C -37.25 1417 -38.8 1417 -40.66 1416.36 C -42.21 1415.72 -43.76 1414.12 -44.38 1412.52 C -45 1410.6 -45 1409 -45 1405.8 L -45 1396.2 C -45 1393 -45 1391.4 -44.38 1389.48 C -43.76 1387.88 -42.21 1386.28 -40.66 1385.64 C -38.8 1385 -37.25 1385 -34.15 1385 M -34.15 1385" fill="#dce7fd"/>
<path d="M -34.15 1385 L -24.85 1385 C -21.75 1385 -20.2 1385 -18.34 1385.64 C -16.79 1386.28 -15.24 1387.88 -14.62 1389.48 C -14 1391.4 -14 1393 -14 1396.2 L -14 1405.8 C -14 1409 -14 1410.6 -14.62 1412.52 C -15.24 1414.12 -16.79 1415.72 -18.34 1416.36 C -20.2 1417 -21.75 1417 -24.85 1417 L -34.15 1417 C -37.25 1417 -38.8 1417 -40.66 1416.36 C -42.21 1415.72 -43.76 1414.12 -44.38 1412.52 C -45 1410.6 -45 1409 -45 1405.8 L -45 1396.2 C -45 1393 -45 1391.4 -44.38 1389.48 C -43.76 1387.88 -42.21 1386.28 -40.66 1385.64 C -38.8 1385 -37.25 1385 -34.15 1385 M -34.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-33.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2283">
<path d="M -65.15 1385 L -55.85 1385 C -52.75 1385 -51.2 1385 -49.34 1385.64 C -47.79 1386.28 -46.24 1387.88 -45.62 1389.48 C -45 1391.4 -45 1393 -45 1396.2 L -45 1405.8 C -45 1409 -45 1410.6 -45.62 1412.52 C -46.24 1414.12 -47.79 1415.72 -49.34 1416.36 C -51.2 1417 -52.75 1417 -55.85 1417 L -65.15 1417 C -68.25 1417 -69.8 1417 -71.66 1416.36 C -73.21 1415.72 -74.76 1414.12 -75.38 1412.52 C -76 1410.6 -76 1409 -76 1405.8 L -76 1396.2 C -76 1393 -76 1391.4 -75.38 1389.48 C -74.76 1387.88 -73.21 1386.28 -71.66 1385.64 C -69.8 1385 -68.25 1385 -65.15 1385 M -65.15 1385" fill="#dce7fd"/>
<path d="M -65.15 1385 L -55.85 1385 C -52.75 1385 -51.2 1385 -49.34 1385.64 C -47.79 1386.28 -46.24 1387.88 -45.62 1389.48 C -45 1391.4 -45 1393 -45 1396.2 L -45 1405.8 C -45 1409 -45 1410.6 -45.62 1412.52 C -46.24 1414.12 -47.79 1415.72 -49.34 1416.36 C -51.2 1417 -52.75 1417 -55.85 1417 L -65.15 1417 C -68.25 1417 -69.8 1417 -71.66 1416.36 C -73.21 1415.72 -74.76 1414.12 -75.38 1412.52 C -76 1410.6 -76 1409 -76 1405.8 L -76 1396.2 C -76 1393 -76 1391.4 -75.38 1389.48 C -74.76 1387.88 -73.21 1386.28 -71.66 1385.64 C -69.8 1385 -68.25 1385 -65.15 1385 M -65.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-64.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2282">
<path d="M -96.15 1385 L -86.85 1385 C -83.75 1385 -82.2 1385 -80.34 1385.64 C -78.79 1386.28 -77.24 1387.88 -76.62 1389.48 C -76 1391.4 -76 1393 -76 1396.2 L -76 1405.8 C -76 1409 -76 1410.6 -76.62 1412.52 C -77.24 1414.12 -78.79 1415.72 -80.34 1416.36 C -82.2 1417 -83.75 1417 -86.85 1417 L -96.15 1417 C -99.25 1417 -100.8 1417 -102.66 1416.36 C -104.21 1415.72 -105.76 1414.12 -106.38 1412.52 C -107 1410.6 -107 1409 -107 1405.8 L -107 1396.2 C -107 1393 -107 1391.4 -106.38 1389.48 C -105.76 1387.88 -104.21 1386.28 -102.66 1385.64 C -100.8 1385 -99.25 1385 -96.15 1385 M -96.15 1385" fill="#dce7fd"/>
<path d="M -96.15 1385 L -86.85 1385 C -83.75 1385 -82.2 1385 -80.34 1385.64 C -78.79 1386.28 -77.24 1387.88 -76.62 1389.48 C -76 1391.4 -76 1393 -76 1396.2 L -76 1405.8 C -76 1409 -76 1410.6 -76.62 1412.52 C -77.24 1414.12 -78.79 1415.72 -80.34 1416.36 C -82.2 1417 -83.75 1417 -86.85 1417 L -96.15 1417 C -99.25 1417 -100.8 1417 -102.66 1416.36 C -104.21 1415.72 -105.76 1414.12 -106.38 1412.52 C -107 1410.6 -107 1409 -107 1405.8 L -107 1396.2 C -107 1393 -107 1391.4 -106.38 1389.48 C -105.76 1387.88 -104.21 1386.28 -102.66 1385.64 C -100.8 1385 -99.25 1385 -96.15 1385 M -96.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-95.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2281">
<path d="M -127.15 1385 L -117.85 1385 C -114.75 1385 -113.2 1385 -111.34 1385.64 C -109.79 1386.28 -108.24 1387.88 -107.62 1389.48 C -107 1391.4 -107 1393 -107 1396.2 L -107 1405.8 C -107 1409 -107 1410.6 -107.62 1412.52 C -108.24 1414.12 -109.79 1415.72 -111.34 1416.36 C -113.2 1417 -114.75 1417 -117.85 1417 L -127.15 1417 C -130.25 1417 -131.8 1417 -133.66 1416.36 C -135.21 1415.72 -136.76 1414.12 -137.38 1412.52 C -138 1410.6 -138 1409 -138 1405.8 L -138 1396.2 C -138 1393 -138 1391.4 -137.38 1389.48 C -136.76 1387.88 -135.21 1386.28 -133.66 1385.64 C -131.8 1385 -130.25 1385 -127.15 1385 M -127.15 1385" fill="#dce7fd"/>
<path d="M -127.15 1385 L -117.85 1385 C -114.75 1385 -113.2 1385 -111.34 1385.64 C -109.79 1386.28 -108.24 1387.88 -107.62 1389.48 C -107 1391.4 -107 1393 -107 1396.2 L -107 1405.8 C -107 1409 -107 1410.6 -107.62 1412.52 C -108.24 1414.12 -109.79 1415.72 -111.34 1416.36 C -113.2 1417 -114.75 1417 -117.85 1417 L -127.15 1417 C -130.25 1417 -131.8 1417 -133.66 1416.36 C -135.21 1415.72 -136.76 1414.12 -137.38 1412.52 C -138 1410.6 -138 1409 -138 1405.8 L -138 1396.2 C -138 1393 -138 1391.4 -137.38 1389.48 C -136.76 1387.88 -135.21 1386.28 -133.66 1385.64 C -131.8 1385 -130.25 1385 -127.15 1385 M -127.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-126.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2280">
<path d="M -158.15 1385 L -148.85 1385 C -145.75 1385 -144.2 1385 -142.34 1385.64 C -140.79 1386.28 -139.24 1387.88 -138.62 1389.48 C -138 1391.4 -138 1393 -138 1396.2 L -138 1405.8 C -138 1409 -138 1410.6 -138.62 1412.52 C -139.24 1414.12 -140.79 1415.72 -142.34 1416.36 C -144.2 1417 -145.75 1417 -148.85 1417 L -158.15 1417 C -161.25 1417 -162.8 1417 -164.66 1416.36 C -166.21 1415.72 -167.76 1414.12 -168.38 1412.52 C -169 1410.6 -169 1409 -169 1405.8 L -169 1396.2 C -169 1393 -169 1391.4 -168.38 1389.48 C -167.76 1387.88 -166.21 1386.28 -164.66 1385.64 C -162.8 1385 -161.25 1385 -158.15 1385 M -158.15 1385" fill="#dce7fd"/>
<path d="M -158.15 1385 L -148.85 1385 C -145.75 1385 -144.2 1385 -142.34 1385.64 C -140.79 1386.28 -139.24 1387.88 -138.62 1389.48 C -138 1391.4 -138 1393 -138 1396.2 L -138 1405.8 C -138 1409 -138 1410.6 -138.62 1412.52 C -139.24 1414.12 -140.79 1415.72 -142.34 1416.36 C -144.2 1417 -145.75 1417 -148.85 1417 L -158.15 1417 C -161.25 1417 -162.8 1417 -164.66 1416.36 C -166.21 1415.72 -167.76 1414.12 -168.38 1412.52 C -169 1410.6 -169 1409 -169 1405.8 L -169 1396.2 C -169 1393 -169 1391.4 -168.38 1389.48 C -167.76 1387.88 -166.21 1386.28 -164.66 1385.64 C -162.8 1385 -161.25 1385 -158.15 1385 M -158.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-157.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan>
</text>
</g>
<g id="Graphic_2279">
<path d="M -189.15 1385 L -179.85 1385 C -176.75 1385 -175.2 1385 -173.34 1385.64 C -171.79 1386.28 -170.24 1387.88 -169.62 1389.48 C -169 1391.4 -169 1393 -169 1396.2 L -169 1405.8 C -169 1409 -169 1410.6 -169.62 1412.52 C -170.24 1414.12 -171.79 1415.72 -173.34 1416.36 C -175.2 1417 -176.75 1417 -179.85 1417 L -189.15 1417 C -192.25 1417 -193.8 1417 -195.66 1416.36 C -197.21 1415.72 -198.76 1414.12 -199.38 1412.52 C -200 1410.6 -200 1409 -200 1405.8 L -200 1396.2 C -200 1393 -200 1391.4 -199.38 1389.48 C -198.76 1387.88 -197.21 1386.28 -195.66 1385.64 C -193.8 1385 -192.25 1385 -189.15 1385 M -189.15 1385" fill="#dce7fd"/>
<path d="M -189.15 1385 L -179.85 1385 C -176.75 1385 -175.2 1385 -173.34 1385.64 C -171.79 1386.28 -170.24 1387.88 -169.62 1389.48 C -169 1391.4 -169 1393 -169 1396.2 L -169 1405.8 C -169 1409 -169 1410.6 -169.62 1412.52 C -170.24 1414.12 -171.79 1415.72 -173.34 1416.36 C -175.2 1417 -176.75 1417 -179.85 1417 L -189.15 1417 C -192.25 1417 -193.8 1417 -195.66 1416.36 C -197.21 1415.72 -198.76 1414.12 -199.38 1412.52 C -200 1410.6 -200 1409 -200 1405.8 L -200 1396.2 C -200 1393 -200 1391.4 -199.38 1389.48 C -198.76 1387.88 -197.21 1386.28 -195.66 1385.64 C -193.8 1385 -192.25 1385 -189.15 1385 M -189.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-188.392 1392.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan>
</text>
</g>
<g id="Graphic_2277">
<text transform="translate(-372 1393.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 3</tspan>
</text>
</g>
<g id="Graphic_2310"/>
<g id="Graphic_2309"/>
<g id="Graphic_2308">
<path d="M 182.85 1429 L 192.15 1429 C 195.25 1429 196.8 1429 198.66 1429.64 C 200.21 1430.28 201.76 1431.88 202.38 1433.48 C 203 1435.4 203 1437 203 1440.2 L 203 1449.8 C 203 1453 203 1454.6 202.38 1456.52 C 201.76 1458.12 200.21 1459.72 198.66 1460.36 C 196.8 1461 195.25 1461 192.15 1461 L 182.85 1461 C 179.75 1461 178.2 1461 176.34 1460.36 C 174.79 1459.72 173.24 1458.12 172.62 1456.52 C 172 1454.6 172 1453 172 1449.8 L 172 1440.2 C 172 1437 172 1435.4 172.62 1433.48 C 173.24 1431.88 174.79 1430.28 176.34 1429.64 C 178.2 1429 179.75 1429 182.85 1429 M 182.85 1429" fill="#afb1ff"/>
<path d="M 182.85 1429 L 192.15 1429 C 195.25 1429 196.8 1429 198.66 1429.64 C 200.21 1430.28 201.76 1431.88 202.38 1433.48 C 203 1435.4 203 1437 203 1440.2 L 203 1449.8 C 203 1453 203 1454.6 202.38 1456.52 C 201.76 1458.12 200.21 1459.72 198.66 1460.36 C 196.8 1461 195.25 1461 192.15 1461 L 182.85 1461 C 179.75 1461 178.2 1461 176.34 1460.36 C 174.79 1459.72 173.24 1458.12 172.62 1456.52 C 172 1454.6 172 1453 172 1449.8 L 172 1440.2 C 172 1437 172 1435.4 172.62 1433.48 C 173.24 1431.88 174.79 1430.28 176.34 1429.64 C 178.2 1429 179.75 1429 182.85 1429 M 182.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(179.716 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan>
</text>
</g>
<g id="Graphic_2307">
<path d="M 151.85 1429 L 161.15 1429 C 164.25 1429 165.8 1429 167.66 1429.64 C 169.21 1430.28 170.76 1431.88 171.38 1433.48 C 172 1435.4 172 1437 172 1440.2 L 172 1449.8 C 172 1453 172 1454.6 171.38 1456.52 C 170.76 1458.12 169.21 1459.72 167.66 1460.36 C 165.8 1461 164.25 1461 161.15 1461 L 151.85 1461 C 148.75 1461 147.2 1461 145.34 1460.36 C 143.79 1459.72 142.24 1458.12 141.62 1456.52 C 141 1454.6 141 1453 141 1449.8 L 141 1440.2 C 141 1437 141 1435.4 141.62 1433.48 C 142.24 1431.88 143.79 1430.28 145.34 1429.64 C 147.2 1429 148.75 1429 151.85 1429 M 151.85 1429" fill="#afb1ff"/>
<path d="M 151.85 1429 L 161.15 1429 C 164.25 1429 165.8 1429 167.66 1429.64 C 169.21 1430.28 170.76 1431.88 171.38 1433.48 C 172 1435.4 172 1437 172 1440.2 L 172 1449.8 C 172 1453 172 1454.6 171.38 1456.52 C 170.76 1458.12 169.21 1459.72 167.66 1460.36 C 165.8 1461 164.25 1461 161.15 1461 L 151.85 1461 C 148.75 1461 147.2 1461 145.34 1460.36 C 143.79 1459.72 142.24 1458.12 141.62 1456.52 C 141 1454.6 141 1453 141 1449.8 L 141 1440.2 C 141 1437 141 1435.4 141.62 1433.48 C 142.24 1431.88 143.79 1430.28 145.34 1429.64 C 147.2 1429 148.75 1429 151.85 1429 M 151.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(148.716 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan>
</text>
</g>
<g id="Graphic_2306">
<path d="M 120.85 1429 L 130.15 1429 C 133.25 1429 134.8 1429 136.66 1429.64 C 138.21 1430.28 139.76 1431.88 140.38 1433.48 C 141 1435.4 141 1437 141 1440.2 L 141 1449.8 C 141 1453 141 1454.6 140.38 1456.52 C 139.76 1458.12 138.21 1459.72 136.66 1460.36 C 134.8 1461 133.25 1461 130.15 1461 L 120.85 1461 C 117.75 1461 116.2 1461 114.34 1460.36 C 112.79 1459.72 111.24 1458.12 110.62 1456.52 C 110 1454.6 110 1453 110 1449.8 L 110 1440.2 C 110 1437 110 1435.4 110.62 1433.48 C 111.24 1431.88 112.79 1430.28 114.34 1429.64 C 116.2 1429 117.75 1429 120.85 1429 M 120.85 1429" fill="#afb1ff"/>
<path d="M 120.85 1429 L 130.15 1429 C 133.25 1429 134.8 1429 136.66 1429.64 C 138.21 1430.28 139.76 1431.88 140.38 1433.48 C 141 1435.4 141 1437 141 1440.2 L 141 1449.8 C 141 1453 141 1454.6 140.38 1456.52 C 139.76 1458.12 138.21 1459.72 136.66 1460.36 C 134.8 1461 133.25 1461 130.15 1461 L 120.85 1461 C 117.75 1461 116.2 1461 114.34 1460.36 C 112.79 1459.72 111.24 1458.12 110.62 1456.52 C 110 1454.6 110 1453 110 1449.8 L 110 1440.2 C 110 1437 110 1435.4 110.62 1433.48 C 111.24 1431.88 112.79 1430.28 114.34 1429.64 C 116.2 1429 117.75 1429 120.85 1429 M 120.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(117.716 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan>
</text>
</g>
<g id="Graphic_2305"/>
<g id="Graphic_2304"/>
<g id="Graphic_2303">
<path d="M 27.85 1429 L 37.15 1429 C 40.25 1429 41.8 1429 43.66 1429.64 C 45.21 1430.28 46.76 1431.88 47.38 1433.48 C 48 1435.4 48 1437 48 1440.2 L 48 1449.8 C 48 1453 48 1454.6 47.38 1456.52 C 46.76 1458.12 45.21 1459.72 43.66 1460.36 C 41.8 1461 40.25 1461 37.15 1461 L 27.85 1461 C 24.75 1461 23.2 1461 21.34 1460.36 C 19.79 1459.72 18.24 1458.12 17.62 1456.52 C 17 1454.6 17 1453 17 1449.8 L 17 1440.2 C 17 1437 17 1435.4 17.62 1433.48 C 18.24 1431.88 19.79 1430.28 21.34 1429.64 C 23.2 1429 24.75 1429 27.85 1429 M 27.85 1429" fill="#dce7fd"/>
<path d="M 27.85 1429 L 37.15 1429 C 40.25 1429 41.8 1429 43.66 1429.64 C 45.21 1430.28 46.76 1431.88 47.38 1433.48 C 48 1435.4 48 1437 48 1440.2 L 48 1449.8 C 48 1453 48 1454.6 47.38 1456.52 C 46.76 1458.12 45.21 1459.72 43.66 1460.36 C 41.8 1461 40.25 1461 37.15 1461 L 27.85 1461 C 24.75 1461 23.2 1461 21.34 1460.36 C 19.79 1459.72 18.24 1458.12 17.62 1456.52 C 17 1454.6 17 1453 17 1449.8 L 17 1440.2 C 17 1437 17 1435.4 17.62 1433.48 C 18.24 1431.88 19.79 1430.28 21.34 1429.64 C 23.2 1429 24.75 1429 27.85 1429 M 27.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(24.716 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2302">
<path d="M -3.15 1429 L 6.15 1429 C 9.25 1429 10.8 1429 12.66 1429.64 C 14.21 1430.28 15.76 1431.88 16.38 1433.48 C 17 1435.4 17 1437 17 1440.2 L 17 1449.8 C 17 1453 17 1454.6 16.38 1456.52 C 15.76 1458.12 14.21 1459.72 12.66 1460.36 C 10.8 1461 9.25 1461 6.15 1461 L -3.15 1461 C -6.25 1461 -7.8 1461 -9.66 1460.36 C -11.21 1459.72 -12.76 1458.12 -13.38 1456.52 C -14 1454.6 -14 1453 -14 1449.8 L -14 1440.2 C -14 1437 -14 1435.4 -13.38 1433.48 C -12.76 1431.88 -11.21 1430.28 -9.66 1429.64 C -7.8 1429 -6.25 1429 -3.15 1429 M -3.15 1429" fill="#dce7fd"/>
<path d="M -3.15 1429 L 6.15 1429 C 9.25 1429 10.8 1429 12.66 1429.64 C 14.21 1430.28 15.76 1431.88 16.38 1433.48 C 17 1435.4 17 1437 17 1440.2 L 17 1449.8 C 17 1453 17 1454.6 16.38 1456.52 C 15.76 1458.12 14.21 1459.72 12.66 1460.36 C 10.8 1461 9.25 1461 6.15 1461 L -3.15 1461 C -6.25 1461 -7.8 1461 -9.66 1460.36 C -11.21 1459.72 -12.76 1458.12 -13.38 1456.52 C -14 1454.6 -14 1453 -14 1449.8 L -14 1440.2 C -14 1437 -14 1435.4 -13.38 1433.48 C -12.76 1431.88 -11.21 1430.28 -9.66 1429.64 C -7.8 1429 -6.25 1429 -3.15 1429 M -3.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-6.284 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2301">
<path d="M -34.15 1429 L -24.85 1429 C -21.75 1429 -20.2 1429 -18.34 1429.64 C -16.79 1430.28 -15.24 1431.88 -14.62 1433.48 C -14 1435.4 -14 1437 -14 1440.2 L -14 1449.8 C -14 1453 -14 1454.6 -14.62 1456.52 C -15.24 1458.12 -16.79 1459.72 -18.34 1460.36 C -20.2 1461 -21.75 1461 -24.85 1461 L -34.15 1461 C -37.25 1461 -38.8 1461 -40.66 1460.36 C -42.21 1459.72 -43.76 1458.12 -44.38 1456.52 C -45 1454.6 -45 1453 -45 1449.8 L -45 1440.2 C -45 1437 -45 1435.4 -44.38 1433.48 C -43.76 1431.88 -42.21 1430.28 -40.66 1429.64 C -38.8 1429 -37.25 1429 -34.15 1429 M -34.15 1429" fill="#dce7fd"/>
<path d="M -34.15 1429 L -24.85 1429 C -21.75 1429 -20.2 1429 -18.34 1429.64 C -16.79 1430.28 -15.24 1431.88 -14.62 1433.48 C -14 1435.4 -14 1437 -14 1440.2 L -14 1449.8 C -14 1453 -14 1454.6 -14.62 1456.52 C -15.24 1458.12 -16.79 1459.72 -18.34 1460.36 C -20.2 1461 -21.75 1461 -24.85 1461 L -34.15 1461 C -37.25 1461 -38.8 1461 -40.66 1460.36 C -42.21 1459.72 -43.76 1458.12 -44.38 1456.52 C -45 1454.6 -45 1453 -45 1449.8 L -45 1440.2 C -45 1437 -45 1435.4 -44.38 1433.48 C -43.76 1431.88 -42.21 1430.28 -40.66 1429.64 C -38.8 1429 -37.25 1429 -34.15 1429 M -34.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-33.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2300">
<path d="M -65.15 1429 L -55.85 1429 C -52.75 1429 -51.2 1429 -49.34 1429.64 C -47.79 1430.28 -46.24 1431.88 -45.62 1433.48 C -45 1435.4 -45 1437 -45 1440.2 L -45 1449.8 C -45 1453 -45 1454.6 -45.62 1456.52 C -46.24 1458.12 -47.79 1459.72 -49.34 1460.36 C -51.2 1461 -52.75 1461 -55.85 1461 L -65.15 1461 C -68.25 1461 -69.8 1461 -71.66 1460.36 C -73.21 1459.72 -74.76 1458.12 -75.38 1456.52 C -76 1454.6 -76 1453 -76 1449.8 L -76 1440.2 C -76 1437 -76 1435.4 -75.38 1433.48 C -74.76 1431.88 -73.21 1430.28 -71.66 1429.64 C -69.8 1429 -68.25 1429 -65.15 1429 M -65.15 1429" fill="#dce7fd"/>
<path d="M -65.15 1429 L -55.85 1429 C -52.75 1429 -51.2 1429 -49.34 1429.64 C -47.79 1430.28 -46.24 1431.88 -45.62 1433.48 C -45 1435.4 -45 1437 -45 1440.2 L -45 1449.8 C -45 1453 -45 1454.6 -45.62 1456.52 C -46.24 1458.12 -47.79 1459.72 -49.34 1460.36 C -51.2 1461 -52.75 1461 -55.85 1461 L -65.15 1461 C -68.25 1461 -69.8 1461 -71.66 1460.36 C -73.21 1459.72 -74.76 1458.12 -75.38 1456.52 C -76 1454.6 -76 1453 -76 1449.8 L -76 1440.2 C -76 1437 -76 1435.4 -75.38 1433.48 C -74.76 1431.88 -73.21 1430.28 -71.66 1429.64 C -69.8 1429 -68.25 1429 -65.15 1429 M -65.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-64.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2299">
<path d="M -96.15 1429 L -86.85 1429 C -83.75 1429 -82.2 1429 -80.34 1429.64 C -78.79 1430.28 -77.24 1431.88 -76.62 1433.48 C -76 1435.4 -76 1437 -76 1440.2 L -76 1449.8 C -76 1453 -76 1454.6 -76.62 1456.52 C -77.24 1458.12 -78.79 1459.72 -80.34 1460.36 C -82.2 1461 -83.75 1461 -86.85 1461 L -96.15 1461 C -99.25 1461 -100.8 1461 -102.66 1460.36 C -104.21 1459.72 -105.76 1458.12 -106.38 1456.52 C -107 1454.6 -107 1453 -107 1449.8 L -107 1440.2 C -107 1437 -107 1435.4 -106.38 1433.48 C -105.76 1431.88 -104.21 1430.28 -102.66 1429.64 C -100.8 1429 -99.25 1429 -96.15 1429 M -96.15 1429" fill="#dce7fd"/>
<path d="M -96.15 1429 L -86.85 1429 C -83.75 1429 -82.2 1429 -80.34 1429.64 C -78.79 1430.28 -77.24 1431.88 -76.62 1433.48 C -76 1435.4 -76 1437 -76 1440.2 L -76 1449.8 C -76 1453 -76 1454.6 -76.62 1456.52 C -77.24 1458.12 -78.79 1459.72 -80.34 1460.36 C -82.2 1461 -83.75 1461 -86.85 1461 L -96.15 1461 C -99.25 1461 -100.8 1461 -102.66 1460.36 C -104.21 1459.72 -105.76 1458.12 -106.38 1456.52 C -107 1454.6 -107 1453 -107 1449.8 L -107 1440.2 C -107 1437 -107 1435.4 -106.38 1433.48 C -105.76 1431.88 -104.21 1430.28 -102.66 1429.64 C -100.8 1429 -99.25 1429 -96.15 1429 M -96.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-95.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2298">
<path d="M -127.15 1429 L -117.85 1429 C -114.75 1429 -113.2 1429 -111.34 1429.64 C -109.79 1430.28 -108.24 1431.88 -107.62 1433.48 C -107 1435.4 -107 1437 -107 1440.2 L -107 1449.8 C -107 1453 -107 1454.6 -107.62 1456.52 C -108.24 1458.12 -109.79 1459.72 -111.34 1460.36 C -113.2 1461 -114.75 1461 -117.85 1461 L -127.15 1461 C -130.25 1461 -131.8 1461 -133.66 1460.36 C -135.21 1459.72 -136.76 1458.12 -137.38 1456.52 C -138 1454.6 -138 1453 -138 1449.8 L -138 1440.2 C -138 1437 -138 1435.4 -137.38 1433.48 C -136.76 1431.88 -135.21 1430.28 -133.66 1429.64 C -131.8 1429 -130.25 1429 -127.15 1429 M -127.15 1429" fill="#dce7fd"/>
<path d="M -127.15 1429 L -117.85 1429 C -114.75 1429 -113.2 1429 -111.34 1429.64 C -109.79 1430.28 -108.24 1431.88 -107.62 1433.48 C -107 1435.4 -107 1437 -107 1440.2 L -107 1449.8 C -107 1453 -107 1454.6 -107.62 1456.52 C -108.24 1458.12 -109.79 1459.72 -111.34 1460.36 C -113.2 1461 -114.75 1461 -117.85 1461 L -127.15 1461 C -130.25 1461 -131.8 1461 -133.66 1460.36 C -135.21 1459.72 -136.76 1458.12 -137.38 1456.52 C -138 1454.6 -138 1453 -138 1449.8 L -138 1440.2 C -138 1437 -138 1435.4 -137.38 1433.48 C -136.76 1431.88 -135.21 1430.28 -133.66 1429.64 C -131.8 1429 -130.25 1429 -127.15 1429 M -127.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-126.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2297">
<path d="M -158.15 1429 L -148.85 1429 C -145.75 1429 -144.2 1429 -142.34 1429.64 C -140.79 1430.28 -139.24 1431.88 -138.62 1433.48 C -138 1435.4 -138 1437 -138 1440.2 L -138 1449.8 C -138 1453 -138 1454.6 -138.62 1456.52 C -139.24 1458.12 -140.79 1459.72 -142.34 1460.36 C -144.2 1461 -145.75 1461 -148.85 1461 L -158.15 1461 C -161.25 1461 -162.8 1461 -164.66 1460.36 C -166.21 1459.72 -167.76 1458.12 -168.38 1456.52 C -169 1454.6 -169 1453 -169 1449.8 L -169 1440.2 C -169 1437 -169 1435.4 -168.38 1433.48 C -167.76 1431.88 -166.21 1430.28 -164.66 1429.64 C -162.8 1429 -161.25 1429 -158.15 1429 M -158.15 1429" fill="#dce7fd"/>
<path d="M -158.15 1429 L -148.85 1429 C -145.75 1429 -144.2 1429 -142.34 1429.64 C -140.79 1430.28 -139.24 1431.88 -138.62 1433.48 C -138 1435.4 -138 1437 -138 1440.2 L -138 1449.8 C -138 1453 -138 1454.6 -138.62 1456.52 C -139.24 1458.12 -140.79 1459.72 -142.34 1460.36 C -144.2 1461 -145.75 1461 -148.85 1461 L -158.15 1461 C -161.25 1461 -162.8 1461 -164.66 1460.36 C -166.21 1459.72 -167.76 1458.12 -168.38 1456.52 C -169 1454.6 -169 1453 -169 1449.8 L -169 1440.2 C -169 1437 -169 1435.4 -168.38 1433.48 C -167.76 1431.88 -166.21 1430.28 -164.66 1429.64 C -162.8 1429 -161.25 1429 -158.15 1429 M -158.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-157.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2296">
<path d="M -189.15 1429 L -179.85 1429 C -176.75 1429 -175.2 1429 -173.34 1429.64 C -171.79 1430.28 -170.24 1431.88 -169.62 1433.48 C -169 1435.4 -169 1437 -169 1440.2 L -169 1449.8 C -169 1453 -169 1454.6 -169.62 1456.52 C -170.24 1458.12 -171.79 1459.72 -173.34 1460.36 C -175.2 1461 -176.75 1461 -179.85 1461 L -189.15 1461 C -192.25 1461 -193.8 1461 -195.66 1460.36 C -197.21 1459.72 -198.76 1458.12 -199.38 1456.52 C -200 1454.6 -200 1453 -200 1449.8 L -200 1440.2 C -200 1437 -200 1435.4 -199.38 1433.48 C -198.76 1431.88 -197.21 1430.28 -195.66 1429.64 C -193.8 1429 -192.25 1429 -189.15 1429 M -189.15 1429" fill="#dce7fd"/>
<path d="M -189.15 1429 L -179.85 1429 C -176.75 1429 -175.2 1429 -173.34 1429.64 C -171.79 1430.28 -170.24 1431.88 -169.62 1433.48 C -169 1435.4 -169 1437 -169 1440.2 L -169 1449.8 C -169 1453 -169 1454.6 -169.62 1456.52 C -170.24 1458.12 -171.79 1459.72 -173.34 1460.36 C -175.2 1461 -176.75 1461 -179.85 1461 L -189.15 1461 C -192.25 1461 -193.8 1461 -195.66 1460.36 C -197.21 1459.72 -198.76 1458.12 -199.38 1456.52 C -200 1454.6 -200 1453 -200 1449.8 L -200 1440.2 C -200 1437 -200 1435.4 -199.38 1433.48 C -198.76 1431.88 -197.21 1430.28 -195.66 1429.64 C -193.8 1429 -192.25 1429 -189.15 1429 M -189.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-188.392 1436.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan>
</text>
</g>
<g id="Graphic_2294">
<text transform="translate(-372 1437.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 4</tspan>
</text>
</g>
<g id="Graphic_2327"/>
<g id="Graphic_2326"/>
<g id="Graphic_2325">
<path d="M 182.85 1473 L 192.15 1473 C 195.25 1473 196.8 1473 198.66 1473.64 C 200.21 1474.28 201.76 1475.88 202.38 1477.48 C 203 1479.4 203 1481 203 1484.2 L 203 1493.8 C 203 1497 203 1498.6 202.38 1500.52 C 201.76 1502.12 200.21 1503.72 198.66 1504.36 C 196.8 1505 195.25 1505 192.15 1505 L 182.85 1505 C 179.75 1505 178.2 1505 176.34 1504.36 C 174.79 1503.72 173.24 1502.12 172.62 1500.52 C 172 1498.6 172 1497 172 1493.8 L 172 1484.2 C 172 1481 172 1479.4 172.62 1477.48 C 173.24 1475.88 174.79 1474.28 176.34 1473.64 C 178.2 1473 179.75 1473 182.85 1473 M 182.85 1473" fill="#afb1ff"/>
<path d="M 182.85 1473 L 192.15 1473 C 195.25 1473 196.8 1473 198.66 1473.64 C 200.21 1474.28 201.76 1475.88 202.38 1477.48 C 203 1479.4 203 1481 203 1484.2 L 203 1493.8 C 203 1497 203 1498.6 202.38 1500.52 C 201.76 1502.12 200.21 1503.72 198.66 1504.36 C 196.8 1505 195.25 1505 192.15 1505 L 182.85 1505 C 179.75 1505 178.2 1505 176.34 1504.36 C 174.79 1503.72 173.24 1502.12 172.62 1500.52 C 172 1498.6 172 1497 172 1493.8 L 172 1484.2 C 172 1481 172 1479.4 172.62 1477.48 C 173.24 1475.88 174.79 1474.28 176.34 1473.64 C 178.2 1473 179.75 1473 182.85 1473 M 182.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(179.716 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">15</tspan>
</text>
</g>
<g id="Graphic_2324">
<path d="M 151.85 1473 L 161.15 1473 C 164.25 1473 165.8 1473 167.66 1473.64 C 169.21 1474.28 170.76 1475.88 171.38 1477.48 C 172 1479.4 172 1481 172 1484.2 L 172 1493.8 C 172 1497 172 1498.6 171.38 1500.52 C 170.76 1502.12 169.21 1503.72 167.66 1504.36 C 165.8 1505 164.25 1505 161.15 1505 L 151.85 1505 C 148.75 1505 147.2 1505 145.34 1504.36 C 143.79 1503.72 142.24 1502.12 141.62 1500.52 C 141 1498.6 141 1497 141 1493.8 L 141 1484.2 C 141 1481 141 1479.4 141.62 1477.48 C 142.24 1475.88 143.79 1474.28 145.34 1473.64 C 147.2 1473 148.75 1473 151.85 1473 M 151.85 1473" fill="#afb1ff"/>
<path d="M 151.85 1473 L 161.15 1473 C 164.25 1473 165.8 1473 167.66 1473.64 C 169.21 1474.28 170.76 1475.88 171.38 1477.48 C 172 1479.4 172 1481 172 1484.2 L 172 1493.8 C 172 1497 172 1498.6 171.38 1500.52 C 170.76 1502.12 169.21 1503.72 167.66 1504.36 C 165.8 1505 164.25 1505 161.15 1505 L 151.85 1505 C 148.75 1505 147.2 1505 145.34 1504.36 C 143.79 1503.72 142.24 1502.12 141.62 1500.52 C 141 1498.6 141 1497 141 1493.8 L 141 1484.2 C 141 1481 141 1479.4 141.62 1477.48 C 142.24 1475.88 143.79 1474.28 145.34 1473.64 C 147.2 1473 148.75 1473 151.85 1473 M 151.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(148.716 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan>
</text>
</g>
<g id="Graphic_2323">
<path d="M 120.85 1473 L 130.15 1473 C 133.25 1473 134.8 1473 136.66 1473.64 C 138.21 1474.28 139.76 1475.88 140.38 1477.48 C 141 1479.4 141 1481 141 1484.2 L 141 1493.8 C 141 1497 141 1498.6 140.38 1500.52 C 139.76 1502.12 138.21 1503.72 136.66 1504.36 C 134.8 1505 133.25 1505 130.15 1505 L 120.85 1505 C 117.75 1505 116.2 1505 114.34 1504.36 C 112.79 1503.72 111.24 1502.12 110.62 1500.52 C 110 1498.6 110 1497 110 1493.8 L 110 1484.2 C 110 1481 110 1479.4 110.62 1477.48 C 111.24 1475.88 112.79 1474.28 114.34 1473.64 C 116.2 1473 117.75 1473 120.85 1473 M 120.85 1473" fill="#afb1ff"/>
<path d="M 120.85 1473 L 130.15 1473 C 133.25 1473 134.8 1473 136.66 1473.64 C 138.21 1474.28 139.76 1475.88 140.38 1477.48 C 141 1479.4 141 1481 141 1484.2 L 141 1493.8 C 141 1497 141 1498.6 140.38 1500.52 C 139.76 1502.12 138.21 1503.72 136.66 1504.36 C 134.8 1505 133.25 1505 130.15 1505 L 120.85 1505 C 117.75 1505 116.2 1505 114.34 1504.36 C 112.79 1503.72 111.24 1502.12 110.62 1500.52 C 110 1498.6 110 1497 110 1493.8 L 110 1484.2 C 110 1481 110 1479.4 110.62 1477.48 C 111.24 1475.88 112.79 1474.28 114.34 1473.64 C 116.2 1473 117.75 1473 120.85 1473 M 120.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(117.716 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan>
</text>
</g>
<g id="Graphic_2322"/>
<g id="Graphic_2321"/>
<g id="Graphic_2320">
<path d="M 27.85 1473 L 37.15 1473 C 40.25 1473 41.8 1473 43.66 1473.64 C 45.21 1474.28 46.76 1475.88 47.38 1477.48 C 48 1479.4 48 1481 48 1484.2 L 48 1493.8 C 48 1497 48 1498.6 47.38 1500.52 C 46.76 1502.12 45.21 1503.72 43.66 1504.36 C 41.8 1505 40.25 1505 37.15 1505 L 27.85 1505 C 24.75 1505 23.2 1505 21.34 1504.36 C 19.79 1503.72 18.24 1502.12 17.62 1500.52 C 17 1498.6 17 1497 17 1493.8 L 17 1484.2 C 17 1481 17 1479.4 17.62 1477.48 C 18.24 1475.88 19.79 1474.28 21.34 1473.64 C 23.2 1473 24.75 1473 27.85 1473 M 27.85 1473" fill="#dce7fd"/>
<path d="M 27.85 1473 L 37.15 1473 C 40.25 1473 41.8 1473 43.66 1473.64 C 45.21 1474.28 46.76 1475.88 47.38 1477.48 C 48 1479.4 48 1481 48 1484.2 L 48 1493.8 C 48 1497 48 1498.6 47.38 1500.52 C 46.76 1502.12 45.21 1503.72 43.66 1504.36 C 41.8 1505 40.25 1505 37.15 1505 L 27.85 1505 C 24.75 1505 23.2 1505 21.34 1504.36 C 19.79 1503.72 18.24 1502.12 17.62 1500.52 C 17 1498.6 17 1497 17 1493.8 L 17 1484.2 C 17 1481 17 1479.4 17.62 1477.48 C 18.24 1475.88 19.79 1474.28 21.34 1473.64 C 23.2 1473 24.75 1473 27.85 1473 M 27.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(24.716 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan>
</text>
</g>
<g id="Graphic_2319">
<path d="M -3.15 1473 L 6.15 1473 C 9.25 1473 10.8 1473 12.66 1473.64 C 14.21 1474.28 15.76 1475.88 16.38 1477.48 C 17 1479.4 17 1481 17 1484.2 L 17 1493.8 C 17 1497 17 1498.6 16.38 1500.52 C 15.76 1502.12 14.21 1503.72 12.66 1504.36 C 10.8 1505 9.25 1505 6.15 1505 L -3.15 1505 C -6.25 1505 -7.8 1505 -9.66 1504.36 C -11.21 1503.72 -12.76 1502.12 -13.38 1500.52 C -14 1498.6 -14 1497 -14 1493.8 L -14 1484.2 C -14 1481 -14 1479.4 -13.38 1477.48 C -12.76 1475.88 -11.21 1474.28 -9.66 1473.64 C -7.8 1473 -6.25 1473 -3.15 1473 M -3.15 1473" fill="#dce7fd"/>
<path d="M -3.15 1473 L 6.15 1473 C 9.25 1473 10.8 1473 12.66 1473.64 C 14.21 1474.28 15.76 1475.88 16.38 1477.48 C 17 1479.4 17 1481 17 1484.2 L 17 1493.8 C 17 1497 17 1498.6 16.38 1500.52 C 15.76 1502.12 14.21 1503.72 12.66 1504.36 C 10.8 1505 9.25 1505 6.15 1505 L -3.15 1505 C -6.25 1505 -7.8 1505 -9.66 1504.36 C -11.21 1503.72 -12.76 1502.12 -13.38 1500.52 C -14 1498.6 -14 1497 -14 1493.8 L -14 1484.2 C -14 1481 -14 1479.4 -13.38 1477.48 C -12.76 1475.88 -11.21 1474.28 -9.66 1473.64 C -7.8 1473 -6.25 1473 -3.15 1473 M -3.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-6.284 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan>
</text>
</g>
<g id="Graphic_2318">
<path d="M -34.15 1473 L -24.85 1473 C -21.75 1473 -20.2 1473 -18.34 1473.64 C -16.79 1474.28 -15.24 1475.88 -14.62 1477.48 C -14 1479.4 -14 1481 -14 1484.2 L -14 1493.8 C -14 1497 -14 1498.6 -14.62 1500.52 C -15.24 1502.12 -16.79 1503.72 -18.34 1504.36 C -20.2 1505 -21.75 1505 -24.85 1505 L -34.15 1505 C -37.25 1505 -38.8 1505 -40.66 1504.36 C -42.21 1503.72 -43.76 1502.12 -44.38 1500.52 C -45 1498.6 -45 1497 -45 1493.8 L -45 1484.2 C -45 1481 -45 1479.4 -44.38 1477.48 C -43.76 1475.88 -42.21 1474.28 -40.66 1473.64 C -38.8 1473 -37.25 1473 -34.15 1473 M -34.15 1473" fill="#dce7fd"/>
<path d="M -34.15 1473 L -24.85 1473 C -21.75 1473 -20.2 1473 -18.34 1473.64 C -16.79 1474.28 -15.24 1475.88 -14.62 1477.48 C -14 1479.4 -14 1481 -14 1484.2 L -14 1493.8 C -14 1497 -14 1498.6 -14.62 1500.52 C -15.24 1502.12 -16.79 1503.72 -18.34 1504.36 C -20.2 1505 -21.75 1505 -24.85 1505 L -34.15 1505 C -37.25 1505 -38.8 1505 -40.66 1504.36 C -42.21 1503.72 -43.76 1502.12 -44.38 1500.52 C -45 1498.6 -45 1497 -45 1493.8 L -45 1484.2 C -45 1481 -45 1479.4 -44.38 1477.48 C -43.76 1475.88 -42.21 1474.28 -40.66 1473.64 C -38.8 1473 -37.25 1473 -34.15 1473 M -34.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-37.284 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan>
</text>
</g>
<g id="Graphic_2317">
<path d="M -65.15 1473 L -55.85 1473 C -52.75 1473 -51.2 1473 -49.34 1473.64 C -47.79 1474.28 -46.24 1475.88 -45.62 1477.48 C -45 1479.4 -45 1481 -45 1484.2 L -45 1493.8 C -45 1497 -45 1498.6 -45.62 1500.52 C -46.24 1502.12 -47.79 1503.72 -49.34 1504.36 C -51.2 1505 -52.75 1505 -55.85 1505 L -65.15 1505 C -68.25 1505 -69.8 1505 -71.66 1504.36 C -73.21 1503.72 -74.76 1502.12 -75.38 1500.52 C -76 1498.6 -76 1497 -76 1493.8 L -76 1484.2 C -76 1481 -76 1479.4 -75.38 1477.48 C -74.76 1475.88 -73.21 1474.28 -71.66 1473.64 C -69.8 1473 -68.25 1473 -65.15 1473 M -65.15 1473" fill="#dce7fd"/>
<path d="M -65.15 1473 L -55.85 1473 C -52.75 1473 -51.2 1473 -49.34 1473.64 C -47.79 1474.28 -46.24 1475.88 -45.62 1477.48 C -45 1479.4 -45 1481 -45 1484.2 L -45 1493.8 C -45 1497 -45 1498.6 -45.62 1500.52 C -46.24 1502.12 -47.79 1503.72 -49.34 1504.36 C -51.2 1505 -52.75 1505 -55.85 1505 L -65.15 1505 C -68.25 1505 -69.8 1505 -71.66 1504.36 C -73.21 1503.72 -74.76 1502.12 -75.38 1500.52 C -76 1498.6 -76 1497 -76 1493.8 L -76 1484.2 C -76 1481 -76 1479.4 -75.38 1477.48 C -74.76 1475.88 -73.21 1474.28 -71.66 1473.64 C -69.8 1473 -68.25 1473 -65.15 1473 M -65.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-64.392 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan>
</text>
</g>
<g id="Graphic_2316">
<path d="M -96.15 1473 L -86.85 1473 C -83.75 1473 -82.2 1473 -80.34 1473.64 C -78.79 1474.28 -77.24 1475.88 -76.62 1477.48 C -76 1479.4 -76 1481 -76 1484.2 L -76 1493.8 C -76 1497 -76 1498.6 -76.62 1500.52 C -77.24 1502.12 -78.79 1503.72 -80.34 1504.36 C -82.2 1505 -83.75 1505 -86.85 1505 L -96.15 1505 C -99.25 1505 -100.8 1505 -102.66 1504.36 C -104.21 1503.72 -105.76 1502.12 -106.38 1500.52 C -107 1498.6 -107 1497 -107 1493.8 L -107 1484.2 C -107 1481 -107 1479.4 -106.38 1477.48 C -105.76 1475.88 -104.21 1474.28 -102.66 1473.64 C -100.8 1473 -99.25 1473 -96.15 1473 M -96.15 1473" fill="#dce7fd"/>
<path d="M -96.15 1473 L -86.85 1473 C -83.75 1473 -82.2 1473 -80.34 1473.64 C -78.79 1474.28 -77.24 1475.88 -76.62 1477.48 C -76 1479.4 -76 1481 -76 1484.2 L -76 1493.8 C -76 1497 -76 1498.6 -76.62 1500.52 C -77.24 1502.12 -78.79 1503.72 -80.34 1504.36 C -82.2 1505 -83.75 1505 -86.85 1505 L -96.15 1505 C -99.25 1505 -100.8 1505 -102.66 1504.36 C -104.21 1503.72 -105.76 1502.12 -106.38 1500.52 C -107 1498.6 -107 1497 -107 1493.8 L -107 1484.2 C -107 1481 -107 1479.4 -106.38 1477.48 C -105.76 1475.88 -104.21 1474.28 -102.66 1473.64 C -100.8 1473 -99.25 1473 -96.15 1473 M -96.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-95.392 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan>
</text>
</g>
<g id="Graphic_2315">
<path d="M -127.15 1473 L -117.85 1473 C -114.75 1473 -113.2 1473 -111.34 1473.64 C -109.79 1474.28 -108.24 1475.88 -107.62 1477.48 C -107 1479.4 -107 1481 -107 1484.2 L -107 1493.8 C -107 1497 -107 1498.6 -107.62 1500.52 C -108.24 1502.12 -109.79 1503.72 -111.34 1504.36 C -113.2 1505 -114.75 1505 -117.85 1505 L -127.15 1505 C -130.25 1505 -131.8 1505 -133.66 1504.36 C -135.21 1503.72 -136.76 1502.12 -137.38 1500.52 C -138 1498.6 -138 1497 -138 1493.8 L -138 1484.2 C -138 1481 -138 1479.4 -137.38 1477.48 C -136.76 1475.88 -135.21 1474.28 -133.66 1473.64 C -131.8 1473 -130.25 1473 -127.15 1473 M -127.15 1473" fill="#dce7fd"/>
<path d="M -127.15 1473 L -117.85 1473 C -114.75 1473 -113.2 1473 -111.34 1473.64 C -109.79 1474.28 -108.24 1475.88 -107.62 1477.48 C -107 1479.4 -107 1481 -107 1484.2 L -107 1493.8 C -107 1497 -107 1498.6 -107.62 1500.52 C -108.24 1502.12 -109.79 1503.72 -111.34 1504.36 C -113.2 1505 -114.75 1505 -117.85 1505 L -127.15 1505 C -130.25 1505 -131.8 1505 -133.66 1504.36 C -135.21 1503.72 -136.76 1502.12 -137.38 1500.52 C -138 1498.6 -138 1497 -138 1493.8 L -138 1484.2 C -138 1481 -138 1479.4 -137.38 1477.48 C -136.76 1475.88 -135.21 1474.28 -133.66 1473.64 C -131.8 1473 -130.25 1473 -127.15 1473 M -127.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-126.392 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan>
</text>
</g>
<g id="Graphic_2314">
<path d="M -158.15 1473 L -148.85 1473 C -145.75 1473 -144.2 1473 -142.34 1473.64 C -140.79 1474.28 -139.24 1475.88 -138.62 1477.48 C -138 1479.4 -138 1481 -138 1484.2 L -138 1493.8 C -138 1497 -138 1498.6 -138.62 1500.52 C -139.24 1502.12 -140.79 1503.72 -142.34 1504.36 C -144.2 1505 -145.75 1505 -148.85 1505 L -158.15 1505 C -161.25 1505 -162.8 1505 -164.66 1504.36 C -166.21 1503.72 -167.76 1502.12 -168.38 1500.52 C -169 1498.6 -169 1497 -169 1493.8 L -169 1484.2 C -169 1481 -169 1479.4 -168.38 1477.48 C -167.76 1475.88 -166.21 1474.28 -164.66 1473.64 C -162.8 1473 -161.25 1473 -158.15 1473 M -158.15 1473" fill="#dce7fd"/>
<path d="M -158.15 1473 L -148.85 1473 C -145.75 1473 -144.2 1473 -142.34 1473.64 C -140.79 1474.28 -139.24 1475.88 -138.62 1477.48 C -138 1479.4 -138 1481 -138 1484.2 L -138 1493.8 C -138 1497 -138 1498.6 -138.62 1500.52 C -139.24 1502.12 -140.79 1503.72 -142.34 1504.36 C -144.2 1505 -145.75 1505 -148.85 1505 L -158.15 1505 C -161.25 1505 -162.8 1505 -164.66 1504.36 C -166.21 1503.72 -167.76 1502.12 -168.38 1500.52 C -169 1498.6 -169 1497 -169 1493.8 L -169 1484.2 C -169 1481 -169 1479.4 -168.38 1477.48 C -167.76 1475.88 -166.21 1474.28 -164.66 1473.64 C -162.8 1473 -161.25 1473 -158.15 1473 M -158.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-157.392 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan>
</text>
</g>
<g id="Graphic_2313">
<path d="M -189.15 1473 L -179.85 1473 C -176.75 1473 -175.2 1473 -173.34 1473.64 C -171.79 1474.28 -170.24 1475.88 -169.62 1477.48 C -169 1479.4 -169 1481 -169 1484.2 L -169 1493.8 C -169 1497 -169 1498.6 -169.62 1500.52 C -170.24 1502.12 -171.79 1503.72 -173.34 1504.36 C -175.2 1505 -176.75 1505 -179.85 1505 L -189.15 1505 C -192.25 1505 -193.8 1505 -195.66 1504.36 C -197.21 1503.72 -198.76 1502.12 -199.38 1500.52 C -200 1498.6 -200 1497 -200 1493.8 L -200 1484.2 C -200 1481 -200 1479.4 -199.38 1477.48 C -198.76 1475.88 -197.21 1474.28 -195.66 1473.64 C -193.8 1473 -192.25 1473 -189.15 1473 M -189.15 1473" fill="#dce7fd"/>
<path d="M -189.15 1473 L -179.85 1473 C -176.75 1473 -175.2 1473 -173.34 1473.64 C -171.79 1474.28 -170.24 1475.88 -169.62 1477.48 C -169 1479.4 -169 1481 -169 1484.2 L -169 1493.8 C -169 1497 -169 1498.6 -169.62 1500.52 C -170.24 1502.12 -171.79 1503.72 -173.34 1504.36 C -175.2 1505 -176.75 1505 -179.85 1505 L -189.15 1505 C -192.25 1505 -193.8 1505 -195.66 1504.36 C -197.21 1503.72 -198.76 1502.12 -199.38 1500.52 C -200 1498.6 -200 1497 -200 1493.8 L -200 1484.2 C -200 1481 -200 1479.4 -199.38 1477.48 C -198.76 1475.88 -197.21 1474.28 -195.66 1473.64 C -193.8 1473 -192.25 1473 -189.15 1473 M -189.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(-188.392 1480.804)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan>
</text>
</g>
<g id="Graphic_2311">
<text transform="translate(-372 1481.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 5</tspan>
</text>
</g>
<g id="Graphic_2345">
<text transform="translate(-140 1241.776)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7.196" y="15">Model Fit Using</tspan>
</text>
</g>
<g id="Graphic_2346">
<text transform="translate(103 1209.328)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="17.38" y="15">Estimate </tspan>
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="2.572" y="33.448">Performance </tspan>
<tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="27.908" y="51.895996">Using</tspan>
</text>
</g>
<g id="Line_2347">
<line x1="-198" y1="1270.5" x2="47" y2="1271.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/>
</g>
<g id="Line_2348">
<line x1="98" y1="1270.5" x2="205" y2="1271" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -0,0 +1,75 @@
<?xml version='1.0' encoding='UTF-8' ?>
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='svglite' width='439.20pt' height='306.00pt' viewBox='0 0 439.20 306.00'>
<defs>
<style type='text/css'><![CDATA[
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
fill: none;
stroke: #000000;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10.00;
}
.svglite text {
white-space: pre;
}
]]></style>
</defs>
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
<defs>
<clipPath id='cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA='>
<rect x='0.00' y='0.00' width='439.20' height='306.00' />
</clipPath>
</defs>
<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'>
<rect x='0.00' y='0.00' width='439.20' height='306.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
</g>
<defs>
<clipPath id='cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3'>
<rect x='33.27' y='5.48' width='400.45' height='268.79' />
</clipPath>
</defs>
<g clip-path='url(#cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3)'>
<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
<polyline points='33.27,238.58 433.72,238.58 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,180.73 433.72,180.73 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,122.88 433.72,122.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,65.03 433.72,65.03 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,7.18 433.72,7.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='51.47,274.27 51.47,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='190.15,274.27 190.15,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='328.84,274.27 328.84,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,267.50 433.72,267.50 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,209.65 433.72,209.65 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,151.80 433.72,151.80 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,93.95 433.72,93.95 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='33.27,36.10 433.72,36.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='120.81,274.27 120.81,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='259.50,274.27 259.50,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='398.18,274.27 398.18,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
<polyline points='51.47,17.70 55.15,17.73 58.82,17.77 62.50,17.81 66.18,17.86 69.86,17.92 73.53,17.98 77.21,18.05 80.89,18.13 84.57,18.22 88.24,18.32 91.92,18.44 95.60,18.57 99.27,18.72 102.95,18.88 106.63,19.07 110.31,19.28 113.98,19.52 117.66,19.79 121.34,20.10 125.01,20.44 128.69,20.83 132.37,21.26 136.05,21.76 139.72,22.31 143.40,22.93 147.08,23.64 150.76,24.43 154.43,25.33 158.11,26.33 161.79,27.47 165.46,28.74 169.14,30.17 172.82,31.77 176.50,33.56 180.17,35.58 183.85,37.84 187.53,40.36 191.21,43.18 194.88,46.32 198.56,49.81 202.24,53.71 205.91,58.01 209.59,62.78 213.27,68.07 216.95,73.84 220.62,80.20 224.30,87.14 227.98,94.67 231.66,102.77 235.33,111.48 239.01,120.72 242.69,130.38 246.36,140.47 250.04,150.90 253.72,161.49 257.40,172.20 261.07,182.77 264.75,193.28 268.43,203.02 272.11,212.26 275.78,220.71 279.46,228.10 283.14,234.47 286.81,240.00 290.49,244.46 294.17,248.31 297.85,251.48 301.52,253.47 305.20,255.43 308.88,257.08 312.55,257.94 316.23,258.86 319.91,259.68 323.59,260.31 327.26,260.03 330.94,260.84 334.62,260.93 338.30,262.05 341.97,260.92 345.65,261.35 349.33,261.26 353.00,261.43 356.68,260.81 360.36,260.29 364.04,259.27 367.71,257.85 371.39,257.15 375.07,254.18 378.75,252.51 382.42,250.51 386.10,247.01 389.78,239.75 393.45,235.27 397.13,229.47 400.81,218.83 404.49,210.20 408.16,197.55 411.84,175.34 415.52,130.52 ' style='stroke-width: 3.20; stroke: #0B84A5; stroke-opacity: 0.50; stroke-linecap: butt;' />
<circle cx='51.47' cy='17.70' r='4.62' style='stroke-width: 0.71;' />
<circle cx='233.49' cy='107.04' r='4.62' style='stroke-width: 0.71;' />
<circle cx='415.52' cy='130.52' r='4.62' style='stroke-width: 0.71;' />
<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: #333333;' />
</g>
<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'>
<text x='28.34' y='270.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>10</text>
<text x='28.34' y='212.81' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>20</text>
<text x='28.34' y='154.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>30</text>
<text x='28.34' y='97.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>40</text>
<text x='28.34' y='39.26' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>50</text>
<polyline points='30.53,267.50 33.27,267.50 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,209.65 33.27,209.65 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,151.80 33.27,151.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,93.95 33.27,93.95 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='30.53,36.10 33.27,36.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='120.81,277.01 120.81,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='259.50,277.01 259.50,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<polyline points='398.18,277.01 398.18,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
<text x='120.81' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-04</text>
<text x='259.50' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-02</text>
<text x='398.18' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='24.72px' lengthAdjust='spacingAndGlyphs'>1e+00</text>
<text x='233.49' y='298.09' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='69.11px' lengthAdjust='spacingAndGlyphs'>Learning Rate</text>
<text transform='translate(13.37,139.87) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='24.45px' lengthAdjust='spacingAndGlyphs'>Error</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 KiB

View File

@ -0,0 +1,34 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-41 -41 492 492" xml:space="preserve" width="800" height="800">
<g stroke-width="0"/>
<g stroke-linecap="round" stroke-linejoin="round" stroke="#CCC" stroke-width="3.28"/>
<path style="fill:#ffda44" d="M75 232.5c13.326 0 25.294 5.797 33.534 15.002H170V117.5H70l-30 70H0v30h30v30H0v.002h41.466C49.706 238.297 61.674 232.5 75 232.5zm14.782-85H155v40H72.639l17.143-40z"/>
<path style="fill:#ff9811" d="M170 247.5h30v.002h-30zm150-60-50-70H170v100h30v30h30v-30h30v30h-30v.002h71.466c8.24-9.205 20.208-15.002 33.534-15.002s25.294 5.797 33.534 15.002H410v-.002h-20l-10-30h30v-10l-90-20zm-135 0v-40h69.561l28.571 40H185z"/>
<path style="fill:#acabb1" d="M0 247.502V277.5h30c0-11.527 4.339-22.037 11.466-29.998H0zm170 0h-61.466C115.661 255.463 120 265.973 120 277.5h80v-29.998h-30zm60 0V277.5h60c0-11.527 4.339-22.037 11.466-29.998H230zM380 277.5h30v-29.998h-41.466C375.661 255.463 380 265.973 380 277.5z"/>
<path style="fill:#616064" d="M52.5 277.5c0-12.427 10.073-22.5 22.5-22.5v-22.5c-13.326 0-25.294 5.797-33.534 15.002C34.339 255.463 30 265.973 30 277.5c0 24.853 20.147 45 45 45V300c-12.427 0-22.5-10.073-22.5-22.5z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#565659" d="M75 232.5V255c12.427 0 22.5 10.073 22.5 22.5S87.427 300 75 300v22.5c24.852 0 45-20.147 45-45 0-11.527-4.339-22.037-11.466-29.998C100.294 238.297 88.326 232.5 75 232.5z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#cdcdd0" d="M52.5 277.5c0 12.427 10.073 22.5 22.5 22.5v-45c-12.427 0-22.5 10.073-22.5 22.5z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#acabb1" d="M75 300c12.427 0 22.5-10.073 22.5-22.5S87.427 255 75 255v45z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#616064" d="M312.5 277.5c0-12.427 10.073-22.5 22.5-22.5v-22.5c-13.326 0-25.294 5.797-33.534 15.002C294.339 255.463 290 265.973 290 277.5c0 24.853 20.147 45 45 45V300c-12.427 0-22.5-10.073-22.5-22.5z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#565659" d="M335 232.5V255c12.427 0 22.5 10.073 22.5 22.5S347.427 300 335 300v22.5c24.852 0 45-20.147 45-45 0-11.527-4.339-22.037-11.466-29.998-8.24-9.205-20.208-15.002-33.534-15.002z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#cdcdd0" d="M312.5 277.5c0 12.427 10.073 22.5 22.5 22.5v-45c-12.427 0-22.5 10.073-22.5 22.5z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#acabb1" d="M335 300c12.427 0 22.5-10.073 22.5-22.5S347.427 255 335 255v45z">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/>
</path>
<path style="fill:#fff" d="M155 147.5H89.782l-17.143 40H155zm30 0v40h98.133l-28.572-40z"/>
<path style="fill:#ff5023" d="M0 217.5h30v30H0zm390 30h20v-30h-30z"/>
<path style="fill:#565659" d="M210 117.5v-30h-80v30h40zm-40 100h30v30h-30zm60 30h-30v30h30v-29.998zm0-30h30v30h-30z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 638 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 408 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 410 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="3507.5 2514 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="3433.05" y="2429.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_743">
<g id="Graphic_742"/>
<g id="Graphic_740">
<path d="M 3894 2728.2444 L 3894 2680.2444 C 3894 2676.9324 3926.816 2674.2444 3967.25 2674.2444 C 4007.684 2674.2444 4040.5 2676.9324 4040.5 2680.2444 L 4040.5 2728.2444 C 4040.5 2731.5564 4007.684 2734.2444 3967.25 2734.2444 C 3926.816 2734.2444 3894 2731.5564 3894 2728.2444" fill="#ffeabb"/>
<path d="M 3894 2728.2444 L 3894 2680.2444 C 3894 2676.9324 3926.816 2674.2444 3967.25 2674.2444 C 4007.684 2674.2444 4040.5 2676.9324 4040.5 2680.2444 L 4040.5 2728.2444 C 4040.5 2731.5564 4007.684 2734.2444 3967.25 2734.2444 C 3926.816 2734.2444 3894 2731.5564 3894 2728.2444 M 3894 2680.2444 C 3894 2683.5564 3926.816 2686.2444 3967.25 2686.2444 C 4007.684 2686.2444 4040.5 2683.5564 4040.5 2680.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3899 2698.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_739">
<path d="M 3598 2728.2444 L 3598 2680.2444 C 3598 2676.9324 3630.816 2674.2444 3671.25 2674.2444 C 3711.684 2674.2444 3744.5 2676.9324 3744.5 2680.2444 L 3744.5 2728.2444 C 3744.5 2731.5564 3711.684 2734.2444 3671.25 2734.2444 C 3630.816 2734.2444 3598 2731.5564 3598 2728.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 3598 2728.2444 L 3598 2680.2444 C 3598 2676.9324 3630.816 2674.2444 3671.25 2674.2444 C 3711.684 2674.2444 3744.5 2676.9324 3744.5 2680.2444 L 3744.5 2728.2444 C 3744.5 2731.5564 3711.684 2734.2444 3671.25 2734.2444 C 3630.816 2734.2444 3598 2731.5564 3598 2728.2444 M 3598 2680.2444 C 3598 2683.5564 3630.816 2686.2444 3671.25 2686.2444 C 3711.684 2686.2444 3744.5 2683.5564 3744.5 2680.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3603 2698.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Graphic_738">
<path d="M 3755 2608.1253 L 3755 2560.1253 C 3755 2556.8133 3787.816 2554.1253 3828.25 2554.1253 C 3868.684 2554.1253 3901.5 2556.8133 3901.5 2560.1253 L 3901.5 2608.1253 C 3901.5 2611.4373 3868.684 2614.1253 3828.25 2614.1253 C 3787.816 2614.1253 3755 2611.4373 3755 2608.1253 M 3755 2560.1253 C 3755 2563.4373 3787.816 2566.1253 3828.25 2566.1253 C 3868.684 2566.1253 3901.5 2563.4373 3901.5 2560.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3760 2577.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_737">
<line x1="3790.181" y1="2613.2515" x2="3717.1817" y2="2669.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_736">
<line x1="3862.1767" y1="2613.4436" x2="3925.8327" y2="2668.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_735" filter="url(#Shadow)">
<path d="M 3790.5 2877.1253 L 3790.5 2829.1253 C 3790.5 2825.8133 3823.316 2823.1253 3863.75 2823.1253 C 3904.184 2823.1253 3937 2825.8133 3937 2829.1253 L 3937 2877.1253 C 3937 2880.4373 3904.184 2883.1253 3863.75 2883.1253 C 3823.316 2883.1253 3790.5 2880.4373 3790.5 2877.1253" fill="#fffbf1"/>
<path d="M 3790.5 2877.1253 L 3790.5 2829.1253 C 3790.5 2825.8133 3823.316 2823.1253 3863.75 2823.1253 C 3904.184 2823.1253 3937 2825.8133 3937 2829.1253 L 3937 2877.1253 C 3937 2880.4373 3904.184 2883.1253 3863.75 2883.1253 C 3823.316 2883.1253 3790.5 2880.4373 3790.5 2877.1253 M 3790.5 2829.1253 C 3790.5 2832.4373 3823.316 2835.1253 3863.75 2835.1253 C 3904.184 2835.1253 3937 2832.4373 3937 2829.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3795.5 2846.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_734">
<line x1="3946.5633" y1="2734.0015" x2="3890.0877" y2="2815.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_733">
<path d="M 4003 2871.5253 L 4003 2834.7253 C 4003 2832.186 4024.84 2830.1253 4051.75 2830.1253 C 4078.66 2830.1253 4100.5 2832.186 4100.5 2834.7253 L 4100.5 2871.5253 C 4100.5 2874.0645 4078.66 2876.1253 4051.75 2876.1253 C 4024.84 2876.1253 4003 2874.0645 4003 2871.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 4003 2871.5253 L 4003 2834.7253 C 4003 2832.186 4024.84 2830.1253 4051.75 2830.1253 C 4078.66 2830.1253 4100.5 2832.186 4100.5 2834.7253 L 4100.5 2871.5253 C 4100.5 2874.0645 4078.66 2876.1253 4051.75 2876.1253 C 4024.84 2876.1253 4003 2874.0645 4003 2871.5253 M 4003 2834.7253 C 4003 2837.2645 4024.84 2839.3253 4051.75 2839.3253 C 4078.66 2839.3253 4100.5 2837.2645 4100.5 2834.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4008 2848.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_732">
<line x1="3984.1854" y1="2734.083" x2="4033.9026" y2="2821.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_729">
<ellipse cx="3800.25" cy="2946.5978" rx="42.2500675113548" ry="19.2857451023941" fill="#fffbf1"/>
<ellipse cx="3800.25" cy="2946.5978" rx="42.2500675113548" ry="19.2857451023941" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3771.45 2938.0978)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan>
</text>
</g>
<g id="Line_728">
<line x1="3843.527" y1="2882.8934" x2="3818.3295" y2="2919.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_727">
<ellipse cx="3931.25" cy="2946.1635" rx="42.2500675113553" ry="18.8514574734569" fill="#fffbf1"/>
<ellipse cx="3931.25" cy="2946.1635" rx="42.2500675113553" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(3902.45 2937.9675)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan>
</text>
</g>
<g id="Line_726">
<line x1="3879.1667" y1="2886.5" x2="3909.4014" y2="2921.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

View File

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="6505 2491 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="6430.55" y="2406.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_695">
<g id="Graphic_585"/>
<g id="Graphic_584">
<path d="M 6917 3075.2505 L 7059.5 3075.2505 C 7060.6046 3075.2505 7061.5 3076.146 7061.5 3077.2505 L 7061.5 3133.2505 C 7061.5 3134.355 7060.6046 3135.2505 7059.5 3135.2505 L 6917 3135.2505 C 6915.8954 3135.2505 6915 3134.355 6915 3133.2505 L 6915 3077.2505 C 6915 3076.146 6915.8954 3075.2505 6917 3075.2505 Z" fill="#ffeabb"/>
<path d="M 6917 3075.2505 L 7059.5 3075.2505 C 7060.6046 3075.2505 7061.5 3076.146 7061.5 3077.2505 L 7061.5 3133.2505 C 7061.5 3134.355 7060.6046 3135.2505 7059.5 3135.2505 L 6917 3135.2505 C 6915.8954 3135.2505 6915 3134.355 6915 3133.2505 L 6915 3077.2505 C 6915 3076.146 6915.8954 3075.2505 6917 3075.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6920 3096.0265)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.018" y="15">Final model fit</tspan>
</text>
</g>
<g id="Graphic_583">
<path d="M 6917 2957.3758 L 7059.5 2957.3758 C 7060.6046 2957.3758 7061.5 2958.2712 7061.5 2959.3758 L 7061.5 3015.3758 C 7061.5 3016.4804 7060.6046 3017.3758 7059.5 3017.3758 L 6917 3017.3758 C 6915.8954 3017.3758 6915 3016.4804 6915 3015.3758 L 6915 2959.3758 C 6915 2958.2712 6915.8954 2957.3758 6917 2957.3758 Z" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 6917 2957.3758 L 7059.5 2957.3758 C 7060.6046 2957.3758 7061.5 2958.2712 7061.5 2959.3758 L 7061.5 3015.3758 C 7061.5 3016.4804 7060.6046 3017.3758 7059.5 3017.3758 L 6917 3017.3758 C 6915.8954 3017.3758 6915 3016.4804 6915 3015.3758 L 6915 2959.3758 C 6915 2958.2712 6915.8954 2957.3758 6917 2957.3758 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6920 2978.1518)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan>
</text>
</g>
<g id="Graphic_582">
<path d="M 6917 3193.1253 L 7059.5 3193.1253 C 7060.6046 3193.1253 7061.5 3194.0207 7061.5 3195.1253 L 7061.5 3251.1253 C 7061.5 3252.23 7060.6046 3253.1253 7059.5 3253.1253 L 6917 3253.1253 C 6915.8954 3253.1253 6915 3252.23 6915 3251.1253 L 6915 3195.1253 C 6915 3194.0207 6915.8954 3193.1253 6917 3193.1253 Z" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 6917 3193.1253 L 7059.5 3193.1253 C 7060.6046 3193.1253 7061.5 3194.0207 7061.5 3195.1253 L 7061.5 3251.1253 C 7061.5 3252.23 7060.6046 3253.1253 7059.5 3253.1253 L 6917 3253.1253 C 6915.8954 3253.1253 6915 3252.23 6915 3251.1253 L 6915 3195.1253 C 6915 3194.0207 6915.8954 3193.1253 6917 3193.1253 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6920 3204.6773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.242" y="15">Verify model </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="22.762" y="33.448">performance</tspan>
</text>
</g>
<g id="Line_581">
<line x1="6988.25" y1="3017.3758" x2="6988.25" y2="3065.3505" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_580">
<line x1="6988.25" y1="3135.2505" x2="6988.25" y2="3183.2253" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_578">
<path d="M 6618.5 2703.2444 L 6618.5 2655.2444 C 6618.5 2651.9324 6651.316 2649.2444 6691.75 2649.2444 C 6732.184 2649.2444 6765 2651.9324 6765 2655.2444 L 6765 2703.2444 C 6765 2706.5564 6732.184 2709.2444 6691.75 2709.2444 C 6651.316 2709.2444 6618.5 2706.5564 6618.5 2703.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 6618.5 2703.2444 L 6618.5 2655.2444 C 6618.5 2651.9324 6651.316 2649.2444 6691.75 2649.2444 C 6732.184 2649.2444 6765 2651.9324 6765 2655.2444 L 6765 2703.2444 C 6765 2706.5564 6732.184 2709.2444 6691.75 2709.2444 C 6651.316 2709.2444 6618.5 2706.5564 6618.5 2703.2444 M 6618.5 2655.2444 C 6618.5 2658.5564 6651.316 2661.2444 6691.75 2661.2444 C 6732.184 2661.2444 6765 2658.5564 6765 2655.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6623.5 2673.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Line_577">
<path d="M 6679.368 2709.159 C 6654.031 2775.6832 6603.932 2939.469 6669.3696 3059.504 C 6720.916 3154.0578 6829.279 3194.18 6905.317 3211.0687" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_576">
<path d="M 6775.5 2583.1253 L 6775.5 2535.1253 C 6775.5 2531.8133 6808.316 2529.1253 6848.75 2529.1253 C 6889.184 2529.1253 6922 2531.8133 6922 2535.1253 L 6922 2583.1253 C 6922 2586.4373 6889.184 2589.1253 6848.75 2589.1253 C 6808.316 2589.1253 6775.5 2586.4373 6775.5 2583.1253 M 6775.5 2535.1253 C 6775.5 2538.4373 6808.316 2541.1253 6848.75 2541.1253 C 6889.184 2541.1253 6922 2538.4373 6922 2535.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6780.5 2552.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_575">
<line x1="6810.681" y1="2588.2515" x2="6737.682" y2="2644.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_573">
<ellipse cx="6922.75" cy="2889.999" rx="42.2500675113548" ry="19.285745102394" fill="#f6f5ff"/>
<ellipse cx="6922.75" cy="2889.999" rx="42.2500675113548" ry="19.285745102394" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6893.95 2881.499)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan>
</text>
</g>
<g id="Line_571">
<line x1="6972.787" y1="2808.041" x2="6939.253" y2="2862.9682" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_569">
<line x1="6935.1535" y1="2908.439" x2="6962.545" y2="2949.1612" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_567" filter="url(#Shadow)">
<path d="M 6908.9505 2703.2444 L 6908.9505 2655.2444 C 6908.9505 2651.9324 6941.7665 2649.2444 6982.2005 2649.2444 C 7022.6345 2649.2444 7055.4505 2651.9324 7055.4505 2655.2444 L 7055.4505 2703.2444 C 7055.4505 2706.5564 7022.6345 2709.2444 6982.2005 2709.2444 C 6941.7665 2709.2444 6908.9505 2706.5564 6908.9505 2703.2444" fill="#ffeabb"/>
<path d="M 6908.9505 2703.2444 L 6908.9505 2655.2444 C 6908.9505 2651.9324 6941.7665 2649.2444 6982.2005 2649.2444 C 7022.6345 2649.2444 7055.4505 2651.9324 7055.4505 2655.2444 L 7055.4505 2703.2444 C 7055.4505 2706.5564 7022.6345 2709.2444 6982.2005 2709.2444 C 6941.7665 2709.2444 6908.9505 2706.5564 6908.9505 2703.2444 M 6908.9505 2655.2444 C 6908.9505 2658.5564 6941.7665 2661.2444 6982.2005 2661.2444 C 7022.6345 2661.2444 7055.4505 2658.5564 7055.4505 2655.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(6913.9505 2673.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_586">
<line x1="6881.382" y1="2588.4978" x2="6942.21" y2="2643.2487" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_588">
<line x1="6982.0905" y1="2709.2444" x2="6981.931" y2="2752.7223" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_589">
<path d="M 7017.447 2708.5046 C 7073.38 2757.5555 7176.332 2859.6427 7177.579 2947.4933 C 7178.5146 3013.3506 7122.054 3054.3085 7070.558 3077.9313" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Group_606">
<g id="Graphic_603">
<path d="M 6914.118 2816.6222 L 6914.118 2768.6222 C 6914.118 2765.3102 6944.433 2762.6222 6981.785 2762.6222 C 7019.137 2762.6222 7049.4515 2765.3102 7049.4515 2768.6222 L 7049.4515 2816.6222 C 7049.4515 2819.9342 7019.137 2822.6222 6981.785 2822.6222 C 6944.433 2822.6222 6914.118 2819.9342 6914.118 2816.6222" fill="#f6f5ff"/>
<path d="M 6914.118 2816.6222 L 6914.118 2768.6222 C 6914.118 2765.3102 6944.433 2762.6222 6981.785 2762.6222 C 7019.137 2762.6222 7049.4515 2765.3102 7049.4515 2768.6222 L 7049.4515 2816.6222 C 7049.4515 2819.9342 7019.137 2822.6222 6981.785 2822.6222 C 6944.433 2822.6222 6914.118 2819.9342 6914.118 2816.6222 M 6914.118 2768.6222 C 6914.118 2771.9342 6944.433 2774.6222 6981.785 2774.6222 C 7019.137 2774.6222 7049.4515 2771.9342 7049.4515 2768.6222" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_602">
<path d="M 6914.026 2778.9803 C 6914.026 2778.9803 6940.3496 2783.4773 6978.69 2783.4305 C 7017.031 2783.3838 7049.359 2778.815 7049.359 2778.815" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_601">
<path d="M 6915.042 2788.2893 C 6915.042 2788.2893 6941.366 2792.7863 6979.706 2792.7395 C 7018.047 2792.6928 7050.375 2788.124 7050.375 2788.124" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_600">
<path d="M 6914.026 2797.5983 C 6914.026 2797.5983 6940.3496 2802.0953 6978.69 2802.0485 C 7017.031 2802.0017 7049.359 2797.433 7049.359 2797.433" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_599">
<path d="M 6915.042 2806.9073 C 6915.042 2806.9073 6941.366 2811.4043 6979.706 2811.3575 C 7018.047 2811.3107 7050.375 2806.742 7050.375 2806.742" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_594">
<rect x="6935.289" y="2777.2034" width="93.82355" height="30.83759" fill="#f6f5ff"/>
<text transform="translate(6952.4165 2785.4542)" fill="black">
<tspan font-family="Helvetica Neue" font-size="12" fill="black" x="0" y="11">Resamples</tspan>
</text>
</g>
</g>
<g id="Graphic_685">
<ellipse cx="7053.75" cy="2889.5647" rx="42.2500675113548" ry="18.8514574734569" fill="#f6f5ff"/>
<ellipse cx="7053.75" cy="2889.5647" rx="42.2500675113548" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(7024.95 2881.3687)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan>
</text>
</g>
<g id="Line_686">
<line x1="7001.667" y1="2822.6222" x2="7033.812" y2="2863.938" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_687">
<line x1="7041.652" y1="2907.6306" x2="7013.848" y2="2949.15" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="5396 2538 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="5321.55" y="2453.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_694">
<g id="Group_591">
<g id="Graphic_554"/>
<g id="Graphic_553">
<path d="M 5784.5 3163.1253 L 5927 3163.1253 C 5928.1046 3163.1253 5929 3164.0207 5929 3165.1253 L 5929 3221.1253 C 5929 3222.23 5928.1046 3223.1253 5927 3223.1253 L 5784.5 3223.1253 C 5783.3954 3223.1253 5782.5 3222.23 5782.5 3221.1253 L 5782.5 3165.1253 C 5782.5 3164.0207 5783.3954 3163.1253 5784.5 3163.1253 Z" fill="#ffeabb"/>
<path d="M 5784.5 3163.1253 L 5927 3163.1253 C 5928.1046 3163.1253 5929 3164.0207 5929 3165.1253 L 5929 3221.1253 C 5929 3222.23 5928.1046 3223.1253 5927 3223.1253 L 5784.5 3223.1253 C 5783.3954 3223.1253 5782.5 3222.23 5782.5 3221.1253 L 5782.5 3165.1253 C 5782.5 3164.0207 5783.3954 3163.1253 5784.5 3163.1253 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5787.5 3183.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.018" y="15">Final model fit</tspan>
</text>
</g>
<g id="Graphic_552">
<path d="M 5784.5 3045.2505 L 5927 3045.2505 C 5928.1046 3045.2505 5929 3046.146 5929 3047.2505 L 5929 3103.2505 C 5929 3104.355 5928.1046 3105.2505 5927 3105.2505 L 5784.5 3105.2505 C 5783.3954 3105.2505 5782.5 3104.355 5782.5 3103.2505 L 5782.5 3047.2505 C 5782.5 3046.146 5783.3954 3045.2505 5784.5 3045.2505 Z" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 5784.5 3045.2505 L 5927 3045.2505 C 5928.1046 3045.2505 5929 3046.146 5929 3047.2505 L 5929 3103.2505 C 5929 3104.355 5928.1046 3105.2505 5927 3105.2505 L 5784.5 3105.2505 C 5783.3954 3105.2505 5782.5 3104.355 5782.5 3103.2505 L 5782.5 3047.2505 C 5782.5 3046.146 5783.3954 3045.2505 5784.5 3045.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5787.5 3066.0265)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan>
</text>
</g>
<g id="Graphic_551">
<path d="M 5784.5 3281 L 5927 3281 C 5928.1046 3281 5929 3281.8954 5929 3283 L 5929 3339 C 5929 3340.1046 5928.1046 3341 5927 3341 L 5784.5 3341 C 5783.3954 3341 5782.5 3340.1046 5782.5 3339 L 5782.5 3283 C 5782.5 3281.8954 5783.3954 3281 5784.5 3281 Z" fill="#7a81ff" fill-opacity=".18181868"/>
<path d="M 5784.5 3281 L 5927 3281 C 5928.1046 3281 5929 3281.8954 5929 3283 L 5929 3339 C 5929 3340.1046 5928.1046 3341 5927 3341 L 5784.5 3341 C 5783.3954 3341 5782.5 3340.1046 5782.5 3339 L 5782.5 3283 C 5782.5 3281.8954 5783.3954 3281 5784.5 3281 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5787.5 3292.552)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.242" y="15">Verify model </tspan>
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="22.762" y="33.448">performance</tspan>
</text>
</g>
<g id="Line_550">
<line x1="5855.75" y1="3105.2505" x2="5855.75" y2="3153.2253" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_549">
<line x1="5855.75" y1="3223.1253" x2="5855.75" y2="3271.1" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_548">
<path d="M 5782.5 2752.2444 L 5782.5 2704.2444 C 5782.5 2700.9324 5815.316 2698.2444 5855.75 2698.2444 C 5896.184 2698.2444 5929 2700.9324 5929 2704.2444 L 5929 2752.2444 C 5929 2755.5564 5896.184 2758.2444 5855.75 2758.2444 C 5815.316 2758.2444 5782.5 2755.5564 5782.5 2752.2444" fill="#ffeabb"/>
<path d="M 5782.5 2752.2444 L 5782.5 2704.2444 C 5782.5 2700.9324 5815.316 2698.2444 5855.75 2698.2444 C 5896.184 2698.2444 5929 2700.9324 5929 2704.2444 L 5929 2752.2444 C 5929 2755.5564 5896.184 2758.2444 5855.75 2758.2444 C 5815.316 2758.2444 5782.5 2755.5564 5782.5 2752.2444 M 5782.5 2704.2444 C 5782.5 2707.5564 5815.316 2710.2444 5855.75 2710.2444 C 5896.184 2710.2444 5929 2707.5564 5929 2704.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5787.5 2722.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_547">
<path d="M 5486.5 2752.2444 L 5486.5 2704.2444 C 5486.5 2700.9324 5519.316 2698.2444 5559.75 2698.2444 C 5600.184 2698.2444 5633 2700.9324 5633 2704.2444 L 5633 2752.2444 C 5633 2755.5564 5600.184 2758.2444 5559.75 2758.2444 C 5519.316 2758.2444 5486.5 2755.5564 5486.5 2752.2444" fill="#7a81ff" fill-opacity=".18181868"/>
<path d="M 5486.5 2752.2444 L 5486.5 2704.2444 C 5486.5 2700.9324 5519.316 2698.2444 5559.75 2698.2444 C 5600.184 2698.2444 5633 2700.9324 5633 2704.2444 L 5633 2752.2444 C 5633 2755.5564 5600.184 2758.2444 5559.75 2758.2444 C 5519.316 2758.2444 5486.5 2755.5564 5486.5 2752.2444 M 5486.5 2704.2444 C 5486.5 2707.5564 5519.316 2710.2444 5559.75 2710.2444 C 5600.184 2710.2444 5633 2707.5564 5633 2704.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5491.5 2722.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Line_540">
<path d="M 5546.892 2758.152 C 5521.439 2822.9413 5472.4634 2980.7188 5537.3696 3108.504 C 5588.8655 3209.8875 5697.176 3263.116 5773.105 3289.1004" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_538">
<path d="M 5643.5 2632.1253 L 5643.5 2584.1253 C 5643.5 2580.8133 5676.316 2578.1253 5716.75 2578.1253 C 5757.184 2578.1253 5790 2580.8133 5790 2584.1253 L 5790 2632.1253 C 5790 2635.4373 5757.184 2638.1253 5716.75 2638.1253 C 5676.316 2638.1253 5643.5 2635.4373 5643.5 2632.1253 M 5643.5 2584.1253 C 5643.5 2587.4373 5676.316 2590.1253 5716.75 2590.1253 C 5757.184 2590.1253 5790 2587.4373 5790 2584.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5648.5 2601.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_537">
<line x1="5678.681" y1="2637.2515" x2="5605.682" y2="2693.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_536">
<line x1="5750.677" y1="2637.4436" x2="5814.333" y2="2692.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_529" filter="url(#Shadow)">
<path d="M 5679 2901.1253 L 5679 2853.1253 C 5679 2849.8133 5711.816 2847.1253 5752.25 2847.1253 C 5792.684 2847.1253 5825.5 2849.8133 5825.5 2853.1253 L 5825.5 2901.1253 C 5825.5 2904.4373 5792.684 2907.1253 5752.25 2907.1253 C 5711.816 2907.1253 5679 2904.4373 5679 2901.1253" fill="#fffbf1"/>
<path d="M 5679 2901.1253 L 5679 2853.1253 C 5679 2849.8133 5711.816 2847.1253 5752.25 2847.1253 C 5792.684 2847.1253 5825.5 2849.8133 5825.5 2853.1253 L 5825.5 2901.1253 C 5825.5 2904.4373 5792.684 2907.1253 5752.25 2907.1253 C 5711.816 2907.1253 5679 2904.4373 5679 2901.1253 M 5679 2853.1253 C 5679 2856.4373 5711.816 2859.1253 5752.25 2859.1253 C 5792.684 2859.1253 5825.5 2856.4373 5825.5 2853.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5684 2870.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_528">
<line x1="5835.063" y1="2758.0015" x2="5778.588" y2="2839.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_527">
<path d="M 5902.688 2756.8497 C 5962.856 2797.215 6059.5 2876.169 6059.5 2966.8747 C 6059.5 3050.2663 5977.8135 3118.7617 5917.885 3157.7917" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_557">
<path d="M 5891.5 2895.5253 L 5891.5 2858.7253 C 5891.5 2856.186 5913.34 2854.1253 5940.25 2854.1253 C 5967.16 2854.1253 5989 2856.186 5989 2858.7253 L 5989 2895.5253 C 5989 2898.0645 5967.16 2900.1253 5940.25 2900.1253 C 5913.34 2900.1253 5891.5 2898.0645 5891.5 2895.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 5891.5 2895.5253 L 5891.5 2858.7253 C 5891.5 2856.186 5913.34 2854.1253 5940.25 2854.1253 C 5967.16 2854.1253 5989 2856.186 5989 2858.7253 L 5989 2895.5253 C 5989 2898.0645 5967.16 2900.1253 5940.25 2900.1253 C 5913.34 2900.1253 5891.5 2898.0645 5891.5 2895.5253 M 5891.5 2858.7253 C 5891.5 2861.2645 5913.34 2863.3253 5940.25 2863.3253 C 5967.16 2863.3253 5989 2861.2645 5989 2858.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5896.5 2872.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_558">
<line x1="5872.6854" y1="2758.083" x2="5922.4026" y2="2845.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_559">
<line x1="5930.48" y1="2900.0327" x2="5872.429" y2="3036.144" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
<g id="Graphic_692">
<ellipse cx="5688.75" cy="2970.5978" rx="42.2500675113558" ry="19.2857451023942" fill="#fffbf1"/>
<ellipse cx="5688.75" cy="2970.5978" rx="42.2500675113558" ry="19.2857451023942" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5659.95 2962.0978)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan>
</text>
</g>
<g id="Line_691">
<line x1="5732.027" y1="2906.8934" x2="5706.8295" y2="2943.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_690">
<ellipse cx="5819.75" cy="2970.1635" rx="42.2500675113555" ry="18.8514574734569" fill="#fffbf1"/>
<ellipse cx="5819.75" cy="2970.1635" rx="42.2500675113555" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(5790.95 2961.9675)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan>
</text>
</g>
<g id="Line_689">
<line x1="5767.667" y1="2910.5" x2="5797.9014" y2="2945.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_688">
<line x1="5827.1276" y1="2988.727" x2="5845.564" y2="3035.116" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_693">
<line x1="5716.042" y1="2985.321" x2="5817.954" y2="3040.2996" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="2488 2509 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="2413.55" y="2424.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_759">
<g id="Graphic_758"/>
<g id="Graphic_757">
<path d="M 2874.5 2723.2444 L 2874.5 2675.2444 C 2874.5 2671.9324 2907.316 2669.2444 2947.75 2669.2444 C 2988.184 2669.2444 3021 2671.9324 3021 2675.2444 L 3021 2723.2444 C 3021 2726.5564 2988.184 2729.2444 2947.75 2729.2444 C 2907.316 2729.2444 2874.5 2726.5564 2874.5 2723.2444" fill="#ffeabb"/>
<path d="M 2874.5 2723.2444 L 2874.5 2675.2444 C 2874.5 2671.9324 2907.316 2669.2444 2947.75 2669.2444 C 2988.184 2669.2444 3021 2671.9324 3021 2675.2444 L 3021 2723.2444 C 3021 2726.5564 2988.184 2729.2444 2947.75 2729.2444 C 2907.316 2729.2444 2874.5 2726.5564 2874.5 2723.2444 M 2874.5 2675.2444 C 2874.5 2678.5564 2907.316 2681.2444 2947.75 2681.2444 C 2988.184 2681.2444 3021 2678.5564 3021 2675.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2879.5 2693.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_756">
<path d="M 2578.5 2723.2444 L 2578.5 2675.2444 C 2578.5 2671.9324 2611.316 2669.2444 2651.75 2669.2444 C 2692.184 2669.2444 2725 2671.9324 2725 2675.2444 L 2725 2723.2444 C 2725 2726.5564 2692.184 2729.2444 2651.75 2729.2444 C 2611.316 2729.2444 2578.5 2726.5564 2578.5 2723.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 2578.5 2723.2444 L 2578.5 2675.2444 C 2578.5 2671.9324 2611.316 2669.2444 2651.75 2669.2444 C 2692.184 2669.2444 2725 2671.9324 2725 2675.2444 L 2725 2723.2444 C 2725 2726.5564 2692.184 2729.2444 2651.75 2729.2444 C 2611.316 2729.2444 2578.5 2726.5564 2578.5 2723.2444 M 2578.5 2675.2444 C 2578.5 2678.5564 2611.316 2681.2444 2651.75 2681.2444 C 2692.184 2681.2444 2725 2678.5564 2725 2675.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2583.5 2693.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Graphic_755">
<path d="M 2735.5 2603.1253 L 2735.5 2555.1253 C 2735.5 2551.8133 2768.316 2549.1253 2808.75 2549.1253 C 2849.184 2549.1253 2882 2551.8133 2882 2555.1253 L 2882 2603.1253 C 2882 2606.4373 2849.184 2609.1253 2808.75 2609.1253 C 2768.316 2609.1253 2735.5 2606.4373 2735.5 2603.1253 M 2735.5 2555.1253 C 2735.5 2558.4373 2768.316 2561.1253 2808.75 2561.1253 C 2849.184 2561.1253 2882 2558.4373 2882 2555.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2740.5 2572.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_754">
<line x1="2770.681" y1="2608.2515" x2="2697.6817" y2="2664.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_753">
<line x1="2842.6767" y1="2608.4436" x2="2906.3327" y2="2663.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_752" filter="url(#Shadow)">
<path d="M 2771 2872.1253 L 2771 2824.1253 C 2771 2820.8133 2803.816 2818.1253 2844.25 2818.1253 C 2884.684 2818.1253 2917.5 2820.8133 2917.5 2824.1253 L 2917.5 2872.1253 C 2917.5 2875.4373 2884.684 2878.1253 2844.25 2878.1253 C 2803.816 2878.1253 2771 2875.4373 2771 2872.1253" fill="#fffbf1"/>
<path d="M 2771 2872.1253 L 2771 2824.1253 C 2771 2820.8133 2803.816 2818.1253 2844.25 2818.1253 C 2884.684 2818.1253 2917.5 2820.8133 2917.5 2824.1253 L 2917.5 2872.1253 C 2917.5 2875.4373 2884.684 2878.1253 2844.25 2878.1253 C 2803.816 2878.1253 2771 2875.4373 2771 2872.1253 M 2771 2824.1253 C 2771 2827.4373 2803.816 2830.1253 2844.25 2830.1253 C 2884.684 2830.1253 2917.5 2827.4373 2917.5 2824.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2776 2841.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_751">
<line x1="2927.0633" y1="2729.0015" x2="2870.5877" y2="2810.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_750">
<path d="M 2983.5 2866.5253 L 2983.5 2829.7253 C 2983.5 2827.186 3005.34 2825.1253 3032.25 2825.1253 C 3059.16 2825.1253 3081 2827.186 3081 2829.7253 L 3081 2866.5253 C 3081 2869.0645 3059.16 2871.1253 3032.25 2871.1253 C 3005.34 2871.1253 2983.5 2869.0645 2983.5 2866.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 2983.5 2866.5253 L 2983.5 2829.7253 C 2983.5 2827.186 3005.34 2825.1253 3032.25 2825.1253 C 3059.16 2825.1253 3081 2827.186 3081 2829.7253 L 3081 2866.5253 C 3081 2869.0645 3059.16 2871.1253 3032.25 2871.1253 C 3005.34 2871.1253 2983.5 2869.0645 2983.5 2866.5253 M 2983.5 2829.7253 C 2983.5 2832.2645 3005.34 2834.3253 3032.25 2834.3253 C 3059.16 2834.3253 3081 2832.2645 3081 2829.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2988.5 2843.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_749">
<line x1="2964.6854" y1="2729.083" x2="3014.4026" y2="2816.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_748">
<ellipse cx="2780.75" cy="2941.5978" rx="42.2500675113554" ry="19.2857451023942" fill="#fffbf1"/>
<ellipse cx="2780.75" cy="2941.5978" rx="42.2500675113554" ry="19.2857451023942" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2751.95 2933.0978)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan>
</text>
</g>
<g id="Line_747">
<line x1="2824.0272" y1="2877.8934" x2="2798.8295" y2="2914.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="4478 2555 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="4403.55" y="2470.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_722">
<g id="Group_703">
<g id="Graphic_721"/>
<g id="Graphic_719">
<path d="M 4866.5 3062.2505 L 5009 3062.2505 C 5010.1046 3062.2505 5011 3063.146 5011 3064.2505 L 5011 3120.2505 C 5011 3121.355 5010.1046 3122.2505 5009 3122.2505 L 4866.5 3122.2505 C 4865.3954 3122.2505 4864.5 3121.355 4864.5 3120.2505 L 4864.5 3064.2505 C 4864.5 3063.146 4865.3954 3062.2505 4866.5 3062.2505 Z" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 4866.5 3062.2505 L 5009 3062.2505 C 5010.1046 3062.2505 5011 3063.146 5011 3064.2505 L 5011 3120.2505 C 5011 3121.355 5010.1046 3122.2505 5009 3122.2505 L 4866.5 3122.2505 C 4865.3954 3122.2505 4864.5 3121.355 4864.5 3120.2505 L 4864.5 3064.2505 C 4864.5 3063.146 4865.3954 3062.2505 4866.5 3062.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4869.5 3083.0265)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan>
</text>
</g>
<g id="Graphic_715">
<path d="M 4864.5 2769.2444 L 4864.5 2721.2444 C 4864.5 2717.9324 4897.316 2715.2444 4937.75 2715.2444 C 4978.184 2715.2444 5011 2717.9324 5011 2721.2444 L 5011 2769.2444 C 5011 2772.5564 4978.184 2775.2444 4937.75 2775.2444 C 4897.316 2775.2444 4864.5 2772.5564 4864.5 2769.2444" fill="#ffeabb"/>
<path d="M 4864.5 2769.2444 L 4864.5 2721.2444 C 4864.5 2717.9324 4897.316 2715.2444 4937.75 2715.2444 C 4978.184 2715.2444 5011 2717.9324 5011 2721.2444 L 5011 2769.2444 C 5011 2772.5564 4978.184 2775.2444 4937.75 2775.2444 C 4897.316 2775.2444 4864.5 2772.5564 4864.5 2769.2444 M 4864.5 2721.2444 C 4864.5 2724.5564 4897.316 2727.2444 4937.75 2727.2444 C 4978.184 2727.2444 5011 2724.5564 5011 2721.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4869.5 2739.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_714">
<path d="M 4568.5 2769.2444 L 4568.5 2721.2444 C 4568.5 2717.9324 4601.316 2715.2444 4641.75 2715.2444 C 4682.184 2715.2444 4715 2717.9324 4715 2721.2444 L 4715 2769.2444 C 4715 2772.5564 4682.184 2775.2444 4641.75 2775.2444 C 4601.316 2775.2444 4568.5 2772.5564 4568.5 2769.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 4568.5 2769.2444 L 4568.5 2721.2444 C 4568.5 2717.9324 4601.316 2715.2444 4641.75 2715.2444 C 4682.184 2715.2444 4715 2717.9324 4715 2721.2444 L 4715 2769.2444 C 4715 2772.5564 4682.184 2775.2444 4641.75 2775.2444 C 4601.316 2775.2444 4568.5 2772.5564 4568.5 2769.2444 M 4568.5 2721.2444 C 4568.5 2724.5564 4601.316 2727.2444 4641.75 2727.2444 C 4682.184 2727.2444 4715 2724.5564 4715 2721.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4573.5 2739.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Graphic_712">
<path d="M 4725.5 2649.1253 L 4725.5 2601.1253 C 4725.5 2597.8133 4758.316 2595.1253 4798.75 2595.1253 C 4839.184 2595.1253 4872 2597.8133 4872 2601.1253 L 4872 2649.1253 C 4872 2652.4373 4839.184 2655.1253 4798.75 2655.1253 C 4758.316 2655.1253 4725.5 2652.4373 4725.5 2649.1253 M 4725.5 2601.1253 C 4725.5 2604.4373 4758.316 2607.1253 4798.75 2607.1253 C 4839.184 2607.1253 4872 2604.4373 4872 2601.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4730.5 2618.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_711">
<line x1="4760.681" y1="2654.2515" x2="4687.6817" y2="2710.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_710">
<line x1="4832.6767" y1="2654.4436" x2="4896.333" y2="2709.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_709" filter="url(#Shadow)">
<path d="M 4761 2918.1253 L 4761 2870.1253 C 4761 2866.8133 4793.816 2864.1253 4834.25 2864.1253 C 4874.684 2864.1253 4907.5 2866.8133 4907.5 2870.1253 L 4907.5 2918.1253 C 4907.5 2921.4373 4874.684 2924.1253 4834.25 2924.1253 C 4793.816 2924.1253 4761 2921.4373 4761 2918.1253" fill="#fffbf1"/>
<path d="M 4761 2918.1253 L 4761 2870.1253 C 4761 2866.8133 4793.816 2864.1253 4834.25 2864.1253 C 4874.684 2864.1253 4907.5 2866.8133 4907.5 2870.1253 L 4907.5 2918.1253 C 4907.5 2921.4373 4874.684 2924.1253 4834.25 2924.1253 C 4793.816 2924.1253 4761 2921.4373 4761 2918.1253 M 4761 2870.1253 C 4761 2873.4373 4793.816 2876.1253 4834.25 2876.1253 C 4874.684 2876.1253 4907.5 2873.4373 4907.5 2870.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4766 2887.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_708">
<line x1="4917.063" y1="2775.0015" x2="4860.588" y2="2856.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_706">
<path d="M 4973.5 2912.5253 L 4973.5 2875.7253 C 4973.5 2873.186 4995.34 2871.1253 5022.25 2871.1253 C 5049.16 2871.1253 5071 2873.186 5071 2875.7253 L 5071 2912.5253 C 5071 2915.0645 5049.16 2917.1253 5022.25 2917.1253 C 4995.34 2917.1253 4973.5 2915.0645 4973.5 2912.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 4973.5 2912.5253 L 4973.5 2875.7253 C 4973.5 2873.186 4995.34 2871.1253 5022.25 2871.1253 C 5049.16 2871.1253 5071 2873.186 5071 2875.7253 L 5071 2912.5253 C 5071 2915.0645 5049.16 2917.1253 5022.25 2917.1253 C 4995.34 2917.1253 4973.5 2915.0645 4973.5 2912.5253 M 4973.5 2875.7253 C 4973.5 2878.2645 4995.34 2880.3253 5022.25 2880.3253 C 5049.16 2880.3253 5071 2878.2645 5071 2875.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4978.5 2889.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_705">
<line x1="4954.6854" y1="2775.083" x2="5004.4026" y2="2862.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_704">
<line x1="5012.48" y1="2917.0327" x2="4954.429" y2="3053.144" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
<g id="Graphic_702">
<ellipse cx="4770.75" cy="2987.5978" rx="42.2500675113553" ry="19.2857451023941" fill="#fffbf1"/>
<ellipse cx="4770.75" cy="2987.5978" rx="42.2500675113553" ry="19.2857451023941" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4741.95 2979.0978)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan>
</text>
</g>
<g id="Line_701">
<line x1="4814.027" y1="2923.8934" x2="4788.8295" y2="2960.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_700">
<ellipse cx="4901.75" cy="2987.1635" rx="42.2500675113555" ry="18.8514574734569" fill="#fffbf1"/>
<ellipse cx="4901.75" cy="2987.1635" rx="42.2500675113555" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(4872.95 2978.9675)" fill="black">
<tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan>
</text>
</g>
<g id="Line_699">
<line x1="4849.6667" y1="2927.5" x2="4879.9014" y2="2962.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_698">
<line x1="4909.1276" y1="3005.727" x2="4927.564" y2="3052.116" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_697">
<line x1="4798.042" y1="3002.321" x2="4899.9537" y2="3057.2996" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="553 2515 744.5 416" width="744.5" height="416">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="478.55" y="2473.4">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_795">
<g id="Graphic_794"/>
<g id="Graphic_793">
<path d="M 939.5 2729.2444 L 939.5 2681.2444 C 939.5 2677.9324 972.316 2675.2444 1012.75 2675.2444 C 1053.184 2675.2444 1086 2677.9324 1086 2681.2444 L 1086 2729.2444 C 1086 2732.5564 1053.184 2735.2444 1012.75 2735.2444 C 972.316 2735.2444 939.5 2732.5564 939.5 2729.2444" fill="#ffeabb"/>
<path d="M 939.5 2729.2444 L 939.5 2681.2444 C 939.5 2677.9324 972.316 2675.2444 1012.75 2675.2444 C 1053.184 2675.2444 1086 2677.9324 1086 2681.2444 L 1086 2729.2444 C 1086 2732.5564 1053.184 2735.2444 1012.75 2735.2444 C 972.316 2735.2444 939.5 2732.5564 939.5 2729.2444 M 939.5 2681.2444 C 939.5 2684.5564 972.316 2687.2444 1012.75 2687.2444 C 1053.184 2687.2444 1086 2684.5564 1086 2681.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(944.5 2699.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_792">
<path d="M 643.5 2729.2444 L 643.5 2681.2444 C 643.5 2677.9324 676.316 2675.2444 716.75 2675.2444 C 757.184 2675.2444 790 2677.9324 790 2681.2444 L 790 2729.2444 C 790 2732.5564 757.184 2735.2444 716.75 2735.2444 C 676.316 2735.2444 643.5 2732.5564 643.5 2729.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 643.5 2729.2444 L 643.5 2681.2444 C 643.5 2677.9324 676.316 2675.2444 716.75 2675.2444 C 757.184 2675.2444 790 2677.9324 790 2681.2444 L 790 2729.2444 C 790 2732.5564 757.184 2735.2444 716.75 2735.2444 C 676.316 2735.2444 643.5 2732.5564 643.5 2729.2444 M 643.5 2681.2444 C 643.5 2684.5564 676.316 2687.2444 716.75 2687.2444 C 757.184 2687.2444 790 2684.5564 790 2681.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(648.5 2699.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Graphic_791">
<path d="M 800.5 2609.1253 L 800.5 2561.1253 C 800.5 2557.8133 833.316 2555.1253 873.75 2555.1253 C 914.184 2555.1253 947 2557.8133 947 2561.1253 L 947 2609.1253 C 947 2612.4373 914.184 2615.1253 873.75 2615.1253 C 833.316 2615.1253 800.5 2612.4373 800.5 2609.1253 M 800.5 2561.1253 C 800.5 2564.4373 833.316 2567.1253 873.75 2567.1253 C 914.184 2567.1253 947 2564.4373 947 2561.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(805.5 2578.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_790">
<line x1="835.681" y1="2614.2515" x2="762.6817" y2="2670.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_789">
<line x1="907.6767" y1="2614.4436" x2="971.3327" y2="2669.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_788" filter="url(#Shadow)">
<path d="M 836 2878.1253 L 836 2830.1253 C 836 2826.8133 868.816 2824.1253 909.25 2824.1253 C 949.684 2824.1253 982.5 2826.8133 982.5 2830.1253 L 982.5 2878.1253 C 982.5 2881.4373 949.684 2884.1253 909.25 2884.1253 C 868.816 2884.1253 836 2881.4373 836 2878.1253" fill="#fffbf1"/>
<path d="M 836 2878.1253 L 836 2830.1253 C 836 2826.8133 868.816 2824.1253 909.25 2824.1253 C 949.684 2824.1253 982.5 2826.8133 982.5 2830.1253 L 982.5 2878.1253 C 982.5 2881.4373 949.684 2884.1253 909.25 2884.1253 C 868.816 2884.1253 836 2881.4373 836 2878.1253 M 836 2830.1253 C 836 2833.4373 868.816 2836.1253 909.25 2836.1253 C 949.684 2836.1253 982.5 2833.4373 982.5 2830.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(841 2847.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_787">
<line x1="992.0633" y1="2735.0015" x2="935.5877" y2="2816.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_786">
<path d="M 1048.5 2872.5253 L 1048.5 2835.7253 C 1048.5 2833.186 1070.34 2831.1253 1097.25 2831.1253 C 1124.16 2831.1253 1146 2833.186 1146 2835.7253 L 1146 2872.5253 C 1146 2875.0645 1124.16 2877.1253 1097.25 2877.1253 C 1070.34 2877.1253 1048.5 2875.0645 1048.5 2872.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 1048.5 2872.5253 L 1048.5 2835.7253 C 1048.5 2833.186 1070.34 2831.1253 1097.25 2831.1253 C 1124.16 2831.1253 1146 2833.186 1146 2835.7253 L 1146 2872.5253 C 1146 2875.0645 1124.16 2877.1253 1097.25 2877.1253 C 1070.34 2877.1253 1048.5 2875.0645 1048.5 2872.5253 M 1048.5 2835.7253 C 1048.5 2838.2645 1070.34 2840.3253 1097.25 2840.3253 C 1124.16 2840.3253 1146 2838.2645 1146 2835.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1053.5 2849.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_785">
<line x1="1029.6854" y1="2735.083" x2="1079.4026" y2="2822.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="1527 2417 744.5 847.1253" width="744.5" height="847.1253">
<defs>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
<filter id="Shadow" filterUnits="userSpaceOnUse" x="1452.55" y="2332.2875">
<feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/>
<feOffset in="blur" result="offset" dx="0" dy="2"/>
<feFlood flood-color="black" flood-opacity=".5" result="flood"/>
<feComposite in="flood" in2="offset" operator="in" result="color"/>
<feMerge>
<feMergeNode in="color"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker_2" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black">
<g>
<path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/>
</g>
</marker>
</defs>
<g id="Canvas_1" fill-opacity="1" stroke="none" stroke-opacity="1" fill="none" stroke-dasharray="none">
<title>Canvas 1</title>
<g id="Canvas_1_Layer_1">
<title>Layer 1</title>
<g id="Group_684">
<g id="Graphic_683"/>
<g id="Graphic_682">
<path d="M 1913.5 2631.2444 L 1913.5 2583.2444 C 1913.5 2579.9324 1946.316 2577.2444 1986.75 2577.2444 C 2027.184 2577.2444 2060 2579.9324 2060 2583.2444 L 2060 2631.2444 C 2060 2634.5564 2027.184 2637.2444 1986.75 2637.2444 C 1946.316 2637.2444 1913.5 2634.5564 1913.5 2631.2444" fill="#ffeabb"/>
<path d="M 1913.5 2631.2444 L 1913.5 2583.2444 C 1913.5 2579.9324 1946.316 2577.2444 1986.75 2577.2444 C 2027.184 2577.2444 2060 2579.9324 2060 2583.2444 L 2060 2631.2444 C 2060 2634.5564 2027.184 2637.2444 1986.75 2637.2444 C 1946.316 2637.2444 1913.5 2634.5564 1913.5 2631.2444 M 1913.5 2583.2444 C 1913.5 2586.5564 1946.316 2589.2444 1986.75 2589.2444 C 2027.184 2589.2444 2060 2586.5564 2060 2583.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1918.5 2601.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan>
</text>
</g>
<g id="Graphic_681">
<path d="M 1617.5 2631.2444 L 1617.5 2583.2444 C 1617.5 2579.9324 1650.316 2577.2444 1690.75 2577.2444 C 1731.184 2577.2444 1764 2579.9324 1764 2583.2444 L 1764 2631.2444 C 1764 2634.5564 1731.184 2637.2444 1690.75 2637.2444 C 1650.316 2637.2444 1617.5 2634.5564 1617.5 2631.2444" fill="#7a81ff" fill-opacity=".181819"/>
<path d="M 1617.5 2631.2444 L 1617.5 2583.2444 C 1617.5 2579.9324 1650.316 2577.2444 1690.75 2577.2444 C 1731.184 2577.2444 1764 2579.9324 1764 2583.2444 L 1764 2631.2444 C 1764 2634.5564 1731.184 2637.2444 1690.75 2637.2444 C 1650.316 2637.2444 1617.5 2634.5564 1617.5 2631.2444 M 1617.5 2583.2444 C 1617.5 2586.5564 1650.316 2589.2444 1690.75 2589.2444 C 1731.184 2589.2444 1764 2586.5564 1764 2583.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1622.5 2601.0204)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan>
</text>
</g>
<g id="Graphic_680">
<path d="M 1774.5 2511.1253 L 1774.5 2463.1253 C 1774.5 2459.8133 1807.316 2457.1253 1847.75 2457.1253 C 1888.184 2457.1253 1921 2459.8133 1921 2463.1253 L 1921 2511.1253 C 1921 2514.4373 1888.184 2517.1253 1847.75 2517.1253 C 1807.316 2517.1253 1774.5 2514.4373 1774.5 2511.1253 M 1774.5 2463.1253 C 1774.5 2466.4373 1807.316 2469.1253 1847.75 2469.1253 C 1888.184 2469.1253 1921 2466.4373 1921 2463.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1779.5 2480.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan>
</text>
</g>
<g id="Line_679">
<line x1="1809.681" y1="2516.2515" x2="1736.6817" y2="2572.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Line_678">
<line x1="1881.6767" y1="2516.4436" x2="1945.3327" y2="2571.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_675" filter="url(#Shadow)">
<path d="M 1810 2780.1253 L 1810 2732.1253 C 1810 2728.8133 1842.816 2726.1253 1883.25 2726.1253 C 1923.684 2726.1253 1956.5 2728.8133 1956.5 2732.1253 L 1956.5 2780.1253 C 1956.5 2783.4373 1923.684 2786.1253 1883.25 2786.1253 C 1842.816 2786.1253 1810 2783.4373 1810 2780.1253" fill="#fffbf1"/>
<path d="M 1810 2780.1253 L 1810 2732.1253 C 1810 2728.8133 1842.816 2726.1253 1883.25 2726.1253 C 1923.684 2726.1253 1956.5 2728.8133 1956.5 2732.1253 L 1956.5 2780.1253 C 1956.5 2783.4373 1923.684 2786.1253 1883.25 2786.1253 C 1842.816 2786.1253 1810 2783.4373 1810 2780.1253 M 1810 2732.1253 C 1810 2735.4373 1842.816 2738.1253 1883.25 2738.1253 C 1923.684 2738.1253 1956.5 2735.4373 1956.5 2732.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(1815 2749.9013)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan>
</text>
</g>
<g id="Line_674">
<line x1="1966.0633" y1="2637.0015" x2="1909.5877" y2="2718.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
<g id="Graphic_673">
<path d="M 2022.5 2774.5253 L 2022.5 2737.7253 C 2022.5 2735.186 2044.34 2733.1253 2071.25 2733.1253 C 2098.16 2733.1253 2120 2735.186 2120 2737.7253 L 2120 2774.5253 C 2120 2777.0645 2098.16 2779.1253 2071.25 2779.1253 C 2044.34 2779.1253 2022.5 2777.0645 2022.5 2774.5253" fill="#7a81ff" fill-opacity=".08"/>
<path d="M 2022.5 2774.5253 L 2022.5 2737.7253 C 2022.5 2735.186 2044.34 2733.1253 2071.25 2733.1253 C 2098.16 2733.1253 2120 2735.186 2120 2737.7253 L 2120 2774.5253 C 2120 2777.0645 2098.16 2779.1253 2071.25 2779.1253 C 2044.34 2779.1253 2022.5 2777.0645 2022.5 2774.5253 M 2022.5 2737.7253 C 2022.5 2740.2645 2044.34 2742.3253 2071.25 2742.3253 C 2098.16 2742.3253 2120 2740.2645 2120 2737.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
<text transform="translate(2027.5 2751.0773)" fill="black">
<tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan>
</text>
</g>
<g id="Line_672">
<line x1="2003.6854" y1="2637.083" x2="2053.4026" y2="2724.68" marker-end="url(#FilledArrow_Marker_2)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -0,0 +1 @@
../../_extensions

View File

@ -1,5 +1,5 @@
--- ---
title: "正则表达式" title: "大数据分析工具"
subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution
author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心
date: today date: today
@ -144,6 +144,20 @@ babynames |>
![](../../image/data-science/transform.png) ![](../../image/data-science/transform.png)
## GNU/Linux服务器
- `ssh`, `scp`
- `bash`
- grep
- sed
- awk
- find
- xargs
- `Editor`
- `Virtual Studio Code`
- `Vim`
- `Emacs`
## 欢迎讨论!{.center} ## 欢迎讨论!{.center}

80
coding/lesson9.qmd Normal file
View File

@ -0,0 +1,80 @@
---
title: 第9次课练习
---
```{r}
require(tidyverse)
# require(ggplot2)
require(palmerpenguins)
penguins |>
select(species, flipper_length_mm, body_mass_g,
bill_length_mm, sex) |>
filter(!is.na(sex)) |>
ggplot(aes(
x = species,
y = body_mass_g
)) +
geom_jitter(colour = "white",
fill = "gray80", size = 1, shape = 21, width = 0.4) +
geom_violin(fill = "orange", alpha = 0.4) +
stat_summary(fun = mean) +
scale_size_continuous(range = c(.5, 2)) +
# ggsci::scale_fill_d3() +
ylab("Body mass (g)") +
ggtitle("Body mass and flipper length") +
theme(axis.text.x = element_text(angle = 90),
panel.background = element_rect(fill = NA)
)
ggplot2::last_plot()
ggsave("../img/penguins.pdf", width = 4, heigh = 3)
+
dwfun::theme_sci(5, 5)
p1 <- ggplot(penguins, aes(x = island, fill = species)) +
geom_bar(position = "fill")
p2 <- ggplot(penguins, aes(x = species, fill = island)) +
geom_bar(position = "fill")
require(patchwork)
((p1 / p2) | p1)
```
# 消光系数
```{r}
licordata <- readRDS("../data/licordata.RDS")
require(tidyverse)
licordata |>
group_by(date, site) |>
nest(.key = "lightdf") |>
mutate(m = purrr::map(
lightdf,
~ (lm(log(UP + 1) ~ depth, data = .x))
)) |>
mutate(k = purrr::map_dbl(m, ~
-coef(.x)[2])) |>
ggplot(aes(date, k)) +
geom_point(aes(fill = site))
Iz = I0 * exp(-zk)
```

Binary file not shown.

BIN
img/penguins.pdf Normal file

Binary file not shown.