diff --git a/index.html b/index.html index 269cb59ce1..c75d0b8acf 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,6 @@ ReVISit - - diff --git a/libraryDocGenerator.cjs b/libraryDocGenerator.cjs index 41b4c09458..0d7b654966 100644 --- a/libraryDocGenerator.cjs +++ b/libraryDocGenerator.cjs @@ -9,25 +9,6 @@ const path = require('path'); const generateMd = (library, libraryConfig, forDocs) => ` # ${library} -${forDocs ? - `import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLinks.tsx'; - - ` : ''} - ${!forDocs ? `This is an example study of the library \`${library}\`.` : ''} ${libraryConfig.description} @@ -51,6 +32,26 @@ ${Object.keys(libraryConfig.sequences).length > 0 : 'None'} ${libraryConfig.additionalDescription ? `## Additional Description\n\n${libraryConfig.additionalDescription}` : ''} + +${forDocs ? + `` + `import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLinks.tsx'; + + ` : ''} `; const librariesPath = path.join(__dirname, './public/libraries'); diff --git a/package.json b/package.json index bc2b957736..60d1c5cddd 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "generate-schemas": "yarn generate-schema:StudyConfig && yarn generate-schema:GlobalConfig && yarn generate-schema:LibraryConfig", "test": "playwright test", "unittest": "vitest", - "preinstall": "node -e 'if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error(\"Use yarn\")'", + "preinstall": "node -e \"if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error('Use yarn')\"", "postinstall": "husky" }, "lint-staged": { diff --git a/public/demo-survey/config.json b/public/demo-survey/config.json index 3f2c8129f3..c4933fd536 100644 --- a/public/demo-survey/config.json +++ b/public/demo-survey/config.json @@ -210,8 +210,11 @@ "Option 2", "Option 3", "Option 4" - ], - "withDivider": true + ] + }, + { + "id": "divider1", + "type": "divider" }, { "id": "matrixHeaderTitle", @@ -227,8 +230,11 @@ "type": "likert", "numItems": 9, "rightLabel": "Like", - "leftLabel": "Dislike", - "withDivider": true + "leftLabel": "Dislike" + }, + { + "id": "divider2", + "type": "divider" }, { "id": "q-multi-satisfaction", @@ -382,7 +388,8 @@ { "id": "textField", "type": "textOnly", - "prompt": "# Randomizing Questions in a Form\n\n This shows how to randomize the order of questions in the form. Notice how the number before each question is different from the order number specified in the text. Note that currently the title is also randomized; you can avoid that by putting the title in a markdown file and adding the questions as a response." + "prompt": "# Randomizing Questions in a Form\n\n This shows how to randomize the order of questions in the form. Notice how the number before each question is different from the order number specified in the text. Note that currently the title is not randomized; you can exclude a form element from being randomized if you need to.", + "excludeFromRandomization": true }, { "id": "q-dropdown", @@ -645,7 +652,11 @@ "Option 2", "Option 3" ], - "withDivider": true, + "location": "sidebar" + }, + { + "id": "divider", + "type": "divider", "location": "sidebar" }, { diff --git a/public/global.json b/public/global.json index bd7d94346d..5b4b78ea8e 100644 --- a/public/global.json +++ b/public/global.json @@ -2,6 +2,7 @@ "$schema": "https://raw.githubusercontent.com/revisit-studies/study/v2.3.1/src/parser/GlobalConfigSchema.json", "configsList": [ "tutorial", + "tutorial-replication", "demo-html", "demo-html-input", "demo-screen-recording", @@ -54,6 +55,9 @@ "tutorial": { "path": "tutorial/config.json" }, + "tutorial-replication": { + "path": "tutorial/replication-config.json" + }, "demo-video-slider": { "path": "demo-video-slider/config.json" }, diff --git a/public/libraries/umux-lite/config.json b/public/libraries/umux-lite/config.json index e0453168f6..57129031c7 100644 --- a/public/libraries/umux-lite/config.json +++ b/public/libraries/umux-lite/config.json @@ -23,7 +23,7 @@ "required": true, "location": "aboveStimulus", "type": "likert", - "numItems": 5, + "numItems": 7, "rightLabel": "Strongly Agree", "leftLabel": "Strongly Disagree" } diff --git a/public/libraries/umux/config.json b/public/libraries/umux/config.json index 8adf26f3bf..4e0199c2ee 100644 --- a/public/libraries/umux/config.json +++ b/public/libraries/umux/config.json @@ -33,7 +33,7 @@ "required": true, "location": "aboveStimulus", "type": "likert", - "numItems": 5, + "numItems": 7, "rightLabel": "Strongly Agree", "leftLabel": "Strongly Disagree" }, diff --git a/public/revisitAssets/cssOverrides.css b/public/revisitAssets/cssOverrides.css deleted file mode 100644 index 74fba3e386..0000000000 --- a/public/revisitAssets/cssOverrides.css +++ /dev/null @@ -1,7 +0,0 @@ -.no-last-child-bottom-padding > *:last-child { - padding-bottom: 0 !important; -} - -.no-last-child-bottom-padding { - font-weight: 500; -} diff --git a/public/tutorial/_answers/config.json b/public/tutorial/_answers/config.json index 0e41e43163..ada3f46f71 100644 --- a/public/tutorial/_answers/config.json +++ b/public/tutorial/_answers/config.json @@ -58,8 +58,12 @@ "secondaryText": "1 being the worst health and 5 being the best health", "numItems": 5, "rightLabel": "Best health", - "leftLabel": "Worst health", - "withDivider": true + "leftLabel": "Worst health" + }, + { + "id": "dividerResponse", + "type": "divider", + "location": "belowStimulus" }, { "id": "fruits", diff --git a/public/tutorial/_answers/replication-config.json b/public/tutorial/_answers/replication-config.json new file mode 100644 index 0000000000..51ca344d0d --- /dev/null +++ b/public/tutorial/_answers/replication-config.json @@ -0,0 +1,98 @@ +{ + "$schema": "https://raw.githubusercontent.com/revisit-studies/study/main/src/parser/StudyConfigSchema.json", + "studyMetadata": { + "title": "Scatter Plot JND Study", + "version": "pilot", + "authors": ["The reVISit Team"], + "date": "2025-11-02", + "description": "This is a reVISit variation study of JND(Just Noticeable Difference) Scatter Plot experiment.", + "organizations": ["University of Utah", "WPI", "University of Toronto"] + }, + "uiConfig": { + "contactEmail": "contact@revisit.dev", + "helpTextPath": "ScatterJND-study/assets/help.md", + "logoPath": "revisitAssets/revisitLogoSquare.svg", + "withProgressBar": true, + "autoDownloadStudy": false, + "withSidebar": false, + "urlParticipantIdParam": "PROLIFIC_PID", + "studyEndMsg": "**Thank you for completing the study. You may click this link and return to Prolific**: [https://app.prolific.com/submissions/complete?cc=C1E35XG4](https://app.prolific.com/submissions/complete?cc=C1E35XG4)", + "participantNameField": "introduction.prolificId" + }, + "baseComponents": { + "scatterBase": { + "type": "react-component", + "path": "tutorial/assets/replication/ScatterWrapper.tsx", + "response": [ + { + "id": "buttonsResponse", + "type": "buttons", + "prompt": "Choose the plot with the higher correlation:", + "required": true, + "location": "belowStimulus", + "options": [ + { "label": "Left Plot", "value": "left" }, + { "label": "Right Plot", "value": "right" } + ] + } + ] + } + }, + "components": { + "practice T1 A:0.3 B:0.7": { + "baseComponent": "scatterBase", + "parameters": { "r1": 0.3, "r2": 0.7 }, + "correctAnswer": [ + { + "id": "buttonsResponse", + "answer": "right" + } + ], + "provideFeedback": true + }, + "practice T2 A:0.9 B:0.6": { + "baseComponent": "scatterBase", + "parameters": { "r1": 0.9, "r2": 0.6 }, + "correctAnswer": [ + { + "id": "buttonsResponse", + "answer": "left" + } + ], + "provideFeedback": true + }, + "practice T3 A:0.6 B:0.3": { + "baseComponent": "scatterBase", + "parameters": { "r1": 0.6, "r2": 0.3 }, + "correctAnswer": [ + { + "id": "buttonsResponse", + "answer": "left" + } + ], + "provideFeedback": true + }, + "trial": { + "baseComponent": "scatterBase" + } + }, + "sequence": { + "order": "fixed", + "components": [ + { + "order": "fixed", + "components": [ + "practice T1 A:0.3 B:0.7", + "practice T2 A:0.9 B:0.6", + "practice T3 A:0.6 B:0.3", + { + "order": "dynamic", + "id": "steppedSequence", + "functionPath": "tutorial/assets/replication/JNDDynamic.tsx", + "parameters": {} + } + ] + } + ] + } +} \ No newline at end of file diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.01_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.01_size_100.csv new file mode 100644 index 0000000000..e2bbed4794 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.01_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7657467824992704,0.5424244706602052 +0.24896990564833266,0.596016463279549 +0.6536759462864143,0.8659816768904268 +0.3454986069444592,0.3169279861737269 +0.7962343842202171,0.715719817590748 +0.08159626494308836,0.5167400021335604 +0.4000219974290167,0.8716800882582497 +0.8400576947831279,0.8663068332727201 +0.5229312397420354,0.05245094265522404 +0.9050201215464364,0.07255339943696709 +0.6161278223629086,0.5514333354782813 +0.9815877931844073,0.16206083914187147 +0.15154706320464623,0.9819260157581795 +0.197114705472761,0.24495235236669666 +0.30741549765901843,0.14214734431220727 +0.6494785112430307,0.20253329473388088 +0.4115426069316418,0.764948883588856 +0.026389128969788844,0.7636690113474339 +0.35543728333978897,0.8049916529784817 +0.7967333310818189,0.7219603326396377 +0.18312189585093241,0.5289762516786123 +0.7903437919785705,0.962359361117171 +0.1030494203764501,0.4308791299431962 +0.05578526179882404,0.12444737968956288 +0.32269140016581455,0.40321645329241873 +0.7203048595507633,0.3092373056141126 +0.17204072106795193,0.9105214856280264 +0.16084297990019464,0.8094139580885878 +0.7687048854376624,0.9766208718870357 +0.03333467661704148,0.9630158151312314 +0.06491243562422339,0.3838124421310085 +0.04317896299841595,0.31728087087642864 +0.6616188379461669,0.5914098907614027 +0.523801721156093,0.9274185002081827 +0.655036651168784,0.004189287094088501 +0.4427146836188345,0.4735415459768534 +0.7378355635170374,0.5404513424539649 +0.42177202287390547,0.36207714813438663 +0.44393616118802404,0.5573272756901971 +0.3170501246908126,0.7413412477171871 +0.5777811333653523,0.5871657086197467 +0.13500525876692204,0.870250809402342 +0.5023169679603186,0.7392332731664335 +0.6883168063710964,0.34857659994310364 +0.5679643277733037,0.7325453432083446 +0.37658450702688584,0.33179669163933717 +0.2354154291283343,0.9593466969162368 +0.700144399524123,0.9879593760589309 +0.535862318172654,0.3392771108857098 +0.6486591261518732,0.4537103770864269 +0.2749462000761026,0.6283844240443688 +0.6778871396355685,0.9729652297844131 +0.20038912112558277,0.4729406236591567 +0.4677262314730607,0.4869173686160264 +0.6499124249333578,0.9091898903410538 +0.06381765307357201,0.31404541748625586 +0.8671172284362902,0.5549483781762651 +0.9648876029609941,0.39648786135143876 +0.7199719978300658,0.9050319455428754 +0.8855111375125565,0.4986554782516897 +0.955197833756212,0.65915677323352 +0.3481203987133563,0.4515441891071906 +0.4587148334998594,0.7056058607819332 +0.5244152256240427,0.24748525385785208 +0.9737319591414219,0.5440910746231489 +0.29499536106207647,0.1870792009183725 +0.14587237832498023,0.9411309721204747 +0.0285795176745528,0.5461939216330591 +0.4179019193983302,0.2004019776285874 +0.37453264642051054,0.09659229390683 +0.6320125540614288,0.47640227115398226 +0.4956009749821084,0.33408419073975104 +0.0705851408412671,0.36684645678526007 +0.6663021930769579,0.3121465380886551 +0.4790904929423143,0.15825777709778455 +0.4125793648389263,0.5034251657458902 +0.12412004349103312,0.879440164861921 +0.9201658709518771,0.8525565014742342 +0.990894679961743,0.6568237619814425 +0.5878872304347014,0.3547393156557254 +0.8685862618894391,0.30051588666841805 +0.586310091077356,0.19474633579146683 +0.13783472754866122,0.8364934766167406 +0.13103658452283024,0.21221039769310568 +0.9077886396187774,0.6069372188940391 +0.5313111700411397,0.10605841120544746 +0.39657462166085555,0.5164321134504256 +0.26080100732775413,0.5097700218461452 +0.5461518513646695,0.08313335722318044 +0.019973942777406717,0.40250586158548296 +0.6665714253768542,0.6964678644088325 +0.4752810032571222,0.5586769322416516 +0.9510491830974189,0.5392822520631629 +0.10634876890798672,0.5574716055265564 +0.4018670674426562,0.2124392112875822 +0.732331548960142,0.8127681506181332 +0.27924067727702995,0.9333108424642316 +0.5031039374279557,0.8680818728985649 +0.6805731867066565,0.5862758828751972 +0.6315082425720733,0.8701307054605406 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.02_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.02_size_100.csv new file mode 100644 index 0000000000..b9a32509ce --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.02_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.0019238212003080957,0.10839523845427351 +0.08280135544658368,0.45764841460943906 +0.05051202262850646,0.328440443597553 +0.45961106714717614,0.4748750621915353 +0.09376563572605617,0.8328930642068135 +0.35647426039963104,0.23189115701521923 +0.30820811784756325,0.3713385449198583 +0.3640504628270108,0.9404080147621849 +0.7710533587381476,0.8773172727627752 +0.6097675873633562,0.008733698279625668 +0.5168143579206574,0.031049219424504004 +0.7854768488245538,0.9974068794532025 +0.3630815656122076,0.13520235652372242 +0.793532351380067,0.3849652359692804 +0.8073053234999485,0.009295798636341002 +0.03158107182267211,0.07791643404337478 +0.04632632908064038,0.07034040515866902 +0.3806973952600452,0.7284818669311487 +0.2412039425563281,0.9368246142925658 +0.5872153402614739,0.08670967900032178 +0.5875864364621554,0.0918929226663453 +0.5918790208483254,0.7475911721034498 +0.6710138494025149,0.6288241298178913 +0.8437623465324757,0.7766800086328194 +0.9078293026955668,0.18379033964451208 +0.40671698969160197,0.17542184445361214 +0.10254070905350876,0.4622143333838358 +0.1803763244179885,0.709552228293396 +0.20908640385865584,0.206702041231763 +0.039239403573244847,0.9535196974832341 +0.9190964827017931,0.9085761311418595 +0.5777735101347016,0.10812241627502067 +0.9244268087236407,0.839572084668457 +0.9087760640044611,0.4044241395581803 +0.010143516513521078,0.601956518923689 +0.13478838638025714,0.036612011676850575 +0.16615387535293874,0.4689055197808663 +0.08263673760555662,0.27744295496178095 +0.7930719088460699,0.026414592389551406 +0.9908670452986459,0.26515581979506886 +0.2647993781270519,0.5958519893687867 +0.19584816773551894,0.05388602775881196 +0.400833777476279,0.8059001813791182 +0.7231869461284945,0.839582365370692 +0.1082863234460909,0.6749663490080469 +0.8675366179722239,0.46242338392753246 +0.7144750061648477,0.5514700926595318 +0.8158286101343701,0.5171810452627615 +0.6961355785681307,0.8912437044535668 +0.21980679775044676,0.5392941901355093 +0.586679056669267,0.6101140242644403 +0.9952319123217851,0.31685448092976565 +0.0775685044459431,0.44065303018338225 +0.49635364862593245,0.0931454202351592 +0.3776495672867327,0.06209427278998164 +0.7086370710557466,0.3522260141587403 +0.7510293081684606,0.8160558406639438 +0.9230571542471182,0.7172076114419883 +0.6864548551530588,0.8567636066801455 +0.39381952244902063,0.9068478243730129 +0.13464335169168906,0.8720664329755359 +0.1874465602485471,0.3341218580307711 +0.355447753836275,0.5542952309547141 +0.24015712597973793,0.0023276142291732693 +0.6586631380868248,0.3559228821002543 +0.2752219457102948,0.836339002319646 +0.7815774287931382,0.0012163169140190222 +0.9947148274656918,0.45784134540367116 +0.6365170941308141,0.6350056150630764 +0.5370114325263656,0.6565312575216029 +0.7940515448019585,0.5798649650833638 +0.6834403963847816,0.2105254086671513 +0.08907912961328884,0.3286933529276195 +0.8639240527890317,0.8930753689239697 +0.05748848889296565,0.6529194925121156 +0.7062614181559698,0.9318798266051396 +0.3881665963806654,0.44854497948382105 +0.764901625112179,0.11347260730361874 +0.47697013999842,0.3187626115012826 +0.7115956150186731,0.5123962961952593 +0.6185514619965423,0.05385684476908609 +0.744679704459454,0.43034612721868615 +0.9960432035846445,0.8695640849021271 +0.4058051571664092,0.1759904794594056 +0.9775472262579722,0.9762591127444133 +0.6188442462284988,0.565592676661025 +0.35097578114474415,0.4953864876274697 +0.7880259003351211,0.36770641234877977 +0.5939845459708794,0.250419501842003 +0.6069017158588269,0.6907098236064304 +0.8599009567198188,0.5085007779507152 +0.6199048090805466,0.34625007153937926 +0.3055624511386415,0.7334595937083297 +0.6684762414163402,0.5127802727295286 +0.5263668265224786,0.32643926278527496 +0.36943055555878057,0.2939408776795097 +0.11658446679578033,0.024668733540619825 +0.6318966634991567,0.360991625109859 +0.16852947400718915,0.06513900141299095 +0.1629719806337716,0.9134766762604625 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.03_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.03_size_100.csv new file mode 100644 index 0000000000..2f3899aa2a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.03_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.1997549293503812,0.23752168440295984 +0.20788283968598287,0.9634001184480745 +0.07643956078583647,0.6430923614936077 +0.9104369464521469,0.724120732319319 +0.8033098239605104,0.9676055997497481 +0.6952766005049096,0.6547443519472957 +0.4297542095542555,0.5319981027583163 +0.4094827135597674,0.8466506869218666 +0.039043830334085095,0.922047632833155 +0.5842510975974953,0.9412787615388674 +0.9742601342710031,0.4572871148610987 +0.08754492905568168,0.9707163671884347 +0.09333846069362212,0.2968482609198615 +0.13485432112247503,0.9429269608552963 +0.9256899082641461,0.33348474259182587 +0.11205165586688925,0.0991891736670118 +0.9309953278759848,0.8633409044037836 +0.7378539864927239,0.021049369322408917 +0.512037364171631,0.6795052480043839 +0.8423432796843527,0.23967943844035733 +0.3353655904269012,0.9787804984643156 +0.634151686215682,0.42963374136564436 +0.9630753438933456,0.3326676271974066 +0.887021556207149,0.24970265111664625 +0.8654500308757032,0.4182637553542581 +0.6727450497797308,0.37724090053855197 +0.0006740107068057277,0.5557106429340296 +0.05537916477050364,0.05050157592160287 +0.6587715762026924,0.3032043094692309 +0.7730044476289015,0.07881099221033128 +0.2810599595773795,0.6961762950483493 +0.6443505677420159,0.20763725438685682 +0.594371359754202,0.13565950172772134 +0.08038956797051727,0.3698872805512887 +0.3316846113574552,0.9297764055395634 +0.8128706544422397,0.6869405785126512 +0.9188205778843672,0.6793642752232683 +0.3093237029836363,0.04669414049812043 +0.17913535423005056,0.4993615299014429 +0.23838013178197265,0.9614583021949155 +0.5885189476728868,0.6107762389335429 +0.8990142704849159,0.6729517970829149 +0.6309241000312411,0.701524301104321 +0.7188421691564753,0.7232144678218222 +0.5653512133856688,0.6715642813911074 +0.6595457958317135,0.47492341452232634 +0.6986196959843476,0.7898832958533828 +0.053176501758113504,0.20230138298153744 +0.2512928989035371,0.036861610221942176 +0.2816485931771494,0.6264908340493999 +0.7838966296441934,0.14289049757695427 +0.6194172145540694,0.4508497398387253 +0.1415151760293074,0.6478557886778785 +0.9396486783004032,0.28024584560496324 +0.12483195524258017,0.31300589074478535 +0.775461666473076,0.7146588383600163 +0.8370911054648917,0.2079867834422553 +0.721956370726554,0.6709595772731053 +0.0868619400698521,0.022878415493680526 +0.20464780303947222,0.29464552957198603 +0.43562724690470844,0.5245585072051019 +0.7655200248305309,0.40278610648780205 +0.20478993595406447,0.29488937545833804 +0.009976532599767052,0.9313009404493592 +0.14957270773865883,0.6788203783669241 +0.6214550346981602,0.9220895515394489 +0.29593890471230755,0.8998023799260458 +0.2854592610671831,0.6487558646318606 +0.5792164096713803,0.6821603625004373 +0.06652010448661039,0.8644902331556792 +0.5514950627534441,0.5539551679122316 +0.5655133905579363,0.14860810114162049 +0.06697774428533998,0.13731280968930787 +0.09677893751595484,0.7547586066666425 +0.8178672124022583,0.5926762509764983 +0.4448818845827238,0.8088371971358292 +0.9534470080418717,0.868460177289023 +0.14327892145924154,0.6557336905477056 +0.2684394117757969,0.6544490998970136 +0.4093752789165579,0.49794192733521087 +0.2825638573509831,0.7127079289193913 +0.19999881320003804,0.8377968127391331 +0.7425483573714656,0.6202690099894728 +0.7784983629945903,0.18274400313683015 +0.36332804328806745,0.6766993090361287 +0.9703450535411076,0.5614491615972059 +0.1526092502355909,0.5476966673849888 +0.7611311941158398,0.3019602679868699 +0.3349674883915027,0.3095984878231867 +0.3557150232033157,0.6600462094767255 +0.612730588526394,0.7125976033776128 +0.07320111634039517,0.09832852624669108 +0.9625181507436309,0.7894383980181401 +0.17460122890834995,0.26925552905562555 +0.2356197194029051,0.7346324826238178 +0.914264526470386,0.8105263043463379 +0.6965363967090832,0.4800416807975612 +0.9079720826495621,0.4403679697021519 +0.1890627173969896,0.40632820128359065 +0.40873701334592716,0.45235158780511553 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.04_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.04_size_100.csv new file mode 100644 index 0000000000..c8392928f1 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.04_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6761569124031608,0.9109159170996342 +0.9531320803538588,0.2010692369838462 +0.09422258065846079,0.22566115408404813 +0.5653843061437059,0.8112788493526124 +0.594367731778219,0.5655270493558862 +0.2489482225238021,0.5932912381972887 +0.9804820265875767,0.7226350233250858 +0.20638297839605335,0.43139933594061564 +0.06713376257200887,0.5592808238154952 +0.10774940173868969,0.04469722350393579 +0.6788257058011046,0.49064234192703327 +0.5496839481302453,0.6036393983247447 +0.6931796609154024,0.15183953228253694 +0.32684792175554644,0.13601539879110158 +0.6110278887284409,0.45134414229396824 +0.15147363709055361,0.8793772492168596 +0.10063611040794374,0.2204848688405896 +0.35079704215960916,0.8435389464966982 +0.38861741634537705,0.7800990739353408 +0.2376622379135661,0.22291276269361626 +0.6851364919176373,0.48841933748828303 +0.9920429135362763,0.9889251825410207 +0.5597355396977779,0.5283090447577491 +0.09516866580071953,0.8948168795909393 +0.39945692242638153,0.4908864762905842 +0.4709329729880505,0.4870172626735234 +0.0628990060537854,0.6883698939395955 +0.17376181265625346,0.4595822427555105 +0.10999691702137676,0.24575645246437283 +0.49497811976684625,0.9221178401126093 +0.684889768113745,0.1935338643904756 +0.34222744652773507,0.6265077226501002 +0.39522723132904636,0.45889746129820036 +0.2772596298048967,0.14153904335692324 +0.20044021715486654,0.7662236409455552 +0.3265332513761179,0.37825678045832 +0.1147165618205152,0.4153237119065298 +0.561625981429214,0.42179212356674567 +0.14190471230689106,0.027220798047928207 +0.7345053162338897,0.44919616293278186 +0.8479499259222439,0.5071901889112096 +0.3868307046657463,0.5506009641471619 +0.3904382682241495,0.00974819203174776 +0.015598617279815263,0.42650711302437283 +0.2924993127413288,0.33223995559841435 +0.12929988651694085,0.33780591342114424 +0.021690613337970732,0.4110392415548497 +0.22961003572445893,0.6058215276106782 +0.5438488642605012,0.6843775878632263 +0.3620304044209389,0.46742276259136145 +0.3636353778875272,0.571243788916373 +0.783388073730787,0.4184049354966243 +0.8941214684855382,0.3341144511755642 +0.30855904673472034,0.8146930818549936 +0.11245927610513118,0.12345014291440798 +0.7250477958044372,0.8347745930724166 +0.15355694759166866,0.35904397018466716 +0.4424295768217009,0.401299465454601 +0.10494554732531752,0.38179556055638164 +0.8490083289319519,0.44095045359558516 +0.7229856770447153,0.5672647884334192 +0.36821665727439645,0.8205387252815927 +0.2719062267826129,0.02078325437224926 +0.3242560171400414,0.5939766605402582 +0.06407124782811857,0.43018438724361907 +0.9334338745985394,0.8257685213910764 +0.24652579688367582,0.9244393316037975 +0.35936467477947215,0.8840684775649048 +0.6477184989441124,0.8513881278901216 +0.9322738565521145,0.3376452886228267 +0.2159777898685975,0.692845221492759 +0.41917415405192826,0.7111523450443635 +0.19558313578173092,0.8716545403830607 +0.4766768310774874,0.09749099981177067 +0.3354408475848093,0.418173692317354 +0.26680453087570477,0.6901679877245364 +0.3323087758887414,0.48428942981556905 +0.5589265407589891,0.1837293972363782 +0.7382301524424651,0.35341591373818404 +0.9646893676652232,0.1043560079276516 +0.36189804029935524,0.9524939638648695 +0.5087594837723954,0.31664541721348605 +0.7029350345688603,0.8200751624153195 +0.021817892554621743,0.4516773269759735 +0.9024033509643146,0.6868135674697188 +0.4396295973258586,0.27447385030139015 +0.11180216917457797,0.21303048195141183 +0.4282005596826761,0.6718731933438159 +0.6817876260434876,0.8998623119867277 +0.19812232416783288,0.8517428981856303 +0.961437598573935,0.4878726128734433 +0.8255840995194205,0.8887357871010486 +0.38287099182379647,0.9128722978874675 +0.6255820702034992,0.4426363133577826 +0.5906115554294423,0.91487913324944 +0.3296712142884516,0.7532005030383342 +0.6594067337400532,0.6273654965564973 +0.6595104763946164,0.9585072027343375 +0.8467805160967763,0.245295080498675 +0.13141599956706806,0.7666822076079758 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.05_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.05_size_100.csv new file mode 100644 index 0000000000..33f091c2e0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.05_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6887456676731633,0.9195367442155814 +0.9204233189914611,0.2720081714864326 +0.8618388557264673,0.8867409536768254 +0.8377225453724968,0.17854038588622295 +0.9085310565942957,0.6157258216153751 +0.44775216151690733,0.4225497865011589 +0.31528437751127125,0.6519951298263715 +0.6809003128242936,0.8744950899677285 +0.16454036228519464,0.8957295781783305 +0.332785548786685,0.1644976637621921 +0.06808399704433155,0.0674402258412245 +0.19595450886378174,0.7795081267826716 +0.9645608952001375,0.8336326059716718 +0.4917933074007681,0.2479266810941464 +0.0927401050770667,0.17793362939289925 +0.7071490700896176,0.3474752291483426 +0.9283190844347442,0.586652605430863 +0.24064870132813315,0.5478174079838044 +0.7591833165093838,0.05962115432608578 +0.6364155725581483,0.907574750529324 +0.18634805194389548,0.08520209286475305 +0.19666488700802331,0.5238572454366963 +0.2630518684641234,0.7657826645021462 +0.21439228736999105,0.8296451909279638 +0.2540985540464574,0.4738677395336163 +0.5459077044317234,0.1318853329671288 +0.6988783081905295,0.057493236761242794 +0.9576738388742392,0.9512376662916436 +0.9368638309877517,0.23427446877685104 +0.35788739841357275,0.6301455023541411 +0.022353906250131783,0.6766954949675135 +0.08735535323927007,0.1260588004905669 +0.9672892972738176,0.424119424020007 +0.5868173135713921,0.4616418331706477 +0.2989888254196321,0.9726725299222281 +0.7434185543477922,0.22388347517085477 +0.9621270590066879,0.9510217803987822 +0.6301955724446262,0.8943986008484512 +0.26133753650849,0.4080849616044777 +0.0371716479408023,0.7011788770530996 +0.37929708387553895,0.6760302970165284 +0.5767973026008117,0.16581780913872574 +0.804641558158818,0.24457997477053672 +0.2707524509069671,0.18651482882746773 +0.6666744878231878,0.9632151311577464 +0.17764010052137197,0.41623286370121193 +0.43628728926348703,0.7799818834323875 +0.658099084771513,0.9494520948569733 +0.2620013405220882,0.3232896266757822 +0.44380886207458026,0.43188462349903695 +0.5310447554151424,0.9989324869336998 +0.2251303908746265,0.5879792340279413 +0.49567676646957526,0.864839844720668 +0.5069080265405225,0.773455904669917 +0.7510706085405319,0.7302489951853204 +0.4038851745660068,0.24388372816071324 +0.6428775808503424,0.8737380239363157 +0.010360461220351502,0.2067941352886573 +0.6432114244743652,0.9683860319785039 +0.6162409510356656,0.15213593854957164 +0.635230339561369,0.5400285170780175 +0.6857836049862781,0.5503973584316418 +0.21293117431120356,0.3170161929030786 +0.4261084046967549,0.7380714955445542 +0.6432758539855252,0.7652649547620847 +0.6044649719975749,0.23899386467736167 +0.9929371277952578,0.23270287773962167 +0.7535597676667394,0.7664272648883768 +0.5625235032943613,0.6579864101086748 +0.9724129854870321,0.6570878456322222 +0.8782079030614025,0.7046869462273919 +0.2057006547079761,0.5251208250433064 +0.15055490393909565,0.13591725058747067 +0.6472023564625825,0.903351291950962 +0.0954874340799044,0.6155690155946797 +0.3173977511315983,0.28626040042906065 +0.9891192846058218,0.23374769761818037 +0.7299831518332477,0.038060072706381454 +0.8429079371827892,0.6075302803472379 +0.31249340719064356,0.7990334803569306 +0.7640475276377166,0.17671399549998668 +0.7420804348730071,0.807787270048927 +0.7552129451233021,0.4237286793319702 +0.45646572435678956,0.21401150701793242 +0.08911668481423063,0.17958641067650027 +0.8273451995294397,0.461187686549312 +0.733549823978528,0.30686347374512507 +0.5126508563601214,0.0010382976551194245 +0.2847908259202565,0.7551874996412464 +0.24377279036417432,0.3337339168003842 +0.16217483148138856,0.9207808901661405 +0.4510461723117343,0.38398873221510404 +0.7488999131011572,0.48877504892186363 +0.8903138075836956,0.3611616363281568 +0.3279746682664091,0.047156399876043587 +0.5750366867006703,0.7023160484875755 +0.46509225512439545,0.9143124203868771 +0.8990289916725496,0.5180071193375932 +0.3759932746435104,0.11645620707666104 +0.9590369408331211,0.13311519618349638 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.06_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.06_size_100.csv new file mode 100644 index 0000000000..c9f6af4fe0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.06_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6613015131029665,0.05294643457654119 +0.3786554733809483,0.6554735419744824 +0.9574163487074315,0.10980754329325726 +0.6775130278124617,0.42303188082557924 +0.5736822219351254,0.8067505743498682 +0.34323207002185385,0.2928894888519991 +0.11765042552282179,0.06955832178913302 +0.982798521287552,0.2219482118343314 +0.23358960368320014,0.3949411352680839 +0.6523341948989809,0.03552970053453414 +0.48908722928910586,0.6570156077499484 +0.9003653691028327,0.10209341622518464 +0.41107828443100136,0.42252950410153606 +0.289333802466933,0.6497921773482647 +0.3942518996597466,0.4246920108320389 +0.8498384032192242,0.42928819568085963 +0.9343587186196103,0.07119640592404392 +0.5409980958233507,0.8818930915315442 +0.9245439868645358,0.4728297070037308 +0.2746097879522885,0.5749519353616671 +0.09557754983084932,0.21880303775029003 +0.9652110174047535,0.3249524155970481 +0.30088001317774504,0.5154225215208892 +0.6127484295867074,0.41133475619885784 +0.21086795519173468,0.603998141452473 +0.1313193311814756,0.6700011525243206 +0.6877816716781158,0.24538785749281755 +0.5712705265064609,0.7339116824408954 +0.5574174130757299,0.8316802894997022 +0.7924494117486088,0.166093145518512 +0.2731536687069963,0.8958643863617781 +0.9076740760474638,0.17962514531570783 +0.22375103320492207,0.44444558376959115 +0.566518164178258,0.9498418486866305 +0.6283107491257117,0.8998374693343627 +0.07048967889140101,0.7737554792374286 +0.9216787098179418,0.2089375443929231 +0.9869250220328717,0.6349811352211152 +0.25943541092182487,0.9692310947119203 +0.8393000917799969,0.024667186690067067 +0.9119556439948007,0.8280845792551993 +0.15356784896857412,0.5660826129088349 +0.8422938065835448,0.16906160203136456 +0.5396717398580083,0.6640545649319901 +0.6226795036140769,0.7383052937378336 +0.36376885516668234,0.2208881049300077 +0.35169911243892205,0.6506964974692093 +0.6509696764370803,0.8096311996641181 +0.9988761314314034,0.551424038669295 +0.8851126652211827,0.9746368500039284 +0.8214384802993047,0.34113197376723 +0.545103720140243,0.08670786975992567 +0.6856938891724982,0.8229578343336568 +0.5487076922522376,0.7265690638786482 +0.3590843726058307,0.0819825061211551 +0.436512288510177,0.1111480939725139 +0.547240509257715,0.02823990364698642 +0.15212907057325142,0.9651127665303636 +0.15681661874230934,0.46536528677108613 +0.8506464978015825,0.17049978725403375 +0.9963044698555733,0.8314599299856282 +0.8336311414323879,0.9690374794591712 +0.9623058704273657,0.8651865353769608 +0.116973887795767,0.03788560706119676 +0.5084270344921171,0.971106463718612 +0.26055914447937256,0.051727931168951136 +0.9765498838385152,0.6689427166053092 +0.8393447453270009,0.7799725065934302 +0.9656497189303134,0.5119661886201574 +0.25561798584669826,0.3531970560303631 +0.5921295179481388,0.7329915531353952 +0.7060104308604841,0.41240858751054665 +0.4281501829726516,0.9800985707093609 +0.9724641040272047,0.12520211292915018 +0.7701562619285807,0.16217412446141938 +0.944011529404646,0.3438326897947532 +0.7686763160047204,0.7868371598496708 +0.3727726016554118,0.908418420107342 +0.6962880945141724,0.5411597389864493 +0.9564578510013019,0.7173847502909765 +0.15646862106800286,0.12008263118599233 +0.8262296412122778,0.3748712106870776 +0.13717260856404245,0.2710534561973984 +0.6590063393283673,0.3644516109501469 +0.9247748068897405,0.4102008693801652 +0.5290809153029316,0.01680124730273752 +0.6942949785243058,0.9732096398716912 +0.597632382168738,0.766361926331336 +0.4289302231030787,0.6149683028586932 +0.09231343215230808,0.38697095140486604 +0.9421231796676968,0.935162339163298 +0.6093565577941288,0.8207759400228254 +0.1054545727689098,0.09622033035430161 +0.4930791830981359,0.39507160450332923 +0.9862682141794314,0.39069264602709786 +0.42077636291265896,0.3471020652827901 +0.2599120179882046,0.829883406303189 +0.9737406882887523,0.22541615254173875 +0.31720311373907184,0.14775902946933944 +0.5529465175162015,0.4122561000913512 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.07_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.07_size_100.csv new file mode 100644 index 0000000000..e9009a617e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.07_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6166952541825401,0.253139929414524 +0.8450756918417225,0.24610348642062846 +0.2882842116899459,0.20844052810664182 +0.9748214673261155,0.7339394991292063 +0.6620432060551078,0.9536061434260972 +0.4312048744128876,0.930803326252331 +0.7906749606296807,0.43612080859737634 +0.6394749920514458,0.2586776941269934 +0.18207092378740847,0.1049959496738011 +0.8465688235364444,0.8555351699893949 +0.15918154825049718,0.5312685851035802 +0.6816401724039267,0.8618276785071833 +0.20445083773438605,0.0926122690316789 +0.12627041459470556,0.6111690268143641 +0.9256388028698028,0.17830557430810623 +0.2937322914275513,0.47505024535074625 +0.23117807827860398,0.2060046329978552 +0.5145789175813464,0.32460906622705377 +0.3677217674953448,0.4627019066662954 +0.4316903677200077,0.781274025143526 +0.9173473358408298,0.5145309746925728 +0.8105820275235543,0.7845250279617735 +0.46461110416878415,0.9950704203247716 +0.5854734502324617,0.4635342216562697 +0.8923751084599585,0.5001528205115077 +0.4042083829511969,0.03450639990846638 +0.7380864276897732,0.5365781326516239 +0.33816123509258655,0.12383849706932015 +0.7722457817134196,0.21685003815761716 +0.23418322409020376,0.5017585158839488 +0.00963533702789765,0.4694576785743878 +0.981493329692558,0.8255748250383986 +0.7248342195489587,0.8234396307906202 +0.6360438689696983,0.8751841573650194 +0.854956272024242,0.7438013361689344 +0.16928979175393388,0.8437492183248299 +0.9317947630191424,0.3022400341840858 +0.06266787306672883,0.2633960232972269 +0.2647865428708678,0.21294307799140594 +0.5556276421358424,0.5580238205691171 +0.8267787986437236,0.43340565357392447 +0.12884382244366865,0.03617577735436239 +0.05950885644338333,0.05344079853308259 +0.11481201145128622,0.0439217428166615 +0.30872912226746785,0.3277813617126076 +0.43024329559601693,0.7438672387149026 +0.5408420232156177,0.5484399433529409 +0.07009810022610286,0.6296826510524631 +0.6140452237507218,0.3540680117415135 +0.8344346908362323,0.13878983500710534 +0.6725454910224525,0.2583373803814536 +0.5508495046083511,0.9102266017095206 +0.3016373718750691,0.5509312475601852 +0.49400291499533633,0.16525478176795738 +0.5703101563401467,0.023175065043985865 +0.7492654675929197,0.6597351373171509 +0.7076136838135966,0.905686379711137 +0.6011698480538064,0.7985790245226734 +0.6194328680471332,0.7709812824260185 +0.9287274760966979,0.5582144547796313 +0.4750575532497209,0.6815656557242297 +0.36470645162502857,0.0665319900012944 +0.1104000515688966,0.5180261948172229 +0.7924301168384029,0.273016839488295 +0.46261422905737926,0.527899622424993 +0.42692410696436156,0.3630480010525883 +0.5853097616096139,0.22895248817755764 +0.8151397397384885,0.860940297789688 +0.15105622085023063,0.32759338394835236 +0.4034251739963346,0.26424251673547144 +0.6933982595567861,0.1884509170231064 +0.7429163556900374,0.6612326398274224 +0.194975218036181,0.6422646997985999 +0.18514479273227807,0.9918874442136667 +0.035412854066538046,0.56200939774909 +0.6074274400235851,0.4836202996264148 +0.9928097866474258,0.5688732518314241 +0.9841630623697906,0.4217464264347889 +0.41345425575105976,0.5292191615315921 +0.866067089663932,0.906419385186806 +0.9573824492993087,0.5637175611584613 +0.9946967594708475,0.8018721708897802 +0.7405752797363279,0.7804186049006028 +0.7188882123626961,0.3054664632196665 +0.6040467872389677,0.09025582222250561 +0.3730551275158429,0.4957744709257254 +0.30617636277442195,0.1932703247580166 +0.09163344383280303,0.21273703407959443 +0.7661043812047681,0.8562499477558465 +0.7914990466844682,0.9031219653632372 +0.08549225738709754,0.3369158748966025 +0.23199223864722734,0.7560017243757974 +0.5515806659747285,0.6041126579402969 +0.227241932351823,0.6942028195311306 +0.949782034452511,0.899586059073819 +0.09339572490197956,0.802655673846721 +0.7120366646529567,0.12638389671533168 +0.08380025829276522,0.35485741110129687 +0.40870873265517194,0.2640902416011485 +0.18860737653288484,0.4746162511478453 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.08_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.08_size_100.csv new file mode 100644 index 0000000000..692e61e794 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.08_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.617608260513416,0.7553932002212362 +0.7173056743773817,0.262370067984697 +0.39973739356671134,0.08011610228188831 +0.3214701236326337,0.7393457544624193 +0.5050679934397346,0.5751335376734 +0.17674299562714518,0.7908880400339098 +0.8211343254017633,0.023625411312799882 +0.4950525557058184,0.19577107773712166 +0.3828209714230416,0.12316034177946866 +0.44755849633106903,0.04551576324879525 +0.37568455722836847,0.5230143240425374 +0.7027821584249163,0.7701413274072744 +0.05536125627861843,0.3366588071649884 +0.31435941081066365,0.6501150052394453 +0.2614297985672197,0.2719006794740883 +0.7775824783928234,0.3655450405831605 +0.12666343204080266,0.9660468312078283 +0.6404323913075992,0.5935380336647404 +0.24823393769057073,0.16055579676188764 +0.21589265645987488,0.47074270599665774 +0.18955045736342646,0.37978103138670993 +0.12514770310292428,0.23040822109913944 +0.9480513353070839,0.6008196539479224 +0.21707421272739003,0.2012619729036173 +0.6865874089689359,0.21607840187045751 +0.595526173674631,0.9860710371947099 +0.9950073723136109,0.1578722306648373 +0.7842236873847941,0.3289410597588405 +0.6143088833772687,0.7281313198284993 +0.189860583852561,0.039878443168783195 +0.8728367012104494,0.45787124069591106 +0.1493651691120344,0.6792629031666726 +0.11488216597560508,0.9456601944037959 +0.0808937320369379,0.32313816106233806 +0.7007021974543574,0.036370964142284135 +0.9219149824066601,0.973076554233175 +0.7418096309006719,0.5669941783703778 +0.8958294728588081,0.20967130366378472 +0.16622392956544485,0.03814534662375241 +0.20181236150403037,0.09793029550649035 +0.7759704037841137,0.363962443850292 +0.5830437940176079,0.7827548948162514 +0.6817080341689941,0.5583619925257649 +0.7026734258326645,0.0990668883142598 +0.4611312030881527,0.959900986879271 +0.19654263845042086,0.40314502522623136 +0.7555716079516098,0.5892060591457472 +0.5575773729331405,0.4458737359520154 +0.3841799893150126,0.17452446567030055 +0.628965238044778,0.9409095676548961 +0.6912735859655906,0.8341551566292784 +0.7914948859960118,0.7925666662295651 +0.5037098024727985,0.34596566612755686 +0.16884046079471837,0.2812230974755308 +0.04795951488976247,0.07241189358886324 +0.26927953430641816,0.022911069217627533 +0.8859209528921562,0.18796529754547797 +0.5032831825794352,0.6888650444995906 +0.30591448582838987,0.6129816658865297 +0.9144949455170909,0.2541668247942877 +0.06187369004924015,0.9175939211851409 +0.6043534238545943,0.05742785151393903 +0.3069191617336685,0.41044327969931094 +0.18627956756469544,0.5518232505779566 +0.31994844338006945,0.10290849004878722 +0.4807154219859603,0.399574455151822 +0.6254889297801237,0.5774302171962311 +0.2203849917620379,0.03130488756849681 +0.6248267579848902,0.612931502339557 +0.5412354015638929,0.7399536583808628 +0.13693303272426838,0.05905737411101286 +0.2936657772386329,0.23047315061762308 +0.8146949079819854,0.5550695984145831 +0.6819373717845859,0.33689286704315363 +0.8530168623273592,0.7231544082370905 +0.9662321746188601,0.3057197668571483 +0.4621941387217705,0.7392232193768382 +0.03818302097988746,0.005038414270313818 +0.7830119011331232,0.19064496104387363 +0.7882394349099399,0.47728110199158424 +0.6919844109881711,0.6405565419268034 +0.49054064289346333,0.023431034041572596 +0.6497914547982503,0.41548703084357286 +0.1888014503000477,0.3912573470807179 +0.7879284091239953,0.4611943800386118 +0.8062707034388901,0.9960263475192455 +0.590433104004264,0.8465877091603207 +0.5131389423762943,0.5799037127589104 +0.18542020018046101,0.7981369300813137 +0.6672793353411979,0.6988436930335882 +0.3331964646532486,0.4379875139105567 +0.4035462842452554,0.7003341194510848 +0.64459622515616,0.6880194774604261 +0.3054418912837187,0.5396462685836956 +0.7969295256088846,0.9531398627899286 +0.5774130914464066,0.1932115052367126 +0.07803831427374763,0.4411559527682203 +0.09745854415510391,0.12780480272954026 +0.8732793977965463,0.09483785762327152 +0.045910910003899796,0.13749882033646188 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.09_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.09_size_100.csv new file mode 100644 index 0000000000..70c68f6c49 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.09_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.38994693935146385,0.03182788488411997 +0.10124405615128329,0.2932959802909053 +0.6857960236478267,0.2784889201766678 +0.9803273291890187,0.4433737368563687 +0.6825807706677155,0.9799092637758603 +0.797826585150021,0.41006665562448086 +0.812596553488135,0.6822961674676898 +0.6224287293798565,0.36474680572398244 +0.5101123053852086,0.41273655172035395 +0.6743456629145809,0.32719465754600874 +0.1589955764234549,0.9308149963150469 +0.62278154274354,0.6925748653252874 +0.23584479288402554,0.06444540151257455 +0.4743789908768924,0.0037200587689216746 +0.25448515526211746,0.925398040795387 +0.5518873602764124,0.7517389910607672 +0.972098116587017,0.49347710810617446 +0.9122408555161915,0.8092663853055644 +0.3937858748460683,0.3213001193844253 +0.763979083765273,0.2559257574035524 +0.24635526896752058,0.10878226933504237 +0.0014464514194238998,0.736134005429792 +0.8402510380197361,0.6999089917552697 +0.6135924499856269,0.5218417851349115 +0.1376437682337201,0.06719092459285925 +0.2583902562336655,0.8828030887400068 +0.683467285027563,0.35439320453881173 +0.05885728167832427,0.20253323695527503 +0.465879516073463,0.3401919614346804 +0.2882520347540056,0.2834914386739156 +0.8422218921986019,0.8832646178450392 +0.2509116087291513,0.6244261879011395 +0.5212921834607225,0.8107554918685562 +0.9143545999096567,0.5112947954902819 +0.8295662079270718,0.9049923510938994 +0.8078403485554477,0.18033025515315343 +0.3869821251208534,0.8360935244773096 +0.5415245905054092,0.28939454493561834 +0.6643227301368333,0.5322372325928425 +0.2963781854193065,0.3923431541263641 +0.8478396065178091,0.7463053770513921 +0.9225395209425087,0.1728056509102287 +0.18819265490910247,0.04572340120543711 +0.6794635827702279,0.6442173578770491 +0.509917225300354,0.40075326795486227 +0.2895708522000759,0.19255646412087535 +0.9267512281602065,0.9704445236444302 +0.9061138566745781,0.09745223355669735 +0.467746005753629,0.5765093454627399 +0.4817369796539863,0.8295356593795516 +0.009709158235941207,0.8308159290869055 +0.5706146263305064,0.6125819899982579 +0.8980872259945019,0.22601218903550535 +0.11259833952615306,0.16582731119921268 +0.7370627323299649,0.34360026430511026 +0.7730892905375086,0.539948382217882 +0.33983208919834074,0.9782172024230293 +0.03825955592759023,0.23759457191511268 +0.5707512858876701,0.5186245251190913 +0.595673479530627,0.8493426630254528 +0.7918104870046041,0.8564061041501879 +0.7303840797612572,0.16973594158237543 +0.42795087265871457,0.9677179425272944 +0.8184215285040977,0.17001573764351197 +0.03459823541485074,0.0018384922119644154 +0.5755305545678664,0.9239426918388746 +0.22535002123951675,0.19117251266942714 +0.9115886681279852,0.399275561415736 +0.9659908831755901,0.7292039562273427 +0.6093754044846214,0.011478292445942062 +0.06063444838709531,0.18010578598176452 +0.4142520457425207,0.4287949866517936 +0.2338134131537271,0.29177494343712196 +0.9100691181416392,0.8036619974955418 +0.3278459451393816,0.018674455074995544 +0.8127066262273295,0.08096164350506069 +0.34286458823515564,0.723843889456301 +0.15018525865175048,0.5913365196934911 +0.42828391894595375,0.16079186379547455 +0.25027460222728937,0.7441187998659757 +0.29498049508099233,0.656001560653383 +0.7200618706621484,0.06018580414839142 +0.35644481011214635,0.1544586291579777 +0.3774062034886517,0.3452672810606624 +0.22856005641925642,0.6882839785746051 +0.2532399418670823,0.6272004526756431 +0.7643702307733721,0.4670591486810998 +0.36463053477274954,0.5732927570343558 +0.2555708508642254,0.8428994361830934 +0.45598260319433936,0.14324338927452496 +0.6135285142037632,0.10053163563678108 +0.2728169336830413,0.8508774197907055 +0.7483254389648945,0.9162298043070063 +0.9067300417400808,0.8415536526548211 +0.027994416548847822,0.6350393925846094 +0.2202238427630926,0.7952033632814823 +0.3165256518532318,0.43371783169320116 +0.061003817500740354,0.8511709861417445 +0.36522100176453676,0.49618123785649837 +0.33158929244622626,0.48155328010425075 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.11_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.11_size_100.csv new file mode 100644 index 0000000000..2f5f9a0ddc --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.11_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.880187960387932,0.762909027834382 +0.45267199358817634,0.37443352566310506 +0.0350310285679708,0.9543286567577551 +0.3020020562892216,0.5792310901773754 +0.9470290173115086,0.8877441332904288 +0.4185353620806641,0.17384679051202567 +0.33524404835828125,0.17662990236696346 +0.6734643877227064,0.1281096119633049 +0.971724230987063,0.9435370438280354 +0.23211971448377566,0.3950239869930764 +0.029937264195608826,0.697402992343383 +0.2522691312799268,0.8982274195087208 +0.8690553048606525,0.6532804930985494 +0.9901988511752803,0.989747572524843 +0.065819091204105,0.06966471583834649 +0.0026763427886267177,0.6819958845092473 +0.5886095562532766,0.07778032146517844 +0.5813384061772356,0.04605178077741223 +0.33500253750092557,0.749393524283311 +0.31284799377780936,0.15851898743523696 +0.5688790817874607,0.37003579806595566 +0.7208381966115804,0.02266877028354386 +0.6135852285769492,0.06423953357520867 +0.33036652386647525,0.2059164461875072 +0.6412101609836779,0.24543153847435256 +0.01958635462851055,0.14340038889131712 +0.6331244692285841,0.7175962617858189 +0.7880594000611634,0.5708158349448875 +0.031393002955167226,0.29138449135542194 +0.05250570188632553,0.2027894718163054 +0.3438561310708179,0.6481776142282034 +0.26852157164797696,0.3466653427495609 +0.0164475645318527,0.6105561703876551 +0.3043249618758722,0.22233689828886383 +0.3855999351346586,0.11483697917097085 +0.3461289951276515,0.8763924658224196 +0.8354771442536822,0.6588048280063894 +0.12039317478599398,0.6494842148724351 +0.6813675817911641,0.07614017336149492 +0.7951141541021225,0.9664114238524903 +0.46793135200707736,0.3101925756043141 +0.007112514810869386,0.08875621334852912 +0.4471920579970383,0.32313535395387355 +0.4878169268202398,0.0924367561658665 +0.216513552489784,0.42649896355018196 +0.9287266383103621,0.06588806354341004 +0.2802193641931341,0.30596001147162233 +0.3326076670866054,0.9885722970249381 +0.37314083217248006,0.7442356566581108 +0.26132367795351474,0.2651903629286152 +0.9542137201214798,0.21419792546986172 +0.5908558938121138,0.1330209616466591 +0.8566468515039942,0.9317183591063184 +0.1770562859408833,0.28265546078159587 +0.6695707914444656,0.900069658100304 +0.9958866958616562,0.4205473170319006 +0.8524849047663237,0.6879246667169789 +0.42027229377852515,0.1220258811958998 +0.29829949650608656,0.9092736085512487 +0.24283624870637144,0.32072947441634303 +0.25836889572652466,0.9740544258291512 +0.7351219599194201,0.5555642731964957 +0.35606174137774005,0.8556632012921068 +0.3415248896342322,0.09558774834347517 +0.07359455612523935,0.7103688421968178 +0.5772328173579905,0.19378783335138794 +0.462373144354579,0.36240581842006125 +0.0920677798532002,0.4440371399617541 +0.03830343329138175,0.39870869277495613 +0.2077264005291416,0.18462494950702268 +0.6360623704372719,0.562827905969316 +0.4129500488534653,0.8689766020988424 +0.36181580417330295,0.8343975475127352 +0.6024220812246588,0.9234123665120147 +0.20796677091967442,0.1748155527738131 +0.4954495512889605,0.23507920824185807 +0.05536329258101802,0.962137322526725 +0.6544924775589195,0.47431477272522526 +0.0034006063296455613,0.34502198062965533 +0.02063568252317194,0.5361883422489739 +0.8728780040989366,0.978466109062194 +0.23982299975832777,0.4941671983416729 +0.2588770764367009,0.3990994905085572 +0.40576443189929967,0.7723043444378653 +0.2211923755957544,0.765621747544007 +0.6082295889190314,0.01506864284942322 +0.7571898452885117,0.35545977675781926 +0.15491486118402475,0.09725589237181032 +0.040519904078664126,0.41108487175002917 +0.20907478960902237,0.045582317757936364 +0.4423890391804237,0.46054886991603095 +0.3558370865298598,0.8367312253256851 +0.25296187142980775,0.006548639354558239 +0.009151122086709762,0.2238180889376039 +0.34490786390188066,0.7377157634092295 +0.2981236847495222,0.702490205561185 +0.8662413579668229,0.18471285143639365 +0.2341848626448122,0.855059731736276 +0.1217533494062365,0.1932622517512348 +0.6280289964427566,0.026876976001074526 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.12_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.12_size_100.csv new file mode 100644 index 0000000000..ddb1de63ed --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.12_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.037708472236642976,0.1642145372223343 +0.5520178892767936,0.6636863590871153 +0.7232956534112135,0.3145535328341791 +0.8181098271919098,0.41246717458358506 +0.8916809765819851,0.84320078003591 +0.3513725614024328,0.6486965639829659 +0.8653420899205364,0.8256624140236861 +0.3038189519400474,0.6910065053581002 +0.6081592071544477,0.6489247147142692 +0.3453197594685332,0.21433668081840468 +0.5619388080466698,0.1299919070912861 +0.8457493749084115,0.08466370671404566 +0.6090503381436173,0.5452526549040996 +0.33192428727657164,0.9308530985224104 +0.07137270023328623,0.12974393711647902 +0.3498726239961881,0.8076229386788725 +0.8771264113340675,0.48853318538244866 +0.6753916647561662,0.11151395984500778 +0.8328781544316504,0.5651896372522195 +0.06021426810629271,0.14840386096876412 +0.41567121105970306,0.3618874071420436 +0.019127689510658796,0.31565664838434504 +0.2709513374825221,0.9929626641892115 +0.18352234267325074,0.19834161130936118 +0.7586507978599701,0.04950158700145968 +0.1052017434999084,0.09734738048074804 +0.7070653612313444,0.9865822514548345 +0.0030046936622586395,0.10641535118947132 +0.3771403242518898,0.8691184455037171 +0.0069400500590102165,0.4237834937554824 +0.5715205904330505,0.9142551408837523 +0.34723539575681317,0.2859953304036251 +0.7265164914411948,0.36015072426044614 +0.6610609680668111,0.1853419765334023 +0.9378628187592386,0.9169071966323927 +0.12610037474804997,0.7679328010554491 +0.965017698446068,0.557187789182633 +0.4754770938884567,0.02182061482255737 +0.0687543288736383,0.7322638619025144 +0.4922569970008226,0.4043840861756543 +0.518040963702732,0.35743199379120216 +0.7124664881627903,0.05943781597601322 +0.5674869554209977,0.2512553070209793 +0.11877724201384032,0.47250842636950835 +0.6187692579315643,0.36212303097436344 +0.3980042006368987,0.19187117597970677 +0.9438242741631867,0.1548408170547571 +0.40869296805917654,0.21423177312631753 +0.006620277154378962,0.22589084665005554 +0.2282247685327191,0.34422021063110386 +0.2403481959723897,0.5418645799804573 +0.5770133847861565,0.2027106977062365 +0.5738033219612829,0.9289235114336203 +0.6410914217308037,0.2810306262338108 +0.5438290240175425,0.9125842800139199 +0.31213560487394376,0.04393502297245444 +0.581365603625834,0.5826956632050364 +0.27770822942705287,0.8712290438040544 +0.8880348646335685,0.7886588720616721 +0.10388525528291764,0.19233997906921285 +0.11437437005211587,0.8731681534723225 +0.3971778267161651,0.2174656736592276 +0.4562336424540948,0.08833994770411374 +0.2633588735840673,0.4449147130062623 +0.28195124225395896,0.37751151524737875 +0.5669556524687276,0.43835761611892576 +0.9769903740694104,0.26279445004180135 +0.31851480279700095,0.06685356363595674 +0.5475467172923325,0.3033156688475719 +0.9114907948136097,0.1404335003918739 +0.1260607160483228,0.9340149861235223 +0.7343792227455195,0.7472938896686859 +0.3809264631085356,0.6124825918443226 +0.7162183799311865,0.09884954750589686 +0.6538291461633756,0.6163736122239413 +0.10634893584221894,0.38169692519587844 +0.24157512197717412,0.25348327719651786 +0.6699997164569974,0.5543851025927816 +0.437418823769948,0.6900343145427379 +0.6788860209493945,0.10008594001569693 +0.3720637804279343,0.603654506507259 +0.5493368283784442,0.3770655696652174 +0.018067294485202168,0.13890120421207147 +0.8108694906888161,0.690264386536346 +0.40325896146656404,0.21325659982128398 +0.7985114090082259,0.8433159015817493 +0.07063333619915235,0.8094757367914684 +0.9948770978526039,0.8078513104876714 +0.08405642211718128,0.2940782753325183 +0.7918297106049469,0.17722630577119886 +0.9545776217694925,0.5283236338358538 +0.1484873962435559,0.4812620685310646 +0.5904022195374783,0.6881193131992427 +0.8623476695250617,0.35809561103726456 +0.49834178704102217,0.8665184683288667 +0.1854407659020888,0.35036433444834936 +0.05569136779575046,0.9376870603437648 +0.5519379851005783,0.36780682474062254 +0.351973306185014,0.9505718655627281 +0.8413563695278705,0.7440248815403759 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.13_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.13_size_100.csv new file mode 100644 index 0000000000..9735628d7c --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.13_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.13833056620749784,0.3856206168938132 +0.16173097944221004,0.04423354567574561 +0.5184862278318579,0.15895267655248335 +0.383854562420166,0.8611589181817505 +0.8800028663873036,0.9278001077283408 +0.7462806180337997,0.877193705621622 +0.8825606868647586,0.34155458001779665 +0.2642647861591636,0.13398592882370358 +0.578800965183084,0.2996318256161964 +0.9338750656439732,0.18494348972134766 +0.6261541155344678,0.8626273127317681 +0.5818194094481727,0.7544713956393876 +0.17462492380044503,0.854353762317757 +0.24296011357434716,0.32765127737333477 +0.06901965304908653,0.22563574967508554 +0.343470388999192,0.4356527819545211 +0.9001045974011253,0.9867899161833718 +0.09601968625791846,0.4798703714091528 +0.4739550467653485,0.6184002327139742 +0.968466135291791,0.8720467452709225 +0.24129146780038674,0.608961097608143 +0.8640149552502723,0.2023082519260529 +0.1473541695809355,0.09639926625579398 +0.5865705052219932,0.18055960426257794 +0.42394423929258573,0.2278135359905497 +0.1253388279497708,0.069199819187508 +0.05205248747690627,0.5345348897032947 +0.19012320553402307,0.8909428801260223 +0.8610746087762402,0.08885453341334104 +0.22349073201391773,0.3239898757718388 +0.019994714301554306,0.6041616617386433 +0.6546820327374783,0.12853199589562903 +0.36636924006265603,0.7130503513500775 +0.7824545925849168,0.9858727473981557 +0.0018317688865999715,0.1357331352012512 +0.6831567197435452,0.4602325519703802 +0.26485821475829563,0.5414240595955059 +0.8253494989638526,0.6228021907235564 +0.7391034366797001,0.5634480303095974 +0.7637251853839577,0.9406332789994782 +0.6659345057142858,0.9852369370551304 +0.08312090295437585,0.15355980214512294 +0.875499703730819,0.926758392764553 +0.17668495960166686,0.43629382261346017 +0.4464092072459711,0.694625489525498 +0.38189680509881796,0.8882462552321264 +0.07373469257675391,0.4271016084339796 +0.5242268642206546,0.8616190817547029 +0.6377786216149973,0.7572469669227908 +0.6110513178767568,0.6864309013637032 +0.9843148596905552,0.5576389817882532 +0.09866798544847644,0.571089534625142 +0.2745934045807161,0.8289170059411911 +0.801970436574539,0.2378365491192574 +0.9314399658897734,0.9808831307508385 +0.32570806381013295,0.08879288497591903 +0.4355601978946444,0.722455800491115 +0.11537557213569405,0.7934976473338349 +0.1054272179373677,0.5171378184466523 +0.4716254514271381,0.39793431076765073 +0.6524820358174531,0.8720778033350438 +0.4925169681754371,0.9369908258224637 +0.8380095817586097,0.35083601281242377 +0.9503379513267204,0.18349289491664544 +0.6428011281953,0.17768991017003116 +0.2020622279886395,0.4898345814661584 +0.48734448346406556,0.6364515935189995 +0.39557546355466244,0.660906008195026 +0.4795562735535849,0.8809913695056102 +0.6977701432696896,0.7173543472712652 +0.4013665418974409,0.680335964667121 +0.995632911009673,0.9464633310734109 +0.2586644873542962,0.15084914787619708 +0.6455267687730001,0.2884159458858293 +0.18117302749549846,0.16821397345515254 +0.4118559366543828,0.5423616095573316 +0.6027033305360618,0.5415630495231744 +0.671552688761022,0.9408613481949621 +0.5902572625063506,0.1217639028643826 +0.561705708830271,0.7223039652814892 +0.3853075466625767,0.443886924987176 +0.6096862714558692,0.3918352601949736 +0.005428652840810511,0.6069388060492686 +0.08997196169634553,0.9463819366949181 +0.3242534187099877,0.7427313566520187 +0.5740689259660176,0.19631452349214612 +0.9139051529987606,0.7261488267300333 +0.09675618227254429,0.40794148258007773 +0.8013708503165132,0.3344910788754453 +0.8026232218440965,0.7106286534238728 +0.018895812389401523,0.9626432831435096 +0.8385798510463973,0.9269464402256469 +0.5840749869118985,0.24221305701672802 +0.0016343128453157885,0.6702770297359809 +0.33604408177240674,0.13066229452442868 +0.42281209503040496,0.4251296333852619 +0.5698216594154838,0.22450586994919414 +0.9735464807767829,0.8717944035068852 +0.24056144637886073,0.5839928396984573 +0.735499321692036,0.507529304986314 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.14_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.14_size_100.csv new file mode 100644 index 0000000000..c7e6465e7d --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.14_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.1312809626760208,0.12704393753985455 +0.32585116209310994,0.27955088281750273 +0.2819242691505456,0.324522707097271 +0.727959435701347,0.5472691312043336 +0.9681919277553023,0.7055616774533662 +0.7434499078960409,0.2852714186479712 +0.8010221813686579,0.7289002649735838 +0.34621026812221856,0.09234628190761801 +0.6021993576814442,0.11794736157061259 +0.9004501343899456,0.25139705411233837 +0.9930929917354471,0.3886285111958881 +0.8154530500411079,0.6255035362962309 +0.12182300161438686,0.08471525892550075 +0.2548857541914216,0.48866318315402474 +0.2987476197644897,0.44649089988838697 +0.6742304071012801,0.2881213983069735 +0.746969441790206,0.6426195693330096 +0.8660659652016713,0.38081307186643 +0.6111113935876876,0.8755174516767331 +0.33624803633351474,0.25372135317645295 +0.15765950615494806,0.02753686411369255 +0.34853433210965834,0.049585879133930366 +0.7260301157589591,0.5834716022058999 +0.6907024409674598,0.7583817083908901 +0.5717870202234966,0.05855315936577138 +0.5331992479551451,0.03184761584119461 +0.5040258186283239,0.5461205846010369 +0.8512544490332954,0.7283546495113615 +0.5036482979935846,0.44184603142987516 +0.8246336940468014,0.9338989562340887 +0.9137487698034493,0.30946015539455674 +0.7389212720921212,0.4889747890675871 +0.611135611667586,0.7788418646966372 +0.878156325189839,0.821687207018136 +0.4221288612177593,0.6273524611518837 +0.9739456923911668,0.42535593875139754 +0.02336116957804324,0.7455434737024453 +0.7556007347903531,0.6262588292983311 +0.47476184051153525,0.7211976805998426 +0.012915629052690503,0.13453937774098396 +0.13253855186377378,0.6535449370632376 +0.019621407559613058,0.5323846302374102 +0.31957638717302805,0.5216539840602249 +0.974431648126681,0.07867313049898778 +0.6569134840777313,0.29214338986187843 +0.3533354758957622,0.7335770214292996 +0.3849974608723761,0.04934648754651483 +0.2898756527726552,0.7869144901790726 +0.08448432998070626,0.22004625890172896 +0.879633575640123,0.10822782274571519 +0.7278773248129519,0.6302375004062463 +0.6478414228676058,0.6329770486261423 +0.1328042623114607,0.10788146197301152 +0.15587074477682195,0.3989495845560094 +0.4507610472176645,0.9666944475658514 +0.49427286626572065,0.19268812025554655 +0.7551128624387465,0.7424410313295929 +0.5985504068583205,0.37876470469578627 +0.3963507582850402,0.5511404339045065 +0.23786925098329548,0.08879991813665367 +0.6612499068688581,0.8104895296854221 +0.44487857801705033,0.14264050978277742 +0.5707351868707634,0.6854172569536452 +0.045455889879423395,0.5880876410234352 +0.9508713924560749,0.07279899461038059 +0.4766009726299134,0.8910590134469583 +0.7232223455219867,0.9265806971618104 +0.22712045477179094,0.011754424333114577 +0.07449566137875119,0.051111652313343414 +0.16202175051898837,0.5673759492070618 +0.06793215433713473,0.696157570904117 +0.841319415109393,0.2821069758822008 +0.34957361470630444,0.6131944227471955 +0.3293853419406252,0.9171668695768935 +0.7271797039306637,0.16371611852149576 +0.6320604041993109,0.7743402931144787 +0.2544186278885525,0.07137103669820699 +0.5991360847244033,0.2074584635280453 +0.2458895460872344,0.8485140644050645 +0.917770065882375,0.9998469756001374 +0.7136080998806784,0.21479737378246522 +0.33695456141270164,0.3875063360645702 +0.16527482414621708,0.03991655669483635 +0.4826127353351317,0.8731481277918356 +0.924683711797135,0.10840686276141681 +0.8848385232430969,0.6956031958595175 +0.43900142035739187,0.5972046410376707 +0.5742772510031354,0.91219173752062 +0.7263236538248031,0.4368866450003794 +0.7260754026374974,0.39641439136100987 +0.7793571598156926,0.4292936868302499 +0.4650595110726622,0.6528951593246399 +0.8258706490484926,0.8911441554921625 +0.4329668774924468,0.633659733972842 +0.33869433782064584,0.6856535180562622 +0.9863813207011805,0.33962829440736264 +0.6833927300060325,0.7518310618426854 +0.3423559910293258,0.6712259664744722 +0.4502999114992805,0.2637099295952804 +0.7543181976025715,0.6351037999983783 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.15_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.15_size_100.csv new file mode 100644 index 0000000000..f6ac74ec89 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.15_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.08695069821436685,0.2116237172619656 +0.8414803333077148,0.8605920830364866 +0.41360735732595455,0.9151728160660461 +0.34028797551539514,0.32935281272639727 +0.5690376889758464,0.9479610757536399 +0.8544830859503374,0.8594561571793948 +0.6608761630687207,0.5298357163022888 +0.2760118768270329,0.0657869966668902 +0.5856894969542543,0.10947108601788957 +0.38205172367993645,0.8109114737087151 +0.24116056696494376,0.7491821107969725 +0.11141693099589378,0.23569340777727332 +0.9802459993703159,0.45045561494959874 +0.1488290508443587,0.19834179441212463 +0.4977700692997209,0.5312439048689782 +0.7278428536231535,0.06073423159229702 +0.22656527732572845,0.4811824055965932 +0.3665623509529238,0.17264924922274316 +0.511349477446785,0.7149511992137503 +0.022458287591872184,0.2001299401091568 +0.6828706025512814,0.19619440189144316 +0.5141213916383657,0.39665989313027866 +0.8485780771947316,0.9950314779058198 +0.9337303427686402,0.4646970067823019 +0.27357626967572324,0.09663635601251896 +0.9409964259130159,0.10889009065064359 +0.5180525571275221,0.5443246897478258 +0.9783415935603477,0.522332866246456 +0.9988850581283252,0.7177120498835193 +0.20696961976883632,0.1224288319887788 +0.36962097588929155,0.5863040065872192 +0.5819778169195381,0.7455936870713626 +0.6829275744633019,0.4156352659111158 +0.7297075107315623,0.8409290398908535 +0.3830909480886884,0.25057731359642255 +0.7969220975938364,0.22708536223188408 +0.9872260657649478,0.30771234577782935 +0.3109931828275685,0.019053053466482672 +0.972066430575642,0.48715305501908396 +0.23964779800300468,0.1645113676715788 +0.9985892153236683,0.7743355988665996 +0.21641986526311424,0.927720560552926 +0.9020591538392246,0.03841150474114946 +0.36201886296810637,0.09300414831513482 +0.8074462609524782,0.26773287252846645 +0.34451612826863676,0.3636419147347201 +0.976492468548845,0.47191951922375536 +0.7225879540589266,0.3033837909269986 +0.854893242714031,0.1466692268089559 +0.5032930225886068,0.8740409281394179 +0.5124588719064264,0.16909314877456555 +0.3412250402007948,0.11245979596047123 +0.9615798215465503,0.6290309684029656 +0.731759432318916,0.3255848099707107 +0.9723061640582783,0.9820354386344918 +0.6084668933351625,0.8701280155794962 +0.7859074633932379,0.5981294350599282 +0.2977934257560123,0.508399193245807 +0.3204818504921947,0.7100252233765603 +0.7781672082860289,0.7587769674576286 +0.8769103563021602,0.250954458682663 +0.439537580734798,0.6750289202018928 +0.2156112564328322,0.7061308521768731 +0.781257886043357,0.9410203262979433 +0.2620580913671896,0.3173830664002111 +0.3284197889078181,0.8350201527005766 +0.8937265657626771,0.7267557964647758 +0.6993798531144817,0.5626979575097727 +0.019478383882394645,0.031083957918365823 +0.40129893302226594,0.9389184017008634 +0.5351916835300643,0.5362850200802043 +0.5759330413064369,0.4328905054217869 +0.6462623338598887,0.5884129715131825 +0.7900783003149219,0.8490686462634331 +0.5699194743491875,0.8340872970520496 +0.20376448540750908,0.09622828481126755 +0.12076155259028559,0.009974585095668509 +0.2653584310044489,0.7052418309554109 +0.9501592077655668,0.6161455574553918 +0.9558452202299286,0.6062110035442598 +0.9358504675833736,0.970422085781143 +0.14243481547964243,0.09394375314672454 +0.17536528426756764,0.7839738815670259 +0.07778627285137518,0.8650810890237678 +0.49241150169479764,0.14198437118177415 +0.9773138747976138,0.5392243765183302 +0.37691368076260345,0.7262931699440205 +0.47043556134973397,0.9534073649681858 +0.374980966897975,0.10614342132663018 +0.8288137645530185,0.87785093851698 +0.2834424356569733,0.6773741535394386 +0.3833803627735538,0.14714167197196043 +0.5762205044019832,0.2587960654043957 +0.07927773972032454,0.573709063086034 +0.5315496987714952,0.9618229115229578 +0.139338390901245,0.23031670819244432 +0.5480720536508231,0.33137469139308334 +0.5051557295957783,0.6107418169340271 +0.3587554138352501,0.7394178771693394 +0.9525395340115208,0.4033012169349191 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.16_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.16_size_100.csv new file mode 100644 index 0000000000..5517690f43 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.16_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7459232213938364,0.7356441450455407 +0.5203421619995608,0.5745792172324155 +0.10652588978531069,0.8073286075858059 +0.45708886901021906,0.17386773322233762 +0.73881861709812,0.49301411276471746 +0.8057177494348342,0.3906496961463587 +0.8336856035992206,0.9774113691096852 +0.07449932172928542,0.25646903164093 +0.06293517689444461,0.9162874893641169 +0.061525404140426954,0.2601417386712561 +0.7488816710457706,0.9752275674173139 +0.704743352607104,0.49116512647183935 +0.9825323488765197,0.8707200704825389 +0.9660304340180059,0.8434131868809764 +0.08691656958878113,0.9356565367602502 +0.03388854925905238,0.2364474720311081 +0.35480536988605027,0.8088193739401555 +0.9576370146266617,0.7891262306590612 +0.49651083288111963,0.6986396662779102 +0.6733945199038281,0.8168426747735176 +0.5051329763316399,0.8143228062437622 +0.5975870393190377,0.694040886481436 +0.39144001862528877,0.8982859691872805 +0.8521637744414864,0.7380965582404417 +0.042358958537990765,0.7667186316563239 +0.23547501206117766,0.1067622210873066 +0.5757648480644015,0.5093993507557435 +0.5765135714371382,0.07615453445140674 +0.6932926074921275,0.09775399604126639 +0.6510585747347082,0.6822620543104687 +0.8581173907969228,0.7161725601596926 +0.15848159832377945,0.21197689690154997 +0.48509297742665525,0.2733266295974794 +0.7927414667602202,0.374197643314504 +0.9158724131255875,0.5392600795678718 +0.3610191693725191,0.5310263011621001 +0.10812801038225056,0.1502721897588376 +0.5423942307894843,0.8521859397744727 +0.5616164182846219,0.7905641437627646 +0.40564146985931004,0.8061703552526659 +0.1744085222908594,0.8831501976165094 +0.9601085292955935,0.6111818723633048 +0.8754348213654835,0.12489188591593842 +0.054068592627656176,0.7949036930179618 +0.11847368371158401,0.87924297088677 +0.25581592137410347,0.5143034111252403 +0.3510943623729421,0.7617317847308898 +0.7703572335782309,0.9669753656649017 +0.7687059211438287,0.6967296373644565 +0.47065801486558323,0.7934899091949547 +0.22151478078928005,0.9313149505635077 +0.6304119402777582,0.4929816278910905 +0.9254119980906123,0.09947445403748961 +0.3073678821529192,0.03825474887160574 +0.4811577921067084,0.7028520063757837 +0.6171264177276887,0.6950942586722564 +0.22289769747121024,0.26185642630188233 +0.9076469707218868,0.5989865526568964 +0.7804746407134235,0.8144828712553038 +0.6921184684550932,0.5313895502913407 +0.972263995881251,0.8822034823864309 +0.41437607999823634,0.20773468773972692 +0.22805717988489443,0.7379208107480593 +0.4539300443859903,0.8782590265389132 +0.4711821410577941,0.9492662421327537 +0.15825774893048622,0.19939377677749137 +0.76111895764323,0.931905992352352 +0.6691965438075262,0.8067132981667421 +0.7843987386131939,0.537517435619339 +0.8965167054657139,0.9032352117231841 +0.6517009503416059,0.5746812083714306 +0.36817782474221783,0.7361200752412416 +0.809885963390188,0.6363958756288015 +0.606600776921782,0.268520729450589 +0.03267983066272229,0.24336919970565757 +0.3637128635734522,0.388315247994393 +0.5672975749642866,0.5352563738824058 +0.16920526379042156,0.9854934137220772 +0.018423503562450594,0.3668066058235841 +0.823187826419038,0.9880852822460856 +0.06102207225193379,0.4899102501031133 +0.6137826594502641,0.779211974032036 +0.07776291723811934,0.26822636236151226 +0.4752594840091854,0.508201723109313 +0.8722440630000605,0.9077541189535259 +0.02934956355036289,0.5742941214070764 +0.3312228532848398,0.666784621908476 +0.6782158058851016,0.16916845748133758 +0.8703150295835682,0.9906477029008404 +0.4634657672721454,0.0626654576480537 +0.4831981724662121,0.7192641596735785 +0.4897456737610847,0.746264942698317 +0.24739188500859283,0.09692902888834781 +0.9485853923039427,0.7390936100220892 +0.8615255384466699,0.04890627415640891 +0.8236516144800147,0.1847601515623543 +0.9235910723316505,0.9685394132243867 +0.8508356736200464,0.8978050073301238 +0.9993138852626602,0.5995015420553245 +0.5854465851984738,0.9012063002715232 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.17_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.17_size_100.csv new file mode 100644 index 0000000000..2a7568c7fd --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.17_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7144265764630858,0.9000916955999732 +0.9895237734036773,0.899567205192454 +0.5917715857654557,0.4265995946500502 +0.9191651834662724,0.5746463583299288 +0.4033195488586764,0.5525554573291854 +0.40698775472164006,0.7518714844686563 +0.5658055654061545,0.8554392132540933 +0.16780459604070996,0.5273840077951458 +0.5756263305214807,0.8640184822139313 +0.2728215917443898,0.0935123890835094 +0.5883254268005653,0.09307829799283829 +0.14851372234115906,0.6538509139167374 +0.6193906976406929,0.3238665595417903 +0.39099283992687806,0.03621924977037583 +0.4196949039770297,0.20009049371254828 +0.35252354892822735,0.8140827026709274 +0.8663398190419327,0.11055763776286576 +0.8678281958127974,0.4027998656306677 +0.13174484196670044,0.1751895099573333 +0.26572042139259777,0.19025058682137186 +0.2949408500318723,0.9930882955821907 +0.8975758899931625,0.6125478984886747 +0.4378262906174598,0.6093400628643786 +0.5721906202043737,0.007034619724217539 +0.9110308599294066,0.3389116979622047 +0.17091925993839496,0.4117063898446496 +0.3923235043376284,0.24069334976500567 +0.8091439646514624,0.5560448263312393 +0.4319452419035852,0.043393866178256135 +0.5720380814538131,0.9917050443524819 +0.4120563635035769,0.3731434297712188 +0.9195802458559796,0.8710586078057125 +0.055465714056213034,0.02877438537302973 +0.05328158308462372,0.6512995691992504 +0.3032768453232848,0.07462058545552941 +0.1961844075357339,0.18221660680568863 +0.8989148218882163,0.8350270668671487 +0.5764131418286269,0.6089771837457483 +0.6593183729956886,0.5525701554222062 +0.44541680126787564,0.3332357636884724 +0.7560742072563476,0.36751434020126345 +0.9885734514765854,0.2303159684234562 +0.7674387605381616,0.7418651464535164 +0.8657477294040334,0.7975923831309868 +0.5909462811479892,0.4600545143015046 +0.06828021077181556,0.5862151310755154 +0.6945409606066285,0.39190080895364 +0.1681401400267456,0.40005522728732223 +0.3413226991692553,0.03698518469526374 +0.4196563049173683,0.05114278739225553 +0.9763038049983307,0.8015049773127774 +0.2849213157265905,0.15143943504224594 +0.8736031825264502,0.5352261850972002 +0.3182822009724682,0.44625953399334517 +0.8574003261184737,0.5769142793115885 +0.32745698320407224,0.4249626190276229 +0.8406634551962495,0.40454741437528924 +0.04818365200265018,0.04558264907768239 +0.09723114040649217,0.31795227908457036 +0.5912175747601287,0.9029249820448185 +0.8780676761192174,0.5675607396469968 +0.4666260038390859,0.23425472832244415 +0.009607220537097172,0.48453053612965524 +0.04964194164154401,0.7812058503182425 +0.9059849898602272,0.8156071225375348 +0.5372881597425014,0.6923105268854177 +0.5748654819694139,0.36181858922540466 +0.19631208746034334,0.3493254702124441 +0.13379476375295302,0.12346940445751498 +0.8598195703232796,0.5077171200229036 +0.058455577414750604,0.24800407263145213 +0.4614278683567965,0.4807031558662166 +0.6747000089234982,0.8961965940950715 +0.3814929908991749,0.7177171671082757 +0.6383983091327795,0.7735066851123025 +0.7092803597507157,0.8079240635213488 +0.7305105021197273,0.8564655515160765 +0.9451296220406489,0.7386620503639157 +0.2949238643902764,0.06751191201048601 +0.45015648971621136,0.9315035493532247 +0.2897510120790696,0.5105839816171687 +0.7765466055153705,0.7851736192412353 +0.07121993462931131,0.34211735880769145 +0.0970338334543629,0.23271421510833762 +0.4819619151602611,0.005519724562568495 +0.12717727862631412,0.3024517600433493 +0.9179348117362597,0.2646453490632714 +0.41257341087784893,0.9366679314320788 +0.40474169767004875,0.8977866599138045 +0.16059341092924684,0.2711262949502645 +0.18902024735383288,0.25479734096048856 +0.55789623220339,0.5575540572725123 +0.42069245719992976,0.9696715708339445 +0.29455617998474026,0.8976917421004966 +0.6102270836589595,0.591995167412923 +0.27283930823110286,0.8309091096494554 +0.7898892346653904,0.7911546997296687 +0.5919773357082728,0.8294371420651276 +0.7594642284021889,0.022947357487250075 +0.17025275605277623,0.19286550840899092 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.18_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.18_size_100.csv new file mode 100644 index 0000000000..1f4de01451 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.18_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.39634179498857347,0.2717925281654006 +0.7822114221126762,0.8930987257013379 +0.8884407108191805,0.3861777653661356 +0.010398964569863778,0.0353991055989033 +0.10562490374510503,0.23707631466891793 +0.09098828980659035,0.49037339989658085 +0.23001893885669739,0.201224044150844 +0.4690364779666397,0.36004539533162006 +0.5125106205903943,0.44211011866376715 +0.08797179392512983,0.30751455443004755 +0.8417608422933046,0.6728410736153482 +0.3007900555856469,0.04715651884555949 +0.9163310707755983,0.20737864376885257 +0.9418888320676775,0.6837360995551075 +0.4055584186640707,0.5358089167762051 +0.06287210842872992,0.9493851303620794 +0.9415268546777211,0.7461012588444855 +0.030659513824754847,0.37134837569443535 +0.8932037283007546,0.507305413184068 +0.7356105743772008,0.8952135377493728 +0.8532873869621914,0.14049663369727794 +0.3411165529578125,0.29984799928881034 +0.7455718800387754,0.32146504858704983 +0.03941052678938961,0.6437679763555945 +0.41677749042165546,0.0513215564061672 +0.25673684348342457,0.55658696635066 +0.11409448885127532,0.2977447637664919 +0.4868065210435333,0.9386427461173443 +0.7331619083978672,0.632248311137036 +0.7642335297122735,0.8688200915089346 +0.8081713722732933,0.5536482269585421 +0.9317960143777578,0.786892691997187 +0.5775146375905126,0.1895083397802107 +0.6313605812624042,0.22217111184805416 +0.8926487050837152,0.3736388660507374 +0.6975042318747771,0.32282193187616676 +0.7165215247234351,0.9002997430485506 +0.8059934583728319,0.8520372755577881 +0.21817116504235984,0.42098004260498506 +0.44032340372950585,0.5609457497863177 +0.3968333045289695,0.12331617268634953 +0.403993192509407,0.4603991833802617 +0.2924197623515002,0.9629377406233339 +0.6392416172433044,0.27870660506664247 +0.6342068952297182,0.9817999962816397 +0.1753240126632028,0.19503358807928645 +0.04410362952195679,0.44789077400912364 +0.844464621201031,0.7216616329714983 +0.3589084497139313,0.37061478301515205 +0.06324340244859028,0.047747358933157125 +0.12151751015736412,0.3366736701152764 +0.1632126711204276,0.25442586646459875 +0.011306615285215593,0.38049443379975445 +0.19238847885241783,0.7644892373919886 +0.6012243580434411,0.11030602713046722 +0.8018119901427143,0.28949110683028545 +0.6318981768478176,0.6045700922592219 +0.7753905276743587,0.887045009124662 +0.5362218858337204,0.009379623453155461 +0.3058425369297124,0.9140505612913736 +0.6991642140039265,0.292625893872157 +0.5728371739543789,0.5273232250934848 +0.2550938781594829,0.7530274676319064 +0.04764729727066708,0.7549417874987912 +0.902591768899172,0.22530819554877696 +0.37816619695357845,0.8047168137224545 +0.9282034651670434,0.7787335996927673 +0.4669733934526251,0.14912028427776175 +0.6004060909342298,0.7234511774965564 +0.31263239441448154,0.8567621336795326 +0.38597005542145035,0.9764979182785156 +0.47975530127917587,0.9206109432550545 +0.7373242524213186,0.08997764642136874 +0.11800277549970328,0.7252613437035318 +0.22121974270732242,0.430898270286006 +0.5508959370317398,0.5118996509604874 +0.6728106105350409,0.4775057141153648 +0.3233522700059144,0.9588547402110317 +0.35293628766008744,0.48604646314207084 +0.3793690268623169,0.5710900161712406 +0.38308152214848423,0.7397537796786968 +0.21499960569883503,0.37034523895997373 +0.012959637421503856,0.5789412645813635 +0.269678011923971,0.10976491497184737 +0.9751129865502747,0.38259035495163246 +0.9691866598725465,0.8085239763227181 +0.1894240076839177,0.7045019248723386 +0.9192787022811832,0.4591871530456014 +0.4505927040702825,0.2823261457706579 +0.2101937278048427,0.0894583059248042 +0.18323712665821784,0.5439792356653014 +0.7022438404339784,0.33614853605165307 +0.530900060040625,0.7320592926278564 +0.9159387559507248,0.6847212530872976 +0.6435871956952501,0.5486495787246202 +0.7615089278754074,0.774760148224442 +0.8539015754446031,0.3685652842627344 +0.7889180788278567,0.005494009666087207 +0.7988888287649557,0.6573112108847795 +0.5293768992045829,0.7987185182410224 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.19_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.19_size_100.csv new file mode 100644 index 0000000000..1b5b7f3d0e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.19_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.896142013127778,0.45732507977585946 +0.27133035844275294,0.2951050480182263 +0.13782474779823628,0.6503158454508827 +0.37274254493683556,0.3497082627717538 +0.05713478996763427,0.30981102444639097 +0.5836561174122364,0.1203835569885825 +0.8490903480170459,0.9575173771965879 +0.776304212351768,0.728612992477753 +0.64956104661574,0.5171054725400076 +0.05463821558201576,0.2105828279053446 +0.9781754974900312,0.8886539055769518 +0.15438651269523246,0.87923981670168 +0.09570554793535624,0.4517449190094087 +0.8670786001702838,0.3342991929266721 +0.7151537646288139,0.4914322052906202 +0.16963598656299683,0.32534372028023284 +0.2916349250946536,0.319989416848382 +0.7497118438811661,0.9398684345724186 +0.07809528951405137,0.8977977296937486 +0.44417193471542304,0.41061824604671116 +0.0792042987805921,0.012485745293217831 +0.9865325559805042,0.7221192280859571 +0.02178608586458597,0.6307558576261711 +0.46443641454428897,0.13668476395127116 +0.7185747026282017,0.11987481426226881 +0.8575344885878873,0.9832007185571066 +0.4274309491271179,0.5261227154015093 +0.7258378061678075,0.4988547774001777 +0.40959236957419587,0.06568239289137073 +0.627396721784042,0.03217088961921294 +0.2804926884637594,0.4520821700010977 +0.7766782273144195,0.26914556544217555 +0.4706846333960757,0.4596550289555326 +0.9684910932678614,0.22184968604098454 +0.6379535453910496,0.8566821625172554 +0.8095394452061726,0.9823481037538415 +0.35707453883114204,0.10927824817989312 +0.9898288651629602,0.8260475453769797 +0.40877045037963033,0.4398278335871047 +0.8823946655053707,0.033533300221879836 +0.9856506194023079,0.8602931679692871 +0.6968237685562821,0.6101696331822001 +0.38295425023876595,0.9665911046691624 +0.9158012136262894,0.13766349608336653 +0.8037376231248804,0.27977641410647597 +0.4495319784681059,0.625444651468395 +0.8558688139727844,0.6283186600731027 +0.14750626012192297,0.4678756451105602 +0.4389684253045747,0.30703645440592536 +0.9334314685904024,0.6646664318859623 +0.21914736832321763,0.26633262115399203 +0.6059671719832085,0.20192566105879656 +0.3345282875145842,0.11895442345670132 +0.9410485226343851,0.8156059483308901 +0.6271995485214356,0.5994791727816091 +0.572212088488242,0.4164139446473556 +0.06273260635777866,0.1433508433293466 +0.9527920366272737,0.9551604913541477 +0.9041302268809026,0.6782801487497118 +0.7503491032691549,0.32873978433140394 +0.8960127324428195,0.7809902271713964 +0.3762094770596245,0.6444723895822321 +0.8942974539030478,0.3903558657464675 +0.2848751450843935,0.7111959870720288 +0.31688454024523827,0.1660295973012439 +0.511934319120312,0.25929823313922856 +0.7805889659977121,0.9551399023133763 +0.5301381664890383,0.08021402766254343 +0.3059544974756197,0.15049251852971246 +0.777492137628945,0.8053911008479913 +0.9058965424524907,0.9107716826554937 +0.1468983118756278,0.40497770071146055 +0.6726177106807959,0.8302896001146352 +0.22210583533298062,0.37127219000540335 +0.010403516589848949,0.4112787617512619 +0.5574403822925813,0.6726482413020508 +0.19277300194461483,0.26644317371976733 +0.1975181676202195,0.30324917956994735 +0.7443166807727719,0.5159554390700307 +0.18422409142889618,0.06013579656592588 +0.01694093269922714,0.33217935308060115 +0.0692587162543481,0.7510572457388671 +0.10875830576660078,0.1008302281881503 +0.8371939487297007,0.5732670793977301 +0.06146882020786182,0.3630828351274003 +0.7711362032264412,0.21933446789238342 +0.4385615555714516,0.6727557433890676 +0.036431542580268594,0.020259175986056588 +0.5290985411503495,0.055688021596424886 +0.6132706134866694,0.9029541282121656 +0.19759808888532293,0.36907007561270344 +0.9746264180421145,0.7466179306214419 +0.4885015670541045,0.653140960457203 +0.6932351016200794,0.39330526629215223 +0.6959424154532697,0.8714956862950545 +0.6654444237320275,0.8942534734107844 +0.5365797025304232,0.6452908487314934 +0.5732978934297075,0.8076502788180544 +0.08568189741102483,0.3875992190977298 +0.7761233912388539,0.06342930936033425 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.1_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.1_size_100.csv new file mode 100644 index 0000000000..f213faab0e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.1_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.3015881973195048,0.5884524335877349 +0.7488768483705427,0.030252470081591376 +0.7268762242339456,0.38525876355270766 +0.11851152209753307,0.09240131652584416 +0.8967096442457075,0.10241489815439853 +0.8936891121302182,0.053979966915463196 +0.4071468696069074,0.09464835015149159 +0.7062605201521012,0.8216565513379109 +0.24541064520800077,0.42300212612279786 +0.13692106017579797,0.31526940315519286 +0.7530930416526208,0.0832042838862021 +0.8642916408994997,0.9678562164053203 +0.4105438473046862,0.0968616366746774 +0.6259635376523166,0.5285018566560331 +0.11230043256744832,0.9739404330302482 +0.7387351211649535,0.8515516688920308 +0.17261160767797534,0.39710953843567975 +0.4166380473123422,0.4771045408191051 +0.33223614560971493,0.687284188582594 +0.03892779466414531,0.8849692196764454 +0.5681190310946369,0.5566380848428258 +0.6526545758212453,0.5326209584625825 +0.9796644645163344,0.1476321651405989 +0.6910234657724312,0.42564366533695513 +0.5016111869631915,0.5992966222104461 +0.5418601254282525,0.6789666071734382 +0.5619918636555763,0.6052273207685812 +0.06403557147777683,0.11038190504101669 +0.7628221080208659,0.6378083558833978 +0.8756009601474384,0.25614156807762223 +0.6532631569612057,0.9151829625263219 +0.35513621095093795,0.2501998022379489 +0.28030466549227684,0.6701934722702511 +0.44998392963927347,0.030747502985619457 +0.9257966319575018,0.8490194998100469 +0.7249534779637095,0.1636326880906815 +0.28951268982943956,0.8568903969546837 +0.33632054271968304,0.8952228141493856 +0.6487817089100018,0.052577056532800925 +0.051522528988055316,0.07711887806748952 +0.5050026054137106,0.4159875882454457 +0.3385568446614514,0.9345578108687871 +0.7831220069828588,0.8317430075419049 +0.7931734153717834,0.3080150506280056 +0.6908889167949528,0.00640250584929658 +0.9743153473191389,0.33552825562293087 +0.299533449810192,0.5346271221872441 +0.0824628518508902,0.32994092559970806 +0.6180227190208235,0.6229491806832221 +0.13576176648780758,0.2608845218537037 +0.4494084215950983,0.6334022556582694 +0.8725601712681268,0.39671401604257167 +0.09156532589431382,0.9495193777026296 +0.04714985781980552,0.9858701542632715 +0.7832784931975796,0.8106944505098002 +0.013653546773891634,0.5641220357374103 +0.9645531887491321,0.4027440078798979 +0.7113007391624894,0.2259902246866835 +0.5379859013070352,0.08827583704747355 +0.6726713629008819,0.6755206925828143 +0.9537652897184662,0.9161936635509398 +0.9927203630836422,0.9506869519124657 +0.5693333541007104,0.6033938901508532 +0.1041981933213938,0.559454402961182 +0.7711899137091106,0.4766311549337348 +0.4425897966850376,0.1854055527794125 +0.07234045595037075,0.5873096622696957 +0.40923781496936795,0.8525760707284824 +0.8852620981513337,0.2540123814647362 +0.05946033307736037,0.11386106863270812 +0.8065293454755629,0.7386977928043823 +0.5971556976952175,0.9889795947773377 +0.7399025488489468,0.9826501865799853 +0.4412205994631212,0.9430447385090434 +0.023250572331742436,0.6293058409936592 +0.9036607190499573,0.8986540129380576 +0.4986075170619343,0.770235838252969 +0.48409238628955553,0.8713362241095649 +0.7506012736688057,0.7075772037571776 +0.6191803063342385,0.03867519662486807 +0.5151483898733058,0.4995717630540747 +0.5044886943876561,0.810830694944526 +0.9894011693892432,0.1407391644770643 +0.2919341842761264,0.3793875442799855 +0.8273942701369298,0.9331648078501609 +0.8163810155481361,0.6726456354433634 +0.012764365247680987,0.16883645854491225 +0.6215856799784819,0.4359747728204676 +0.313330964166578,0.42189881697238796 +0.4643292847268724,0.10817887724782072 +0.16503621661950263,0.26724199335797544 +0.0785459988880971,0.6582576838042904 +0.37615777768541075,0.09804612286096548 +0.5661707171603408,0.251972469907522 +0.9323309208176285,0.5510193601213815 +0.8987431800649079,0.9252463580536132 +0.34335367341860346,0.9496161238132722 +0.6661603093816788,0.67761012189941 +0.12078298951594668,0.10627496988355345 +0.6784463795221444,0.7390311204609632 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.21_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.21_size_100.csv new file mode 100644 index 0000000000..b16457db07 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.21_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8655343128262301,0.6254569993080312 +0.7914212055887466,0.3512301520765676 +0.3559701147105818,0.873929708035232 +0.1833434444257151,0.7927662348064076 +0.4119649239160228,0.10266719345298464 +0.40242546706488036,0.238138233915689 +0.6889445859059947,0.9104863588411427 +0.695720082161015,0.7750477054029185 +0.8727607260533774,0.7367327061116337 +0.2846688260961481,0.22334145463109756 +0.24340865818001994,0.5546649863103318 +0.40909823211102436,0.08610538428432785 +0.10325455389284716,0.12185360443863658 +0.21838212010631614,0.9164092202533627 +0.9547914011513348,0.19483099772219542 +0.7140236187802171,0.38693679980116796 +0.41634348455439973,0.10060878344133722 +0.24115671126881977,0.832446237076041 +0.22675479261911768,0.6971230843726294 +0.832511125488836,0.28740197569113723 +0.020032061201251894,0.46281822806879114 +0.4368425055790508,0.5324916042970363 +0.8890233776235735,0.6225708484405196 +0.6690065295987649,0.20590862614600042 +0.622358734968859,0.6129346475577928 +0.9167443843402306,0.3147599875258031 +0.6048182200463185,0.05753016407444167 +0.9712194755793585,0.9904100919889485 +0.02999172168703379,0.21751646083850779 +0.30573941268597693,0.17878097195357356 +0.5660411530668205,0.6261794269859976 +0.1869633741552485,0.8782494885925807 +0.240705330519059,0.36841175926558695 +0.9750095582645212,0.5924008189036931 +0.5781246101502472,0.9540477761817987 +0.051366908856628646,0.8220608361016958 +0.8328579302479528,0.41553915596472535 +0.1126041445152074,0.17314091145139343 +0.2357104031869925,0.37369331199800715 +0.5592220466349132,0.06984282011797271 +0.9230212671205178,0.6087092157230743 +0.9253282891371978,0.7966220003551765 +0.8980431836343895,0.7251977461922018 +0.00935192617903946,0.09669765194642699 +0.7105205646764283,0.45295272255858054 +0.8811356396937324,0.24613531424893442 +0.2379053431920259,0.5856371849120182 +0.923143583297585,0.902043292555405 +0.7128288134316804,0.14636508352829514 +0.6576205524705528,0.1305654169281823 +0.5940728066749257,0.870904730221618 +0.5325361108009097,0.3943991914195748 +0.40137182211736844,0.01948409919393973 +0.817588143524883,0.8317327958869564 +0.6412619321467096,0.3994206596019854 +0.45190070094870316,0.14048325803778444 +0.28475416287262056,0.23506197913231386 +0.035280670425111516,0.14447428182077193 +0.052570606502658435,0.021729736472645422 +0.36968704185642076,0.48819789008581677 +0.5584342831771895,0.7154467038421604 +0.7818373753126464,0.6949794167154141 +0.6852742958391663,0.845359526865959 +0.9882704167669638,0.2853641208675216 +0.8722793115077647,0.9441878517370121 +0.044242064049191177,0.31053881225974134 +0.147662905064947,0.03754895538826247 +0.9890055617709492,0.8806182232398989 +0.5195132690160414,0.05815024119832801 +0.2281689493992195,0.926006549016543 +0.28326320856453757,0.43142384582272353 +0.26379437213821577,0.04300506014866273 +0.2671913145878644,0.7515778756096924 +0.9997447057658462,0.8563506739701727 +0.780286688479734,0.7535636026392663 +0.9391875933582772,0.5530160674994937 +0.059274114404562095,0.1713785773762806 +0.5670328537426327,0.7174826499288445 +0.843467878507987,0.7536772960175354 +0.0738657829889795,0.48942591760714327 +0.33859678710514074,0.7190201058291341 +0.5740404953265484,0.6035210432931798 +0.4729070754428889,0.21158096591564185 +0.29052358679375756,0.4995118441100687 +0.5951654725286089,0.12564374472975576 +0.030382631391887238,0.2966954197873721 +0.576104312861798,0.9444593115266542 +0.17041134846839362,0.13414006487956553 +0.6231036865526098,0.9521676281189027 +0.01673975753526169,0.5141722198003895 +0.2909857040796101,0.05598727796650943 +0.6579762849897304,0.47918288792876174 +0.7330030372956147,0.5302775112824827 +0.3758154304206488,0.45341776554339575 +0.21026964436090284,0.14845043638643274 +0.28384066656361207,0.579382313721632 +0.40872313456927156,0.19795731649248982 +0.34457658864215857,0.7118531032871122 +0.699698349659885,0.8365440748455211 +0.7118037103208829,0.8668147140795017 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.22_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.22_size_100.csv new file mode 100644 index 0000000000..cc2fda7997 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.22_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.41867821726454446,0.9284358737182724 +0.7143963800877629,0.2617718672952498 +0.7429649066653357,0.3779606507160629 +0.6239411432435624,0.9188312173741197 +0.6410107304007491,0.20591929789492797 +0.6635524710850266,0.08665301497653133 +0.8357644020998442,0.6577147653140656 +0.7688585889278968,0.4127062308468273 +0.5623175656535304,0.09894062778573692 +0.6935969576057202,0.986184722770024 +0.9731416782296298,0.9628678674952431 +0.26967337706711236,0.11418363634511985 +0.7054355833683881,0.26123981230538984 +0.3024730907737172,0.40320923156896415 +0.4664336121390762,0.7274975623466545 +0.5606497961830427,0.3507691419136122 +0.9609718664572304,0.9431484531455525 +0.02803864601371764,0.20138757284733838 +0.948029196521558,0.7733226424634345 +0.42401109177516305,0.9049720255348785 +0.27436334824806674,0.48430040884347464 +0.8059065259518937,0.45809382927960324 +0.6297568166258478,0.21692594601138676 +0.5205012861764892,0.3756177710365607 +0.16861201527528852,0.05050169355198458 +0.27682547735642227,0.18982219260441047 +0.34048232623998564,0.7855197639580873 +0.1447043502726036,0.300223495765611 +0.3579024847052378,0.6445570596814078 +0.5716987462987912,0.6925291201656522 +0.6946656783734606,0.021529558826221817 +0.3600234427236326,0.9066013981771908 +0.6891600409099985,0.7758457591608058 +0.6499149584560746,0.43368699311393694 +0.27069729799759,0.762645019577914 +0.37457037989179587,0.11314883395562741 +0.21337727858542294,0.5915193719600778 +0.5134808589912486,0.2207650254480517 +0.8934296064400734,0.61751706135911 +0.9830430164493735,0.36505079187303224 +0.6172223509743275,0.9645926795042424 +0.2564933889932275,0.07188185336450076 +0.02864339296704521,0.1178831675724501 +0.371090282257609,0.11851432395858069 +0.5194148182623636,0.6498351329596392 +0.7949448871372815,0.10539064372691193 +0.19648858120571716,0.2045289192912303 +0.7828884066884393,0.461509550805068 +0.056887275561802175,0.0842768681866844 +0.9536412787761583,0.5363711060775489 +0.4135482991696159,0.42442949577234657 +0.8842262086668864,0.4943434302581348 +0.5689058839245282,0.8091634896454629 +0.3137118098019195,0.8533699772647256 +0.6908549379394471,0.6215409836001966 +0.36742646122547007,0.30862361770819224 +0.7180077426488346,0.28646546399947137 +0.30472266389670233,0.06634346135834268 +0.04727901425145198,0.7787320218407106 +0.2401277860220813,0.5433127641440644 +0.44578260040783124,0.7843043805946959 +0.7376539981328039,0.6477321220522909 +0.37488610471345607,0.9098998946618612 +0.7099857287401079,0.525428663403186 +0.02664778810341506,0.33813011372946755 +0.593219144955607,0.770773853267138 +0.4310248114941858,0.8820289852461802 +0.12977235839245954,0.44258947557440775 +0.7277967854872669,0.5214591014968549 +0.11949930842447387,0.21667341550534852 +0.21519158133479943,0.20232320472603033 +0.6206736744311083,0.6655417535047488 +0.6979157343589836,0.3545358997556759 +0.720007283656903,0.06659089333913926 +0.1638869376754502,0.26410238387142265 +0.09533519310967281,0.37552374804251704 +0.7409129654819241,0.20778346565886902 +0.7209148895021825,0.594292734179583 +0.6997615556515825,0.28504241460049284 +0.2764026361983479,0.6431730390779622 +0.6293056953572259,0.318100147810504 +0.9332870264086838,0.541573224381847 +0.2745964684885026,0.5650131895881964 +0.5945703655349774,0.1454777815683102 +0.39511415175110165,0.28744365891583873 +0.03336270907026562,0.8964657416541177 +0.11058799131953134,0.13491872787970305 +0.9704605849476504,0.30439680482141707 +0.786199809038892,0.1659677446657531 +0.8101398599566729,0.7906732539459457 +0.8927285500753828,0.5272650114720818 +0.6758727726644331,0.6478757350174431 +0.4406473613248827,0.38311472602457386 +0.33294828307747243,0.6594475975152501 +0.5167650883190129,0.7702507638451264 +0.6256275437365768,0.9613754559552237 +0.9053046210019771,0.39875066420502414 +0.6472417195377135,0.8156839093060833 +0.3375330521570923,0.16662396452245992 +0.7132985813473245,0.021324025343779807 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.23_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.23_size_100.csv new file mode 100644 index 0000000000..94f317aac0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.23_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5742258511371456,0.3224617755696312 +0.41416454247716683,0.5063556195838386 +0.4848238007783653,0.913180929081074 +0.17915973513686395,0.0758969860700976 +0.7177972855931206,0.8874904347075356 +0.7657016460711439,0.9733128197839024 +0.4751124241311361,0.2089399357163187 +0.7212127299938346,0.7755623131390927 +0.7362469192974724,0.32401584292366836 +0.6430660057804514,0.9841081158319045 +0.6600267457630906,0.6227790180531158 +0.21051949568061662,0.5204139038248443 +0.2853683121252808,0.5020847993343425 +0.47952369958605967,0.8457745391549586 +0.036272909220568694,0.391338095360476 +0.6064296787781694,0.9638491250461703 +0.4842589590763552,0.9291217654719909 +0.23742405130455257,0.29695741361280725 +0.629241333372422,0.9998518133521948 +0.9575934946070386,0.7120722061388127 +0.3804561228468607,0.2804070841181961 +0.5693564927576145,0.5830134385870787 +0.12739781079980667,0.04443368751270432 +0.7117787877645576,0.41051399419795015 +0.22572161230207738,0.8339159001707603 +0.24444368628064417,0.5663399980670056 +0.8319982097046109,0.2531623158115098 +0.5447315269848428,0.5800775328483603 +0.2750782075153966,0.03665879832747726 +0.969180871827193,0.466504940349348 +0.42845102967067017,0.0021670435716404923 +0.34268311420367603,0.5345015449036982 +0.7060335020766637,0.09287276761125812 +0.5652097292715238,0.5898494780508209 +0.01654657841736451,0.09715247665115317 +0.7904364492705189,0.09747956558400378 +0.3708814401343289,0.581987571409372 +0.8873656274830417,0.03559109253697812 +0.22965409727547992,0.04865869601305872 +0.06256393492298917,0.12574723105751112 +0.9882026815186343,0.9044342046976485 +0.03392979574442945,0.009614425459272713 +0.41443284250146817,0.2440695308994198 +0.016359141400214328,0.3947489197445573 +0.774144958145318,0.7036651324805516 +0.7564667708476138,0.3999490057774555 +0.8206629755916399,0.5555015236705512 +0.15173431005847,0.44700521831852374 +0.1486252427312006,0.4023552489973102 +0.52628379287882,0.25801785994312887 +0.7394711483226077,0.8164718431573954 +0.44343748501953173,0.01991232340555793 +0.44891951079612535,0.2421663282305802 +0.17032386512049935,0.3410373534306017 +0.40639437060757855,0.3854449178412085 +0.7098289875866283,0.3782560715001754 +0.45290085217417697,0.5309946157673949 +0.26215231024537755,0.30614036898992536 +0.437144739628631,0.6447655868949564 +0.8414320574091609,0.689370646873959 +0.9342345300761707,0.8990054638292746 +0.12590648444079067,0.12450479328827285 +0.7100612631518227,0.833995578943703 +0.7605154258721178,0.18645294459659162 +0.7642510682297963,0.14569132473135377 +0.4934248433906039,0.8837619635695955 +0.1781813032403609,0.9415795625513845 +0.1306233727887462,0.0433308487835502 +0.7054218444987742,0.7974291436558154 +0.7727350641457819,0.9208571065712711 +0.48688469105081045,0.5662509728110791 +0.71828296267325,0.12204950756341837 +0.9071847074835659,0.4435896673660853 +0.8491457949587715,0.590619209256649 +0.21786987372358924,0.8693301420212927 +0.7842231891687867,0.8644447812239956 +0.7073515059794215,0.28023474211335564 +0.05803304610298243,0.973515489617121 +0.05786302253949005,0.27684062952536936 +0.4787876023837342,0.190369839546442 +0.17837669451209093,0.387640580878302 +0.01359659847280148,0.16951423609673927 +0.1909524785140227,0.4930576713102375 +0.870516388731065,0.6080689928839961 +0.1537451626013005,0.043124286153141844 +0.8745501467468236,0.7921802911059632 +0.9292164350522422,0.5949446515491063 +0.7106943174284396,0.6306937596998378 +0.5857392349849603,0.7210887606635721 +0.5229660676400312,0.572998903176895 +0.10025176823454168,0.18512035373545394 +0.03986769638454557,0.19220965747493812 +0.7643118947139573,0.07625893614736567 +0.434031064104499,0.11719339268178264 +0.5033089255088447,0.9353235725948864 +0.8801610054497109,0.21980335095424602 +0.15641742173827222,0.5764163359218666 +0.17248510800337036,0.8719249787962504 +0.5444013704791717,0.9111475937814818 +0.8322849813915632,0.26896619645894915 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.24_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.24_size_100.csv new file mode 100644 index 0000000000..1d30ad9178 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.24_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.00175858433526066,0.2903939211612917 +0.08661371980769872,0.35300777259274796 +0.9650737420988506,0.8959400880316624 +0.4462816558367032,0.3792238882112467 +0.00692623597396802,0.22053424398116622 +0.5195947868651982,0.16740749324994608 +0.8767988901053301,0.9810475150987685 +0.7374742902031811,0.9288273632778093 +0.3542520991598501,0.45969338029838397 +0.48899981201396203,0.3674477709577859 +0.12868262598581603,0.3491077835722586 +0.24683566957852754,0.142262977886428 +0.5464755251364426,0.8088281172436962 +0.40113182660125557,0.5052976629291009 +0.13785936571104124,0.353634173799824 +0.2801501954883996,0.8724063855325834 +0.0708135064144747,0.39754170607166706 +0.856188070698206,0.854992807927237 +0.6571556690121317,0.6305776452279561 +0.35622474345086474,0.26356816649008397 +0.8977490287952803,0.37331685617088145 +0.9545373772959838,0.784582293197018 +0.6544638695521126,0.10142964227441242 +0.17235003430786283,0.4348480691659687 +0.9013495512079996,0.31135832726646084 +0.11641591888035263,0.21582127208962826 +0.21031921538466958,0.7175511941943098 +0.0032749276858210496,0.24276729347627418 +0.8897341090413076,0.2561890484238758 +0.08486350719533836,0.0766014892252872 +0.9830609851962052,0.9796972159284818 +0.3926504885660724,0.5371391236954918 +0.5418558297580625,0.7022064902391647 +0.8857516978994786,0.28661118802881647 +0.16549880432144615,0.5678626666194307 +0.4673689465151748,0.043463368317810336 +0.104353180193892,0.9085520119823403 +0.04516588492318663,0.6346306623469329 +0.6124068974615485,0.17454823363222283 +0.8713539002148035,0.9919035918289894 +0.5753777416012784,0.8912657439728477 +0.7273214748639171,0.0665418930842473 +0.1895462458410771,0.7201937610674863 +0.102871455048122,0.1116010868878945 +0.3713414249958834,0.22144844736433172 +0.03597681441317402,0.6930060960132247 +0.5563902083058866,0.9582459235233206 +0.9649972999050583,0.23176382010734892 +0.5435176839648661,0.9194895999531263 +0.7019468415554994,0.5656226309078138 +0.8524259955120068,0.8417510810521001 +0.3447932291735287,0.27642438621545273 +0.9648759103467789,0.700939015296706 +0.13078306257912875,0.31044940638315954 +0.11832119159194598,0.18690151138518168 +0.2955614128026992,0.38716594241913926 +0.7871390822911792,0.1697235496540292 +0.48400291373616144,0.9828316687241989 +0.13375878689793508,0.3066120102442417 +0.6153047950755482,0.9107524277320045 +0.32169888241609507,0.6970257417825473 +0.3676241798537584,0.5252365668175318 +0.748406909237576,0.8626560026412854 +0.7020937168961383,0.8075503494002618 +0.6143795413365473,0.7665424344709064 +0.2941897771133489,0.13329505118009205 +0.414533274808331,0.14650493105188078 +0.643462040035055,0.06429641564471467 +0.5830444835965078,0.07730586567435493 +0.6002877849498929,0.41696750805228144 +0.3296750209058428,0.3549383318904402 +0.3958832585290899,0.634659825393203 +0.9553946999875105,0.1363050004961947 +0.06724590522786178,0.587424356149328 +0.6282802531000838,0.19945975082213668 +0.6546650733834272,0.39376523929441404 +0.5510071138435959,0.5293476815711458 +0.9655701456597825,0.8404401780439101 +0.8997461768855588,0.7792184092057963 +0.20026495197707622,0.6317553815557859 +0.5288343102904264,0.6579468537821335 +0.18978422511608944,0.7637416565944828 +0.16427720993102712,0.02128342478482198 +0.33186161383247326,0.5317036065070898 +0.1006763844445463,0.4649332105779844 +0.847123693446345,0.448699287391768 +0.22178487065310493,0.15981382026219598 +0.7610183366641077,0.4735184681900262 +0.03326024155804719,0.46934246746660796 +0.20505137234190118,0.3026088032642019 +0.8183892603684826,0.8125938998531571 +0.030806459410919862,0.005821667820442522 +0.6773554977707483,0.8248251072779242 +0.10642098113242926,0.6340296348243032 +0.5942974121666313,0.642519421989928 +0.9671815703310483,0.39065737266479894 +0.948767006800836,0.41733379237442636 +0.7419158912814666,0.6528561066124077 +0.23934906233083875,0.46813955136125046 +0.1876414899975828,0.03988135689823413 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.25_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.25_size_100.csv new file mode 100644 index 0000000000..9f25a034ff --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.25_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.37324428841543245,0.662170837336359 +0.2383875792773058,0.9819743228680762 +0.2430379086615001,0.825935602534007 +0.7340000964219813,0.7873473110596875 +0.10265445424066127,0.8025443913763199 +0.1979916192602305,0.33036624626089806 +0.35895597103965227,0.7943043292069865 +0.5740557391544229,0.39290130200221157 +0.2169431381285108,0.05529617354266819 +0.7388214020619577,0.9896256556048586 +0.8227267589146533,0.6746057341624667 +0.7412924017687457,0.8170070868233499 +0.35363403915834457,0.1739057173392271 +0.5550264923150596,0.7178267891692859 +0.11311503220307045,0.7538455759155646 +0.823009050539894,0.7749370740482038 +0.3908337719341656,0.8397594139308316 +0.3245274875412969,0.3357511874143424 +0.5095037167938453,0.9242123094385715 +0.17016735579123687,0.18715331677709018 +0.34438727987342643,0.5843518414895132 +0.6443533204637936,0.31177890286697085 +0.01937666914506131,0.5459392046899001 +0.9302602178768125,0.6024275009223865 +0.5779709488935053,0.5068501177773092 +0.6076211447576979,0.6999763510578484 +0.6395277203802787,0.006102635378690158 +0.6684370802419465,0.536740085501176 +0.9002077190149413,0.39986934895502624 +0.756944742001288,0.03178170648306078 +0.6928409129842548,0.9852620064903326 +0.20530255984638707,0.5494010089568166 +0.41554135340731724,0.19515744378441063 +0.549202313743806,0.020479955706174224 +0.9894197192575569,0.8189999521160326 +0.12736646675862323,0.17360363285881208 +0.156240933817476,0.6769215434721982 +0.8494976351097745,0.7164710706545233 +0.32524762583071076,0.3629706295538549 +0.1549872928233884,0.1225921274282592 +0.8188448529451465,0.8147230416166056 +0.451607967842761,0.37287227225481934 +0.8292871671901165,0.44302421382692575 +0.3829865915495253,0.3557504680094915 +0.6669936274826976,0.07303776474644375 +0.4273453830082383,0.3618681390724333 +0.7914971890112209,0.9151633888551785 +0.01487835204166621,0.32641283122259124 +0.8168614862911483,0.6871508549773954 +0.10144771876347036,0.6869889735165129 +0.4426442887467976,0.2683339894404828 +0.10652155177016759,0.6021424733171105 +0.1253710209849616,0.06519819463606069 +0.9499130099038015,0.7736314478299138 +0.9067467854578715,0.4709766824631104 +0.7331301677846273,0.2956781008809223 +0.8799174433504291,0.5173175867213189 +0.2387787110076246,0.9754259430261089 +0.7773664577075792,0.31250148187932625 +0.41573128647810054,0.21775035778052376 +0.6864369286451557,0.9178534004795893 +0.33085020146593813,0.30816399102412073 +0.16406677725984187,0.5904621220040378 +0.3360174515042832,0.8220336275830596 +0.551299557734733,0.600212839559427 +0.04352603423109014,0.19929625085573238 +0.47095522694583547,0.6305778745637078 +0.4590960643999682,0.6529022772437542 +0.5191325447379247,0.7198998314759403 +0.5362693042077123,0.3373852139100904 +0.651415446686272,0.7850211916890257 +0.5511295167445754,0.6194594807155436 +0.7887128631167365,0.028045230393101084 +0.22787807028534512,0.3601654564791674 +0.8987372303688741,0.8726922567574706 +0.09474848852874884,0.5797429600651346 +0.5081420687579394,0.7405153150719588 +0.16504825586039595,0.16855078469574242 +0.19804247716246004,0.8803207336271275 +0.4062526958532702,0.306301189107707 +0.2852590382144319,0.7966023459534128 +0.1888059559674249,0.5606570307503805 +0.8504143782716527,0.960591370564299 +0.3509211337739584,0.8122374543782647 +0.7895218747472448,0.5863206732658478 +0.031771158592272974,0.7103151672077427 +0.05604937208759575,0.14072562537379169 +0.5737073853075865,0.4825069638631438 +0.996565307088568,0.6392972875158349 +0.7802536084871896,0.47450067770187254 +0.020217415710291786,0.13325644172376327 +0.9916158267587527,0.6565651816190976 +0.8168953018826153,0.6402315462304292 +0.8191125955013951,0.3278659636850865 +0.9703633192690887,0.9288719287436482 +0.9816820715503214,0.0991694184567587 +0.8563992500420383,0.8952966149081993 +0.9494700263703176,0.3562777736689855 +0.5465508087271018,0.607278834832698 +0.9648768315170372,0.9291780451749982 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.26_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.26_size_100.csv new file mode 100644 index 0000000000..cd6c25096e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.26_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5541379662895847,0.3064278725186832 +0.05463123047619872,0.606099457223485 +0.3352964940996235,0.43118179424753034 +0.46207192916420947,0.786703379054072 +0.9427118548070249,0.7699937024029015 +0.48865071171221686,0.33432448503480733 +0.8946837323104143,0.32802615828298953 +0.12254780123202769,0.49815899067282504 +0.6573570928735224,0.27022598664052944 +0.20922729360101966,0.8017091190931291 +0.24017969161636132,0.5440202992381833 +0.1377633553106269,0.2849108330313942 +0.6589762328709418,0.045466138479627605 +0.6260036976460945,0.5499227054035237 +0.8598946725155717,0.2367350308611772 +0.6260644214095538,0.011554473718496938 +0.4139386364141723,0.7193024087147497 +0.3593935853860437,0.5712005301033518 +0.6399731162995776,0.984234065424233 +0.9864889672828353,0.6204601506753057 +0.03573673571447877,0.0731043130567024 +0.48119536960094955,0.36231686013609554 +0.3665496072429091,0.6952554017899872 +0.23933047808576308,0.5111459249501475 +0.2237018052560401,0.12531863639275198 +0.3442680088101415,0.7530787695886942 +0.40741522648355855,0.15233890807985934 +0.030003212137993396,0.6033498243234117 +0.39541142470187673,0.6197745818115463 +0.7192440339749271,0.40955416452503757 +0.6112546857395029,0.8035725307388702 +0.779907284698424,0.3177647567190776 +0.9757697087376471,0.675033004540863 +0.4401687852377093,0.21381434958222417 +0.5885991043770358,0.23185347687542684 +0.8228282289827602,0.8140549385573516 +0.12911366988378825,0.7744378098679995 +0.15317307138404024,0.46221574336297777 +0.3658194730951777,0.25080690822779034 +0.34497502796201684,0.9217283979252663 +0.9426654587979606,0.8427565402675465 +0.8920306266211058,0.763286109675027 +0.7190940480478389,0.15384380670159603 +0.8373897695875699,0.7799086431842623 +0.13747984322392043,0.35130782623047363 +0.4336992567241019,0.7102248669651754 +0.14055020086800474,0.738375119562358 +0.6019636273208464,0.8990089907446435 +0.615691022389735,0.512835508192921 +0.827920166395729,0.9356798646204213 +0.7476338834784189,0.3009972887001433 +0.43786572880515817,0.4544849670128098 +0.5700073664812401,0.2423200636120283 +0.8495050604739695,0.5376453715400166 +0.15345796044811583,0.5502287474630109 +0.9169079929500443,0.5264375275965734 +0.2682110195168459,0.841647292403126 +0.12211926036016169,0.8962613970290096 +0.6869899862480973,0.5827826936230801 +0.6414727961337886,0.8537340691055071 +0.42139277821408105,0.19882182104516205 +0.2868843479995191,0.7290075495284454 +0.2000056417428196,0.2286837605508149 +0.0040016595285536916,0.5188468220364774 +0.5245456636858178,0.7395630889303544 +0.712300888269355,0.21455888268606582 +0.030010204544521635,0.4938316627368377 +0.20193849665942865,0.13387383766765015 +0.8476841563119286,0.25637182131791014 +0.6251117327260997,0.8986776731653892 +0.6013159499597448,0.3961822658620037 +0.23466842100420615,0.49822966523652296 +0.01703628487282205,0.40437434218467094 +0.13665903562434684,0.20716356690493554 +0.8077526402824915,0.4337340455112189 +0.2323148415338322,0.7137259620961781 +0.1793209981735347,0.22229198117678128 +0.94340642030374,0.6003704221892856 +0.3301225898521959,0.6762478770698378 +0.49636514628665784,0.2072460526949263 +0.6674748591744716,0.28482296771536775 +0.7450129857542158,0.1834827759679024 +0.20785656349517945,0.21760894341105014 +0.744636204202754,0.7745243711945871 +0.03737416641147617,0.6046813839121712 +0.9919210987582839,0.6264122229380233 +0.9736708757246852,0.7284804409712926 +0.11471350086173249,0.8578045398961214 +0.3209432056862942,0.3404236722555695 +0.614092713193857,0.015016782517898342 +0.15724199858266097,0.4916097785517275 +0.13190797593857306,0.6714642481998617 +0.0829535434174602,0.03946219207986612 +0.47875257145732864,0.8395522618148046 +0.5247909378847173,0.2958724175100518 +0.022264628382175577,0.03788960873688735 +0.3988950231471383,0.7908398033780715 +0.4113007106445612,0.7050271137008377 +0.6935149631340856,0.7935338794342559 +0.6571340074956539,0.5214698499912078 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.27_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.27_size_100.csv new file mode 100644 index 0000000000..5d79f91eb9 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.27_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6327446686779381,0.5542929454577256 +0.9589644436749728,0.7074488499595221 +0.9535266090257669,0.8813758722043556 +0.6082395547031445,0.5440499289142426 +0.44459188914889547,0.8979561500666622 +0.6083239866919975,0.49653296467867347 +0.4195724780476565,0.1737411104606394 +0.044661471758627114,0.10600051250730463 +0.9337362498982311,0.26055171565958035 +0.2334147958467161,0.4220028948309422 +0.18022334552151537,0.2603083760971817 +0.981483373921156,0.9326813784625585 +0.029908784982735748,0.0452569509310784 +0.17056583162046302,0.7831421550274049 +0.6268003262096078,0.4115363543218479 +0.23398658543770823,0.05190648783798896 +0.15102481209505003,0.5672173374278926 +0.590132161683998,0.7687334251180626 +0.4558751278574319,0.5233816334327619 +0.9710185956442066,0.5440259615537767 +0.06790976185247766,0.91309724724995 +0.27798256102933716,0.7842847361514977 +0.5209695710335637,0.5497456136840664 +0.1781966328241092,0.11886855066736862 +0.34835372322277947,0.268821008678379 +0.959828349673959,0.5292557043624672 +0.2671177596655588,0.588485660099916 +0.8256930112835265,0.7030322830063256 +0.37285317130595375,0.3052661035396925 +0.17413112426821403,0.013076775481820402 +0.6450024194275519,0.5491034398185981 +0.13213640462997284,0.8589373745253719 +0.656234803732175,0.7668710109235017 +0.9632061710510647,0.9690274008270832 +0.21071122650184376,0.13124459229328544 +0.538146434691195,0.908857100169054 +0.3442730239611338,0.44912470271014815 +0.7336037587841476,0.4763616931837592 +0.949370409959655,0.8933399766564202 +0.6452144611194374,0.7560879683268322 +0.2426145386204686,0.2656876000690469 +0.40599744723328646,0.6053200346633899 +0.6363969022973074,0.40657786000379137 +0.8708212357147812,0.9167189132082133 +0.5502543461517019,0.8801570511715012 +0.9359660640757108,0.8553148439412608 +0.5951425545766605,0.7853221289951202 +0.43746429804959186,0.05956432076076956 +0.5189001301457724,0.19973978887638405 +0.6976479359462777,0.5716428548415343 +0.20240690562481894,0.14791740909307 +0.9148873930716996,0.3842982604990298 +0.11980093566036965,0.34143611925676043 +0.22896187348917219,0.5215402766342949 +0.0800506003936845,0.830013986176641 +0.6010759665338732,0.9064094043645083 +0.7750398946480438,0.572238293988532 +0.4992644498943668,0.33225557624511426 +0.9331409735162837,0.9478565346364463 +0.8260796869449407,0.7695370104297248 +0.9015768617010905,0.9563013356784416 +0.26611689410105466,0.6054963475744775 +0.7164884465676217,0.46576135397397844 +0.024940333584952845,0.14299030772544674 +0.2648771726353879,0.2166372639455641 +0.880911995591874,0.5506604667018175 +0.10726526484849613,0.20474434536645292 +0.33913710776794437,0.05491279007609601 +0.1537638225048505,0.5027551928506783 +0.17463755213219134,0.08934466197912783 +0.089486381147245,0.7712568124953421 +0.24291276899269343,0.4536867311381394 +0.8078678498568052,0.6997336884134486 +0.7712939614789869,0.4347076238959583 +0.4794301625599464,0.639901181092889 +0.8929478869728469,0.25435838330599114 +0.15186859753602489,0.23126108629262399 +0.4082799020835859,0.6338020748202498 +0.07352497752105269,0.02028076109019744 +0.8863934567347644,0.22838647143903518 +0.4525854422294874,0.2661742652288083 +0.8913715137596454,0.4857225555815457 +0.5870646069719968,0.7045916503290454 +0.6088827392619458,0.9637455555937563 +0.8464233204806765,0.8181575235484364 +0.6264296042569797,0.17333535406789796 +0.6717929276181825,0.08182717782973403 +0.749239468648236,0.6903074154240557 +0.9658546150311548,0.6961261862591105 +0.7159628877464548,0.25133680179249385 +0.09434094542762228,0.1130598153077747 +0.9344299359938177,0.9124097947318708 +0.8881539115158561,0.5692472751663938 +0.9158094077445055,0.15847846584917785 +0.34087487299150687,0.5091267341674901 +0.9887114901418808,0.9549162754622582 +0.9521640321787754,0.8045362262085032 +0.5094856083884073,0.6344657119181683 +0.5815218302617865,0.7575458437684952 +0.9510938401146625,0.5217763047966453 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.28_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.28_size_100.csv new file mode 100644 index 0000000000..73379eb9fc --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.28_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5404250796718648,0.15788080377697838 +0.4657148600173878,0.45842718629195023 +0.7452651981651838,0.626807545646777 +0.7066918641884826,0.6283530091118301 +0.9894223672725159,0.8401951526182676 +0.3398687683158881,0.35342075746712454 +0.6382785382631262,0.8967732278362761 +0.8634507838415244,0.9203578177112632 +0.05236472165737277,0.43381793317069484 +0.9927005614101893,0.3153803032572278 +0.9898613848140319,0.7393438626217551 +0.9404317534968338,0.3809092747816716 +0.6657365068742991,0.6670071598929169 +0.7246916217025724,0.48240105117694065 +0.5287147210712921,0.23234159251576503 +0.7436891686243293,0.6347259771215491 +0.9172814604516377,0.8393208202976128 +0.7092617563788111,0.07196837053796795 +0.5725964853769826,0.25726249807959944 +0.08100834051171418,0.5937490942666509 +0.45705466496173996,0.37157240113515166 +0.6761204138485548,0.04324558451768473 +0.20522673901247668,0.44457069095986695 +0.6090438004634133,0.6878634878473165 +0.9618098785797641,0.8413452873011318 +0.7831504364436332,0.4408892101366683 +0.14302190591548414,0.9034083842357712 +0.085297473780436,0.03853407021091121 +0.5565089130942863,0.391348808375365 +0.8768577416654448,0.8986557018747433 +0.9745832918172107,0.9438827062254047 +0.13534881242711921,0.35939826109046924 +0.2698308162287302,0.9772333187463684 +0.9293385300082146,0.7087425967039834 +0.7307784061576873,0.7664363464330313 +0.2388772689840034,0.6347602151181808 +0.034818123714454474,0.6422776143946292 +0.5500219388480971,0.5131375758364203 +0.5509162508208061,0.2956331239352342 +0.21462986943874374,0.025252125039690876 +0.3003117518561472,0.7919650044645051 +0.8236128078769507,0.3427505347127707 +0.6644235993615633,0.42052548165697645 +0.2755040619337218,0.28177027208857985 +0.4045306466918259,0.3685869256167222 +0.1167351836014297,0.2292328088383449 +0.4883645374783996,0.5023439620891931 +0.8887255761626383,0.7370603193237937 +0.5369718244201159,0.6613267655399643 +0.24796886738483898,0.25192452756340245 +0.6774643486391396,0.15037186767092808 +0.5999033805518279,0.04812786239010042 +0.30184011446006553,0.4689190596614159 +0.12729373511971975,0.05353627258582999 +0.006253257384479682,0.7817405535034083 +0.854576434365153,0.014197314826649488 +0.356886121954883,0.2130166042128145 +0.17903737412721515,0.6423762455201419 +0.07725490343810526,0.400827519019916 +0.3049915712924135,0.567732825719883 +0.68707081212321,0.43226995541776175 +0.48926915974361085,0.30668026935988346 +0.48571813673259456,0.6161663167398224 +0.21941302248822592,0.2887397690396962 +0.3393932936855747,0.3738811371119623 +0.6170445892330844,0.7460091298177604 +0.4738338253632365,0.16074043535612142 +0.4814596118649338,0.0978212062433167 +0.4118435904633082,0.3927250118628802 +0.31996855076109254,0.9138100541390233 +0.35892653995951407,0.49650532571265205 +0.298174213347696,0.11619318373822501 +0.6614376897505884,0.41682431456739966 +0.9865089098723838,0.2612006335235391 +0.30169333421205213,0.2781753741359431 +0.014389975572640101,0.0030324182277847167 +0.6203778253711125,0.17995441515419852 +0.2106402648274896,0.5167335891898897 +0.03622795081687058,0.08622234529165523 +0.3689166039667703,0.13767004626835633 +0.6883694024021925,0.6688972843208777 +0.665715787400222,0.03885602776878894 +0.2488844529965918,0.6723730288800205 +0.9160812277324804,0.7717522889932447 +0.1788773513901118,0.04913555157446836 +0.684009967849945,0.9882716941127458 +0.7069575217306531,0.9155541009824218 +0.6348775732809192,0.1173885519938197 +0.9001186519014972,0.5780057860921177 +0.45158424551140885,0.9639811960183261 +0.15227730674939688,0.3660006627789759 +0.17820109488162716,0.5559830740843752 +0.4905918056736026,0.04833432651410302 +0.960220848816096,0.9352637534223903 +0.8726987631309121,0.4234513491440094 +0.9636976193645828,0.604869336730249 +0.14931932103757806,0.4051291716458282 +0.8221638390831926,0.401255180692003 +0.5882183964548464,0.413084538645884 +0.9988595132242993,0.43052770531509527 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.29_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.29_size_100.csv new file mode 100644 index 0000000000..df7c426934 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.29_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9597838088448369,0.693760904622426 +0.09827846163644832,0.019895039068003717 +0.8297282886195373,0.9341046517676928 +0.9158487102146764,0.6926293437497154 +0.664006571978061,0.20323229171098522 +0.9621020437154467,0.9303561625562287 +0.15871651020385535,0.7708385544082026 +0.9435491176499109,0.5588150185278361 +0.0198674888696595,0.19440316503197336 +0.5729480609942881,0.5166280148684268 +0.3841531916316252,0.26665561564216644 +0.8243550736041109,0.005720801077291837 +0.11923694931161483,0.6109318476464423 +0.4911415873104833,0.6175690599992066 +0.7957804157009924,0.41372125871401777 +0.09210269042010466,0.04709984340523948 +0.9820401878861843,0.6904948639024052 +0.026258832535951737,0.7992316825391916 +0.33793889608845973,0.7688960838782548 +0.4793549156793653,0.042106930616685134 +0.8228118991852357,0.1152822373133125 +0.21091670067088208,0.8417139290801499 +0.32711108506352926,0.7156216404092225 +0.28731307780380777,0.5328214125528681 +0.032626813664632826,0.2525912995562716 +0.20221818036888595,0.10120907986188088 +0.2979294492245169,0.34693237898354856 +0.9652666802043915,0.63683424847593 +0.5389965536985846,0.35447215133197396 +0.1363409855821882,0.6873847378286531 +0.46301932717658123,0.6737228495081465 +0.17576993147527015,0.1718762536998617 +0.0076790512885175355,0.9186510081372594 +0.11873763837204465,0.5332100066043368 +0.4468536150302702,0.8157765603133045 +0.448855836284234,0.13595133194671377 +0.370560917482617,0.453437591228359 +0.673915925777693,0.7547274874332126 +0.7708635085956783,0.832839855834208 +0.15485681894887388,0.13084002900945363 +0.279774636470727,0.1664343699755989 +0.30300388810223056,0.5478292183345909 +0.796658317687584,0.15153827179787177 +0.7525770828076099,0.8414041144842819 +0.7483916264494039,0.6262897539675184 +0.9642775988530499,0.4992966808445659 +0.5109364481148326,0.7487676908979337 +0.006757877849685512,0.32343128226170403 +0.6397376268627611,0.8708725207286456 +0.3436922082383751,0.7437884067770999 +0.9073491651304768,0.3757219826182191 +0.6064004159341532,0.765340541707867 +0.08436049532859519,0.6423287644229416 +0.6277802226631796,0.8287698107233215 +0.8712600789035577,0.42549335942820915 +0.1345889610743936,0.8330708525036912 +0.8178991391554321,0.7728583085016629 +0.5661355820902313,0.9442008927827998 +0.42821541018413467,0.11693754272111834 +0.6465529884250688,0.7466795257552723 +0.7233995287156469,0.5871393224897157 +0.09141518433650142,0.2608231744059776 +0.6730179488661325,0.703784194982238 +0.1644846052242075,0.04730398186744417 +0.5994055870895464,0.15575666940040167 +0.9375293949753363,0.5409449765678951 +0.10267834858234631,0.4256426226586176 +0.9333749268771192,0.7271465074735922 +0.8694872991525425,0.6227029301825883 +0.7281264685970925,0.8301920574746047 +0.29979915001910085,0.38692660608037527 +0.6533863313068449,0.5978533744563397 +0.10309895534314134,0.017444307281951954 +0.6349288567080001,0.29381474614190384 +0.0676882087648184,0.9164847023890332 +0.35095216725492206,0.7976180977749857 +0.8950656746758224,0.909030936007097 +0.4939340919013986,0.12734806714391678 +0.9524247118063766,0.4891054076324449 +0.23593726468508058,0.041027946338064225 +0.4018147903530529,0.012483613202244948 +0.7889184434135913,0.8524484190634393 +0.6580497775424934,0.7556968565942723 +0.9676682336925811,0.7674863783382178 +0.6489337481017656,0.9555069580198715 +0.4712923377120455,0.720512194269644 +0.4734038838322927,0.6430539400654106 +0.2998507420393611,0.2151024332647633 +0.9828849514130943,0.9869682179838625 +0.011354461701285179,0.04370952484066315 +0.03506324318938925,0.40844026716991794 +0.9556305001052252,0.7636856225362618 +0.3610166488110642,0.4421278974636967 +0.6857221947973221,0.184396809191602 +0.7100681288899011,0.17589416047442302 +0.40224510468276564,0.6010807005530555 +0.560262478317676,0.14442453877754657 +0.9594627414779138,0.589239893672778 +0.4407591060688928,0.5934329535699566 +0.5644000215678384,0.74112241542074 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.2_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.2_size_100.csv new file mode 100644 index 0000000000..de9a2fee15 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.2_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8327768708198882,0.04828382189800923 +0.46836611362005176,0.9824200185954074 +0.6921153031802737,0.9483908463011759 +0.7776222225502304,0.15825719475243977 +0.9773311172723802,0.4358868371691025 +0.07039403885315332,0.6965043163729275 +0.3689759770366319,0.8982950280307059 +0.9012918767420534,0.8382113259074311 +0.5299326850520742,0.791025677452833 +0.6291200586266756,0.06784169468834278 +0.6128078942957225,0.5867007776295153 +0.03206809149279055,0.6850868911395306 +0.3369630865905988,0.010459619589347324 +0.00285295263583063,0.18288842918794063 +0.27492553835531597,0.28127826672930384 +0.9297039295027725,0.1513930324375763 +0.1408186306512223,0.645370248376389 +0.6723247091015456,0.21520964876415272 +0.15242935193178458,0.16497164141756643 +0.6980300326710431,0.27019137382040026 +0.6258666855907343,0.8215187317439394 +0.30781160398687146,0.29545291971758547 +0.47740768865180827,0.4725324031678905 +0.6198711635853459,0.27191037361146964 +0.505151531687676,0.9959489974588619 +0.9542543191784236,0.33751925712051106 +0.7731475332727449,0.28809529363563335 +0.8623648012518211,0.916910337502397 +0.7148675986627213,0.24019942384912601 +0.9464513045205407,0.5408565945338016 +0.12449765203737484,0.059447742570560125 +0.6385574643565235,0.3680367850597305 +0.17911012617886302,0.5768043061522566 +0.7545606099596309,0.16043546044943124 +0.5847050479279277,0.15208000035059277 +0.036869911835395786,0.6172029285245898 +0.07641755995972177,0.9824868551399955 +0.9739940504640879,0.07079179346662012 +0.46845160158562704,0.5673779428929147 +0.1337231245948678,0.6029562806872845 +0.09345281384546539,0.9137690995950871 +0.438497607324579,0.3761886978683951 +0.2203158511354527,0.862141190132527 +0.49905960392364934,0.8101033664900554 +0.8278609037600501,0.4828050731201351 +0.9086446161535319,0.32863054537203273 +0.04612412155086354,0.8592847827874271 +0.915093100234359,0.3382849264422999 +0.7155704998537954,0.6486891305054695 +0.12803833285284383,0.2388630011668203 +0.711603603872406,0.16885340956452488 +0.9975229307215714,0.9934700350425361 +0.23632901629230813,0.20557970994701136 +0.6421934387110424,0.1322973398341114 +0.5474311787123913,0.6371209742489489 +0.21060210084108522,0.05386067414878404 +0.8540149442760598,0.5385454016714557 +0.21050635157603598,0.9808094290593553 +0.018201458586292185,0.7790640080835838 +0.9957879907014672,0.8762543175304958 +0.3602270972169834,0.17188108234859656 +0.5270102335920772,0.656642333179843 +0.19714628163667286,0.870142647720145 +0.9962213422948591,0.731277885429306 +0.2958307364159476,0.4245401259558168 +0.6813759558328153,0.2163623726849198 +0.07961707551400937,0.6793758725578605 +0.48659720193337774,0.4202508394940082 +0.18052021630830367,0.11478388220436847 +0.4346925191556079,0.6053308406233546 +0.6109334284651223,0.5271407621378615 +0.7922332688611478,0.4454111221196814 +0.14954219510894917,0.6057128076832372 +0.2456181457238955,0.9119552416632644 +0.6146648248834524,0.5741561892853048 +0.23081203176331555,0.3308827281726652 +0.7101431453858773,0.6175964396081094 +0.6543476076199818,0.09015860684127525 +0.8120151467593539,0.8673402323395838 +0.4154596393196208,0.47750037229999975 +0.6082101558109025,0.460156395945141 +0.40258966661520745,0.5074357442848462 +0.9509641101808198,0.5614880806027563 +0.017950978501287573,0.8246200515319172 +0.38456975510823244,0.8984897900218021 +0.43712783973259783,0.5868746634402393 +0.6493436980102887,0.6835814424840463 +0.5633271153495003,0.294879757729532 +0.24444827591114865,0.34086063825945445 +0.5532477648020467,0.17932548644243007 +0.7958658990789935,0.11316177875520156 +0.8724423991894859,0.7793877433366853 +0.293263790843163,0.8119005361545553 +0.7902495699070214,0.9522722816009377 +0.5369945088841377,0.9298687988140473 +0.3938536325652021,0.5932142081066294 +0.10316388218853517,0.21775105793543437 +0.05878785628982486,0.22871525250620178 +0.42963689819818707,0.6861048145276998 +0.5179261994397253,0.1887706978902941 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.31_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.31_size_100.csv new file mode 100644 index 0000000000..a4837d70df --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.31_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.444172865411118,0.40075191906295926 +0.7273620262252208,0.8487020539852835 +0.18424822284183306,0.23019851197975177 +0.36546199333424656,0.7498350309561389 +0.7975947121567434,0.5994443440094377 +0.005573275709062631,0.03138842073543169 +0.643133659137167,0.4351611154812584 +0.4910070268083171,0.39084653104805067 +0.3269863079958394,0.3285756107570433 +0.046494068034026226,0.2264225420602234 +0.724754411946882,0.2772160380444332 +0.31132981000930604,0.8034410569300534 +0.5850731667203083,0.9092553785277708 +0.4622922438588325,0.5303008080616934 +0.17822241833534241,0.04972635557884775 +0.8471219585651107,0.821834739589448 +0.07126437666772756,0.2573054310923355 +0.48776828846097564,0.6215465394109121 +0.5583782587996702,0.98329979569647 +0.8501025922363391,0.29169393194649895 +0.029269097290505086,0.0038984524608787208 +0.6710143234404756,0.5943460991694672 +0.6745009282617533,0.7057232504874869 +0.3811586514042281,0.6982732130316149 +0.15727756075730348,0.40541656937571396 +0.7008244235603321,0.8822303706268737 +0.32432400825069263,0.5190610986018733 +0.7538385510971697,0.7467488330042691 +0.8806882920237693,0.44931536589493704 +0.7697858074866157,0.5457772592146262 +0.027336369534130434,0.3669874862921769 +0.4005448086537017,0.18419323838616142 +0.4978840519879554,0.1396370831730585 +0.12388480463088136,0.49472538170049885 +0.5959385007023719,0.6280413743657035 +0.4539121153937431,0.4227122086362699 +0.97503415114897,0.8875957350407148 +0.08639175319418457,0.5939489716280378 +0.4814347156841322,0.5173124135315125 +0.999580188849645,0.9923034214668086 +0.4305887077624442,0.7886114630941656 +0.8960548748555949,0.7323097801318733 +0.017196953340935517,0.4694394433037432 +0.7898081510399881,0.7854954881256363 +0.825276180136404,0.9972669619036916 +0.05690334797482721,0.27463119596676694 +0.24927103798751105,0.7653468710996791 +0.928658682713868,0.41882162058949657 +0.7237749928704921,0.9199531124901061 +0.8191058427686637,0.8108910402083834 +0.5653365513797404,0.04398650432576123 +0.9096535400394145,0.8862544666899589 +0.6687339233172734,0.6962846306178414 +0.8987588542843759,0.7607638250765589 +0.15936130715963398,0.9967959316759452 +0.11002212950745888,0.4703630498415319 +0.8021442461847409,0.9780619355997573 +0.3438544851643427,0.6582768177531902 +0.2483099731534168,0.7321348405774434 +0.5324125728418034,0.6732857562449429 +0.6244333979243518,0.380976886964568 +0.7853558291795856,0.702292260626315 +0.31937706714584546,0.5489197940642199 +0.16365472014980204,0.1801308078293425 +0.9552897997457687,0.35211130630796844 +0.9876403437085042,0.6879723265021827 +0.6476148809624769,0.7862617516481449 +0.7931577687475888,0.6895944682315294 +0.10255741055552497,0.4743184984685913 +0.11593519817886883,0.553369222906139 +0.28694592295577903,0.09882760945828029 +0.7857835788091438,0.14497950614610722 +0.368820536849934,0.3409901175870701 +0.952837264700868,0.46272206684812817 +0.44207139387070593,0.33184870748841144 +0.5845953486613132,0.9051212721707327 +0.43485945188461284,0.5023045966980901 +0.17775835770239123,0.3223227654216035 +0.5826865810074131,0.3322182678323199 +0.47623626176384304,0.6002721025568574 +0.3449651192291603,0.2627812213460621 +0.6464950378049857,0.5184208510040599 +0.9963343488757227,0.6694451250851212 +0.8379226936325109,0.5747068825335147 +0.006355584712788409,0.05949395562423787 +0.8290063050490122,0.9919145748886953 +0.2870040685504378,0.9356456311200136 +0.8094555332382589,0.8695465819684489 +0.3137694631482699,0.8809008708770594 +0.6968788740583997,0.4929390225560674 +0.004459546375325196,0.09415255675686252 +0.9633018978490087,0.8957138868402665 +0.6643778872048692,0.6672161118246794 +0.2549936059877035,0.6236309012984977 +0.3024765707172158,0.8830216633403417 +0.6567070625247358,0.8559623720880263 +0.037216607276305824,0.05676690800272349 +0.6582755707302484,0.9763479264947197 +0.11513565820071181,0.014207675554183785 +0.19888345584741457,0.21113390703296375 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.32_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.32_size_100.csv new file mode 100644 index 0000000000..7c17e7729c --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.32_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8728176451378729,0.18819647509305204 +0.3410229337873468,0.7851734097676504 +0.9395972132262723,0.606402613271395 +0.3335595728940759,0.5133065875481367 +0.7594223503732473,0.3214064912017532 +0.5336182238970957,0.07103771463717495 +0.9298103067428617,0.7912173214951856 +0.12335764064415294,0.2690951151629525 +0.5675401008827647,0.5761064607909084 +0.08315260344268721,0.4204338714506207 +0.9408058424416601,0.2471081893327164 +0.9862351942473305,0.9865178059544178 +0.46231636972444834,0.23464153643147162 +0.9914032558494346,0.9154020011562229 +0.19322550913253905,0.8111953874155835 +0.9394111353190351,0.5141118928938493 +0.8165245646219519,0.7232399564719385 +0.27805003079037843,0.11843879026966841 +0.6176985423186823,0.6836615310409824 +0.32925832680524514,0.2532277971814597 +0.6657670771410075,0.15949156980752816 +0.14635735468610694,0.05614482040354918 +0.04163026258335478,0.3100428967537766 +0.8884210271856079,0.49861861894779225 +0.5129785401003083,0.5353283592678849 +0.8168911634426148,0.5960594710480484 +0.7874519685129318,0.9084617957642577 +0.27491506508737873,0.27190380488866955 +0.8053188831400453,0.25382776719172573 +0.9218245996553022,0.6259257951953301 +0.9931159279084814,0.4676160673739073 +0.5425793142738121,0.1393919568014726 +0.47018646951305565,0.2626841387554507 +0.35613088946439087,0.39944435800978784 +0.006352653505710237,0.2508920756690617 +0.27778247575855,0.7310299214739728 +0.7973589497627795,0.6053483831694727 +0.4238650353180555,0.5707628864996857 +0.03204140056915028,0.21898927008113406 +0.9836378605920448,0.9001816410455759 +0.71417757694635,0.41878732869410196 +0.21733827389296062,0.7614661695397105 +0.2053719563584802,0.6559136116265383 +0.6350885672741973,0.9762398992531078 +0.14395260419865102,0.016381341453872655 +0.8715708810680379,0.6183529499959495 +0.3468126142166166,0.44013142582156894 +0.117706192200985,0.42928592543732486 +0.6359314399405865,0.8209941142561505 +0.19470592511555174,0.3710516244512332 +0.580315499830576,0.5167511191858445 +0.27430698632534833,0.7249353194046306 +0.03927251937356491,0.4944031142959754 +0.6965500115490357,0.3515909711606993 +0.5231901985128066,0.02447451313476101 +0.5790297414974602,0.7187929143813317 +0.16320408885501952,0.20216604861619836 +0.19749741888163386,0.7319567825046712 +0.6272080396881207,0.17428836475193943 +0.6535550181877379,0.28032551900855446 +0.8105532543864414,0.655517827866908 +0.5563081367521785,0.36387066201131 +0.8533024632736128,0.2627531467530767 +0.22743463680542225,0.852332816482397 +0.5571493673928284,0.7036781997453955 +0.1490424826301076,0.01529960622946075 +0.5677723488534303,0.1632579999325483 +0.7806594088934338,0.9139129403247004 +0.5932418406937872,0.6596112995946657 +0.940658994515908,0.1806430143569041 +0.8268383477820402,0.7974816473353885 +0.12070609255737186,0.7495093043831095 +0.7357226326718973,0.5092770325057813 +0.8580323603001238,0.9368967613991107 +0.966004109694206,0.547233709253194 +0.9598486432714131,0.8692462350586911 +0.044423767384742185,0.10147059876688153 +0.6522640245104346,0.7918075493770077 +0.23849820975175073,0.8906727110528316 +0.683942604325572,0.4775727563322057 +0.6994681511079376,0.21745787435390013 +0.9931356086306331,0.7234073354475996 +0.2682295090995527,0.554912143219089 +0.8056700215247028,0.9646164249343725 +0.737893915477654,0.3680917485948697 +0.25289983204772515,0.09090317267734133 +0.37802710032876385,0.0581233610432671 +0.589481191379104,0.9391689100872576 +0.06454976091576858,0.4664071050327601 +0.3548567073092391,0.6411012267954297 +0.8247844781536727,0.514115501942714 +0.5952018210005405,0.982965192630495 +0.6337659762123832,0.7007496029918637 +0.5550254025214313,0.10686570026175124 +0.8104461697427577,0.9349010314156905 +0.8855965359492207,0.09902805494984684 +0.31496446985127613,0.3472124321242734 +0.39472717428064974,0.37909375329155776 +0.507661080795013,0.8466075294601325 +0.03514532969479045,0.27534513304808994 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.33_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.33_size_100.csv new file mode 100644 index 0000000000..c77df13754 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.33_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8670357436303495,0.14608452911000452 +0.29915538924065777,0.786799863257728 +0.5778482908680341,0.22906918627158435 +0.5838557815412924,0.18144869679095865 +0.09450078701248749,0.4250428793019226 +0.3873965935898398,0.3164037435413397 +0.4037435281928491,0.19447256754865022 +0.14372417806483073,0.9725193763239715 +0.7341305100658606,0.16135142005745812 +0.5365732097790737,0.836541869980639 +0.27106986615355055,0.6256339452404396 +0.8340365502021019,0.7077277042453587 +0.42106929907403357,0.6584285096020133 +0.7135971738670426,0.984607997571757 +0.46301689978741245,0.8578558921165229 +0.2539128655602734,0.0066374773512234975 +0.034505101625416645,0.5470598305493991 +0.7742929867675457,0.18938178017168344 +0.915034750412299,0.8665372095465997 +0.9431852533607519,0.10155545865822413 +0.0324450062934023,0.12315193890409093 +0.1505056373350966,0.8174063948459717 +0.548998371242453,0.518323706192867 +0.47053327791618826,0.20290696251980495 +0.47528664142648,0.7629651943976647 +0.8352888377029446,0.39915981156831015 +0.8345127287290421,0.11750304342894768 +0.95789413307682,0.3050591940277534 +0.14272077013271406,0.09836901906961543 +0.26228600005388014,0.03605079439778769 +0.2924783592343094,0.8179512676290415 +0.9975069047799358,0.9986496196003003 +0.05945071858376244,0.27424429217390905 +0.5873043745910259,0.5673833908842223 +0.9909781291079136,0.7548204266029095 +0.4696601953133418,0.2898083611943009 +0.5917810856874397,0.8617827976065688 +0.9290226215090727,0.10192183268041799 +0.8470754077902615,0.6568893754688176 +0.7022518524648812,0.5830376446688457 +0.6631738745193121,0.6744312216191848 +0.5052008643710253,0.198474584592581 +0.47956296079555505,0.8011209695563444 +0.6540129796166363,0.9570071832363147 +0.5991828749375251,0.6016400848325084 +0.5213342938562155,0.7952559310976943 +0.04645875255524745,0.331075297920715 +0.6530342141529426,0.8613135112300385 +0.09874458988324042,0.6720097640202131 +0.09874666505971669,0.3578677646548811 +0.29560630520115094,0.6875733825719872 +0.5223258510837244,0.3775736118599331 +0.48583018553628243,0.7707521542102318 +0.681278292925439,0.33220219199947876 +0.3237191834496488,0.7805182315328818 +0.8792882123301791,0.4673492045138319 +0.37691063548922576,0.24299084379876623 +0.9955288426240799,0.9787476848589525 +0.4098003126698381,0.9047136353475782 +0.09078508975634175,0.7477787022434633 +0.12445689044611152,0.5313319150809697 +0.10087909499253095,0.752311442687151 +0.7631502455701843,0.0299155264566916 +0.19844418284158438,0.801898980996399 +0.20429390736033387,0.6096917422564057 +0.2061299473540214,0.1762386444248814 +0.11300943567984495,0.6741875113827167 +0.896584448039602,0.6349074512124377 +0.8600800201672799,0.4337555124232764 +0.394140143551583,0.650958219185225 +0.40271494077234227,0.7835062904696344 +0.5057820973832777,0.703583334836647 +0.20361183470847338,0.766074728563763 +0.2587807657815928,0.2072428546864613 +0.3137098379068116,0.3087727516399726 +0.3410889678771136,0.349207984639456 +0.5916467922887674,0.42024554333212755 +0.7602669781943515,0.6356096670307404 +0.6307044739649507,0.6620869039417596 +0.4821770373445994,0.2930215440815472 +0.8370700096199295,0.6239605354765746 +0.8998945475811475,0.5546338343215592 +0.11622002301428441,0.3902316552244268 +0.5791431770493375,0.7709135169662675 +0.5990891475875946,0.4474669238386137 +0.7553200752989292,0.18312970568379106 +0.33743167342148994,0.24066148685906735 +0.8394944054151403,0.6074402248941494 +0.38387638806298163,0.05717022361496327 +0.9027969501306131,0.7419064675946626 +0.35992143696392875,0.5795221373261034 +0.05139519878072751,0.6081900929537468 +0.19282139754287453,0.21556313127802318 +0.44320304192670357,0.1446073592758651 +0.46549229788603563,0.9989847171277549 +0.30837804890575116,0.4621789093073275 +0.025970101878491136,0.8079503780865929 +0.6395806578384449,0.46219897298208956 +0.7240135458982837,0.12216984465851666 +0.23184248648714734,0.9940868561307802 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.34_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.34_size_100.csv new file mode 100644 index 0000000000..085476b85b --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.34_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7646328384988286,0.9889594405589401 +0.33651021723888896,0.3540470378917779 +0.10447830474842179,0.6398204637103981 +0.017844724399982304,0.09338146508158579 +0.7249852336901719,0.06178915954709491 +0.1654145632641883,0.37279372128867005 +0.9322327435230539,0.4675115244252852 +0.4611131792257013,0.8394673218612645 +0.13400593474425632,0.12170202636822236 +0.4341938299882584,0.059182455340004436 +0.4100758807822915,0.3436023402328599 +0.20611800087608012,0.08042949705743485 +0.7591435829006824,0.42087654099213057 +0.8594657644027703,0.9269639758879491 +0.518984848297054,0.5828901637729491 +0.5446681978709346,0.17486400634437005 +0.6950554167769002,0.4986391881212784 +0.488513036139516,0.9905356336715325 +0.7998142487448758,0.6664041392930723 +0.830038955908164,0.7045903329542269 +0.48656520258232894,0.6950588964351857 +0.780589208628651,0.34365691797988895 +0.036992586718299414,0.5078400733032473 +0.45257658869862905,0.805272748808517 +0.8197121530122276,0.9190380744232971 +0.13424238906988345,0.28825616759971606 +0.061302494451017986,0.020013636720628225 +0.7875710133412526,0.9217516404513728 +0.6218720102627935,0.7649705767122131 +0.3982261480645788,0.5340904763187033 +0.4399684375636693,0.3085024257330393 +0.41928441464336663,0.4999190620861905 +0.47990409417682744,0.9135702220061387 +0.8864079563131191,0.4162133965168785 +0.6746742991772667,0.532087792025874 +0.479695662623026,0.4742156243280477 +0.0023578552263858743,0.1508834040458506 +0.15512456340210684,0.2647962485155423 +0.9064986982522221,0.2919573878988715 +0.11050689038939837,0.37112659834829587 +0.10311720117236589,0.977433794384619 +0.29684020418668206,0.556705227485783 +0.18736918955889115,0.7158916097977843 +0.009330863588415839,0.22828145616029122 +0.3360607942867486,0.8099551896493162 +0.22280193974236195,0.261438257460177 +0.396070447404987,0.3385109860194847 +0.34329286838281214,0.25628008357390786 +0.6134937583260809,0.2702213031143889 +0.5145759923093908,0.4296789894112195 +0.865021306207581,0.9428288246544261 +0.027906040109242913,0.16141543197232117 +0.7104233051679884,0.3988278784515026 +0.2235902251897136,0.6373626886288937 +0.21778792930268248,0.5900855133533978 +0.5490514583263024,0.9846249058706223 +0.4838105731178852,0.5469086924288169 +0.5589089458393146,0.8889241759340689 +0.7212590028518109,0.2942151082184483 +0.22667725298858993,0.04720808943660232 +0.04937749981859896,0.21026649545604442 +0.3240670741577114,0.09166399196130354 +0.8300634724339373,0.5153826135954493 +0.9154651360625363,0.10426705732492503 +0.2203936831546176,0.0266334428602365 +0.568912297056997,0.5620346655195129 +0.47410606109776354,0.4376271128425101 +0.4574882762484632,0.16273875008381156 +0.16660990890602895,0.30119346739442593 +0.7821052757639084,0.5093271771411152 +0.12424671719944225,0.2522260647059922 +0.4570563896829217,0.19412426091160823 +0.4302886219415578,0.14261072342229597 +0.34875282515375516,0.22593418174132263 +0.10171703411366623,0.2550763373128154 +0.08705317901773035,0.10199410584653945 +0.6853230677645893,0.14941372819282717 +0.2653149386082556,0.9206322612511233 +0.22425880475042387,0.2372441438073279 +0.9832602374001085,0.7285319319765722 +0.9805016754746353,0.7764097018288532 +0.3002667420239201,0.048656266250070024 +0.4060662713100146,0.4616166907708073 +0.6738620106532124,0.5300085564254408 +0.0880930668309785,0.12113667247917131 +0.06831367350338413,0.6133512666163525 +0.1610592357936539,0.03673847935108654 +0.5252713033154109,0.8288025938362081 +0.2848212678948788,0.3419453019622548 +0.5452851324429641,0.7926632461396852 +0.2775684760818612,0.5776521785592983 +0.6706606330538837,0.3357764438274873 +0.8691323070597115,0.857770043103788 +0.5301939210956743,0.6402860529992738 +0.7439356243019993,0.9922672323961845 +0.9038047280794853,0.10091498814812588 +0.10699569820805954,0.37381851174280756 +0.641660209723899,0.996102969442876 +0.2576651398348193,0.22714122626284106 +0.519610013588772,0.640539820963988 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.35_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.35_size_100.csv new file mode 100644 index 0000000000..487c32c133 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.35_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.0871275392171379,0.90001146855327 +0.6993858750848669,0.5458598301417317 +0.07234067575627756,0.044652317520186335 +0.5502188034983062,0.6682585706564598 +0.6365645231187513,0.11934526173629983 +0.21977148562638488,0.613592850288042 +0.3434308044124813,0.00569301264511779 +0.583836866067708,0.8331877454547303 +0.6475067361433733,0.15386086822409933 +0.6076034566757729,0.6657877113199421 +0.36046312288264715,0.3107156764163626 +0.9069328624974059,0.10186259750453397 +0.7844729877288871,0.46179673320568565 +0.25896376498038,0.3033279925942507 +0.6285462547232092,0.8150691382213107 +0.4079152311738885,0.6158522122015249 +0.11748042174509382,0.36061887339083687 +0.7410002882370436,0.328605235242172 +0.9901122740982444,0.7260579516461052 +0.976253981215235,0.7449897273923246 +0.01803439384828276,0.05189644841360408 +0.7064039814662628,0.47976002465410483 +0.5136381618375043,0.10748195762882423 +0.11019075791162725,0.6427489104749546 +0.4859842796010071,0.9836733862795752 +0.209894330244545,0.13875461807726952 +0.2606343279089396,0.0009649765817192346 +0.7045076971639358,0.8477673707896396 +0.5263730266852504,0.598108693989748 +0.5131440689521838,0.35858332353864786 +0.059192226505897394,0.21243592587018917 +0.14015295119349597,0.4588497535632681 +0.27346069067809464,0.3099898027767042 +0.4372829976118928,0.12304270804109468 +0.18429524361187877,0.12907709450077587 +0.0853335457045638,0.23418656790416797 +0.9827738663884166,0.8100741796421611 +0.9352157798618331,0.8648232104504054 +0.8556040600151636,0.8067384497849841 +0.44187388202974676,0.9575514104806202 +0.7461648844944888,0.5738922752616374 +0.762019065917517,0.30554996883994656 +0.6557081207611455,0.07449704221240139 +0.546422457791645,0.7308020635207018 +0.413479547231306,0.7244806729421258 +0.6857516133654448,0.5847696462391073 +0.16146318592533915,0.9953113876371571 +0.2126875493539347,0.8526262502884387 +0.5411229195503623,0.6905074307321353 +0.6935194844921169,0.6091872251163015 +0.46134945142685646,0.5082872159289457 +0.03583971910483441,0.6458835473884872 +0.517161093397985,0.9960830110555154 +0.49384268276953514,0.12408789212553778 +0.646568329005824,0.6408210848234962 +0.5475123547333649,0.9736215515488986 +0.09172058100978597,0.5249204491119844 +0.6106712072285843,0.8873416389219697 +0.7244412292564599,0.0129793309817674 +0.5059154607848102,0.7133601562741155 +0.40828115568716195,0.6749201153946207 +0.7128987665517601,0.6472697843738421 +0.9654175516484969,0.5537644464932978 +0.2535076099116348,0.10964234931480416 +0.07038828214171866,0.16938575432090497 +0.7495242622181445,0.7274758066666349 +0.44448663723664594,0.45079640670912596 +0.00741167143370447,0.023168099144645737 +0.4333980526417065,0.7751557018215509 +0.29478173309181943,0.5921908635186536 +0.03704812366313037,0.16945319239674234 +0.3693583901038229,0.9242192831657179 +0.27264468966721533,0.1679561075030097 +0.33117252181072565,0.4752956477878495 +0.16441552454965452,0.934500231695365 +0.47708118195395544,0.6265732936084543 +0.9386832013728883,0.7144416108556355 +0.8261971168005738,0.9976584971042918 +0.37292263501314893,0.8924347733314659 +0.44894087388199955,0.7702077933480861 +0.22857224171940071,0.8041060203760845 +0.3308572055577449,0.8214216201087075 +0.1791343948850439,0.2240970486864664 +0.29522077817053727,0.7786115374080614 +0.2520235933523589,0.754604893758091 +0.664107477501048,0.2280683613951487 +0.627062291502981,0.5561251172527942 +0.16271221585112355,0.11354221998138236 +0.4330926179561424,0.6977560458311124 +0.020833555058879072,0.06251433650658622 +0.10243608116056396,0.4307340935666637 +0.5972998104388183,0.5581544117020049 +0.14789769965181876,0.6768999130095822 +0.7250411681586906,0.522959956011464 +0.09885932430686817,0.25163513633617607 +0.8862513281464774,0.6748813497397148 +0.738076245040263,0.944212708196247 +0.43819390474429254,0.39128383280301315 +0.24707908200444384,0.12087684576419677 +0.6065991508372262,0.5094623189623609 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.36_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.36_size_100.csv new file mode 100644 index 0000000000..81c98a7c81 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.36_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.919553275116156,0.2390667073273815 +0.4756338499368178,0.21176690546412558 +0.8947312594956716,0.5206829116343181 +0.2975539226723013,0.9204025271722431 +0.136887997340762,0.8979473306323408 +0.9363281113705515,0.8033262413736997 +0.5265354233380779,0.2546036026023327 +0.5701446375148314,0.31127558785822834 +0.6513481205714386,0.1668742464451216 +0.6242302645240648,0.1521372143361357 +0.8803515772012931,0.2046558191275552 +0.01517287279574353,0.33711013109207133 +0.7672569666067408,0.1405980587404297 +0.6845379395051929,0.3951050169591618 +0.6782473797154299,0.2023512564114061 +0.9597685565394561,0.3083172818769467 +0.4213479312185744,0.8003641194061418 +0.8540269383241761,0.8229430441599463 +0.035441610262271106,0.027249321695332618 +0.5836913212109661,0.04338941420031672 +0.8061101143759961,0.8504615909713988 +0.0857699388049541,0.25823895187607127 +0.9154061341862005,0.8551356563806619 +0.5563664783389136,0.7570095278157545 +0.7643398151143199,0.10587739721402212 +0.31744556872084007,0.6718027110180729 +0.22424375435870197,0.5113324908355898 +0.3278333822517864,0.10731601750305553 +0.220761914011246,0.14359387981128074 +0.050348229063598204,0.1868727519757697 +0.2901688776990414,0.9192088196218011 +0.6599284487081268,0.16661575945152673 +0.9648428608878563,0.9760716720133493 +0.6979387225059228,0.28517638140417434 +0.9554788009015641,0.4113366120104275 +0.6109359077839583,0.9247661881543491 +0.23612235706689755,0.4561427808992821 +0.23337252104039075,0.039509097587502595 +0.042208380469903384,0.19042881081162244 +0.054571151267535756,0.02428653008795567 +0.7342158240137684,0.9413959566220638 +0.8669333086118476,0.3621118847975939 +0.5260993096150394,0.3519239974180161 +0.0990431948177512,0.7485552350376818 +0.6713869077141376,0.9721443765388402 +0.3685086533937445,0.3874122900943354 +0.02364389193732741,0.0832654121605918 +0.7210022986328394,0.9330565020425392 +0.3697943325876527,0.9575657085229272 +0.6361121896132697,0.7978616148761403 +0.06537007073906875,0.07260020496690339 +0.9973687173114094,0.9107579695530079 +0.3984166045637987,0.8304765944222384 +0.7466221170869127,0.1573683101559895 +0.8794079691359846,0.41498746221193894 +0.6494427584442081,0.04285558463847905 +0.6414273750823257,0.8754963590902858 +0.3484665927203272,0.2757975816625582 +0.5096939119897055,0.2899368356200335 +0.06192728920786017,0.04995972296966761 +0.31374408807738957,0.6270062083721099 +0.5977243509321211,0.8583358242400191 +0.46630887565084844,0.9718998806237389 +0.03287248394908493,0.08225671968455639 +0.5828312475851609,0.6276787690161216 +0.06367496738535794,0.274145889688755 +0.6393559239616176,0.6280321878260879 +0.7207508712788679,0.16117830044390646 +0.26492322062003726,0.8561160608338017 +0.9670950646129871,0.6503788353345847 +0.35235938692171676,0.1026890695870275 +0.5871144676631624,0.15333529570560728 +0.857112808100848,0.6965841354712213 +0.8785047959263337,0.732009239841635 +0.05150980889990392,0.9623952703082583 +0.7028593395639726,0.22236179877568302 +0.7675697963660028,0.5936158552287507 +0.15274678534772507,0.42101503093663983 +0.1610528933522996,0.2700612784136082 +0.3871766660405387,0.9347685346991996 +0.9118953152841047,0.9890737191649372 +0.3381582619821343,0.23667032486005962 +0.799021627720647,0.0446662045502948 +0.03683024628326259,0.9493344091105403 +0.496086756287506,0.4348139798656443 +0.0864403135737426,0.7099009549410035 +0.687036977835156,0.5835627551674465 +0.26468503684162537,0.4713167855035632 +0.310063768242576,0.6074074247759602 +0.9838679210664255,0.9043277529638147 +0.9834071034120253,0.9905827079714387 +0.45618372295500553,0.8042514844253589 +0.8095109836937875,0.5984975545384251 +0.454477772155506,0.8054399532694553 +0.5598360469778243,0.07196998877230304 +0.9041896423419458,0.12681146329141052 +0.15096456702884098,0.6881126500628827 +0.9133994555167136,0.9345537285650503 +0.8988499197618045,0.10260221032722255 +0.538535392712008,0.9820769454872905 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.37_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.37_size_100.csv new file mode 100644 index 0000000000..3f9a0807f9 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.37_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.15681228018286486,0.7022011738701922 +0.2641175839031523,0.8825290718965296 +0.8453193447272747,0.5984771385219085 +0.6363707511189656,0.9324232964300753 +0.28218932968087235,0.22139068406446505 +0.9852646015397443,0.7758486776711254 +0.9153201979909936,0.9533503025372085 +0.7345436289586353,0.9194988163316926 +0.7407447679390662,0.6748109010311261 +0.9513617171923905,0.9489734817016712 +0.236814111315851,0.400707981496626 +0.5814097699460258,0.378918180017592 +0.6162572156214243,0.419834187621723 +0.5736890338889717,0.19248381823551886 +0.37072069863942325,0.7260145184255191 +0.4514403287212819,0.04853622357168713 +0.19691349271675523,0.7918419672832151 +0.01701123206818167,0.46356359044696893 +0.6931075789414005,0.21395135658014852 +0.15097122001410723,0.02540435768883814 +0.059822537199871295,0.31147969243493934 +0.8037613112437489,0.4946668791189132 +0.7822524792559322,0.46766826106044257 +0.9289015433252983,0.6278793205390226 +0.36421460646158166,0.355229471593448 +0.4778464964671648,0.31120394254703004 +0.09211769717995039,0.27375784366597955 +0.754897303457726,0.5638649348236734 +0.9719923278192958,0.962630935139724 +0.2624982337230695,0.29501755263778395 +0.17458117859895683,0.16537463805504554 +0.09881610467992902,0.6940260752622675 +0.4307835637889943,0.7717306386616394 +0.331906794583138,0.2303484104537275 +0.8183936269273078,0.34037860969312134 +0.42737497368905175,0.47963582768847834 +0.6197920710325245,0.4888182400486212 +0.7592117901153027,0.26370709918106383 +0.6276013952692723,0.02119275238620144 +0.6401351811080107,0.5557317434505418 +0.428441558913222,0.8431717393773163 +0.6114728386097394,0.6811914204233114 +0.6784011656370964,0.5927583604460911 +0.975169156576263,0.4419799754067185 +0.7723882975390364,0.8428334726896722 +0.9086321871141285,0.5542661953225798 +0.7049646806212936,0.2687908999947839 +0.8045161565379948,0.529847323662914 +0.4290004446593886,0.8106056352291529 +0.7390703386129596,0.5214952754663327 +0.7556925936769202,0.39379819115593806 +0.9405568974678679,0.9996306658700655 +0.38606065119421207,0.90651662873465 +0.9010624251975704,0.39623779550176685 +0.8692748445988452,0.9996292907283764 +0.05066576494987807,0.8103928921377872 +0.3403759116877767,0.6264859407286301 +0.15545020781242974,0.48377850327634014 +0.4796479589961947,0.05726655380571061 +0.6932160664751841,0.051199350343020644 +0.9393770597415906,0.6860367690274876 +0.08663437037718302,0.3784044601706531 +0.2272593199138797,0.4273355001612773 +0.8035250073341151,0.3921538306535674 +0.05649428237123699,0.19494643517210053 +0.34327681033643886,0.6073473322290502 +0.9783718688707138,0.7970275139105372 +0.022619839365838112,0.1291359640195544 +0.4715243082914953,0.8458502534699301 +0.6501776725178215,0.4979923076718782 +0.64651202459169,0.47069542872351466 +0.8997988534587584,0.8303187450238615 +0.8371235205794734,0.7617843057264153 +0.881918284902627,0.25621105981769177 +0.16349078169233033,0.4610804594554704 +0.9643732782897438,0.5721563560185147 +0.3029916878919857,0.06476159872268883 +0.7809572826163452,0.10536740640475589 +0.5036264099717872,0.831156672921022 +0.08616954489576334,0.031187567565256757 +0.967594836085574,0.4984785996164423 +0.25388476741562827,0.7877384081055013 +0.6192260946018866,0.4122238794999047 +0.29493274973839567,0.9715367570830682 +0.7105590697090852,0.5954565559779833 +0.4626755869309528,0.08788218264948905 +0.8653179502819939,0.2240201162875461 +0.8984881425964415,0.5263464166376325 +0.7970732571690915,0.138537646783992 +0.4953553260732839,0.37981538164834333 +0.7928736879130167,0.7514953935343441 +0.3404462240492361,0.5661558467299467 +0.3161524759870334,0.37083832263843175 +0.4207244086713563,0.7411014914385665 +0.7258314307038548,0.9233694628268458 +0.07835111548555856,0.2373885268327391 +0.07117557452701173,0.3333274600473197 +0.4014655730070389,0.7966752968003785 +0.7338594551630865,0.6544463813324282 +0.5744276133728826,0.6494902712753625 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.38_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.38_size_100.csv new file mode 100644 index 0000000000..1196ee6339 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.38_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9904813216815155,0.7501725266749053 +0.1481671714841291,0.34364170385691717 +0.6112488392925499,0.5971698101041444 +0.5397245973493203,0.05164677251811178 +0.7514143368398236,0.24894543791815132 +0.25091928529544905,0.4555407099218914 +0.9837164357863324,0.6748950665174362 +0.5131523514140623,0.3647166376317733 +0.6172005567484579,0.5403878104525082 +0.07660597414518444,0.5101203121730528 +0.21859255241870706,0.15578681083160117 +0.01339015622634565,0.015534812398069586 +0.5368056565105337,0.375209254100167 +0.3426540142200044,0.5175581582297547 +0.7432614682222957,0.7452290200245806 +0.5788696948284673,0.6213411211738876 +0.9867213911685391,0.18126746865958832 +0.7463395736760925,0.4372543863955485 +0.24445550528068072,0.654800844938088 +0.8896370319632523,0.6467657057519034 +0.6275835383774215,0.0704243536632686 +0.48912356150961456,0.16497177578169558 +0.6790986971301983,0.343768944427964 +0.5782156253355635,0.3129734768245044 +0.06800620715354744,0.7656991048860545 +0.08356273182033708,0.10032525093702083 +0.3015105759023011,0.2464485281919696 +0.3307552941341678,0.570594144625099 +0.09244985915854248,0.37085080232130574 +0.22873256955886562,0.07855001250875937 +0.035478563323710355,0.0325702101599159 +0.4102524092211952,0.9794510896099622 +0.32336517606211956,0.8636374654210348 +0.026112959314337436,0.009181975678816345 +0.4783303696528812,0.6093892207804951 +0.4878045416340899,0.7098712582281798 +0.2160468560625392,0.2658042668257852 +0.7157934242721062,0.8919483703115313 +0.7525493505731707,0.33433565188260017 +0.22713287546610905,0.9809849631384321 +0.8465354242648102,0.8735737493732798 +0.3795050655526614,0.5008256273154637 +0.23759279769826247,0.4384364649376133 +0.9119221561716463,0.6929260420291166 +0.16138388222108763,0.37609623247637397 +0.7580010174360885,0.4809010559570692 +0.5900595313120172,0.8676130272595131 +0.2655044647873199,0.7754090104484124 +0.37854157466710114,0.1920926019242018 +0.17199283722055742,0.3342625442351141 +0.28797098729479564,0.5648339311744477 +0.8819555066854312,0.395101299729833 +0.20332697979090542,0.10790685693367769 +0.6448616292419461,0.7668803984739916 +0.2792181997136431,0.7633526935925542 +0.5564396282417959,0.3834706479165005 +0.9987878635647255,0.9675043712808769 +0.8581201865280536,0.9863509142963682 +0.8487114446687513,0.9633402442367617 +0.5231888117166692,0.7551712631041738 +0.41891131904756984,0.22593469899664237 +0.8946093307177412,0.5225472420201245 +0.12496329604572354,0.24696114918000395 +0.033202605399977436,0.04822806508847993 +0.8042613499910779,0.8274112289504241 +0.48550140575200595,0.14989541886287533 +0.07407912704167519,0.000322588183032102 +0.47897717119196537,0.5391747786756927 +0.29715443204873015,0.2049266311714963 +0.671681757232839,0.25010825329377584 +0.1073515213012084,0.36788701035613125 +0.8522254266807414,0.4380207961422786 +0.43777013441288526,0.8188075933705501 +0.054539800844812025,0.303945425956062 +0.8218872319804196,0.196132709910732 +0.16790818191087442,0.7285068452581412 +0.011474665784040772,0.06374573410327133 +0.08358510841541777,0.8629957878131063 +0.09557358949058337,0.07177391559628149 +0.10994935695130187,0.6002001551996672 +0.472942423864846,0.33341356256341537 +0.13927235720240894,0.945500829652749 +0.24444271982322224,0.4341497056273964 +0.7867946471425253,0.6536762366228961 +0.6079412185287321,0.5530853370426461 +0.024068373350726646,0.1890676636517868 +0.9399029628223273,0.8911075007283173 +0.15617021788992153,0.07876544884184067 +0.4133121301309096,0.15011975559961882 +0.4439058341240829,0.37503091280907935 +0.8160955187539558,0.933850719501119 +0.01794730698349034,0.9387157923754366 +0.22929131162492566,0.25342516853471575 +0.38632710952090743,0.2599151372963061 +0.0635674965517341,0.463354280102151 +0.713976616221508,0.7069161805944235 +0.47222287895124926,0.9630251747904897 +0.5337341788006438,0.2863419112412422 +0.019575935195031757,0.161063181214405 +0.2548315647945736,0.04223883122834671 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.39_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.39_size_100.csv new file mode 100644 index 0000000000..9da8b6f4cc --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.39_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5087294081167957,0.11841969695871596 +0.6818752098982122,0.3377101720127502 +0.45026124991142824,0.4303342994451079 +0.756210891836176,0.9588644678520759 +0.1642398134500449,0.33688650573605944 +0.27399013660692545,0.2934279516247769 +0.13546479737849243,0.6453554426697377 +0.2434592473119036,0.3108333875576267 +0.5788365391258009,0.8285481269272422 +0.8354392983311838,0.7431499856938972 +0.0033484725105575874,0.06219459554273232 +0.7006984636574146,0.8428732625065352 +0.9570262139657271,0.7990379970808663 +0.7129927557884572,0.6796448370443253 +0.5832984314034919,0.7589242243192083 +0.2334587965692661,0.4367591310572638 +0.588914486499902,0.03548549682696894 +0.8086867394722352,0.2437088462442421 +0.9638144620055255,0.8087675999237004 +0.9001418086735467,0.8571230082606998 +0.11173179684441709,0.17358242680630076 +0.9627160936272378,0.9200233207688298 +0.18344488830492284,0.26880326014956424 +0.11909626387623323,0.3602358369358941 +0.7847572765357305,0.9963545112243068 +0.8613375657356088,0.984249660088875 +0.40294540231199605,0.395554103451959 +0.8230312902815602,0.042017764503092137 +0.11184860851875023,0.32303760763485734 +0.08402099153785408,0.05141947312613715 +0.09589663768605078,0.13933095263371692 +0.4237889864868416,0.8709110724923619 +0.4427121500353074,0.7433865958229442 +0.6856302223940314,0.7334645443615928 +0.7678295473268588,0.1353447204893211 +0.6069709738792721,0.8455217145368717 +0.2725145131622606,0.05747143837521462 +0.7499646365324091,0.7643563825407881 +0.26254275345621125,0.7092967072858047 +0.2057260937862515,0.4729751153136404 +0.5313747727072045,0.8011604017325795 +0.17294928093939071,0.16178394484654013 +0.035248336172671646,0.527943262175599 +0.8971329125465687,0.8161210675928001 +0.4731134197011343,0.8270956489306716 +0.8841300469823621,0.9981374085700415 +0.5273151230756702,0.40833214831211095 +0.15589687450005346,0.07813158366379558 +0.7869737548676004,0.5647910349064205 +0.28683496173047984,0.6970430507156977 +0.8327488327960049,0.9885833809688518 +0.10595973377204043,0.11161977817966051 +0.006537167279338951,0.4683965498617568 +0.17292260988180364,0.351097831490584 +0.14544966468165377,0.1548192932435603 +0.28226413598067424,0.5807270287764204 +0.598077586000044,0.20792726687972723 +0.2994326098977632,0.7116167488403975 +0.9550550289571885,0.9539355420005153 +0.20749478390073783,0.4886083067806362 +0.90181200816123,0.8916822587368646 +0.3485161341925549,0.12071988963991831 +0.17300427128784873,0.04679609117030131 +0.5829321623582753,0.13094203824017037 +0.4844598650511469,0.491640771549464 +0.044225792338383085,0.13541011865043534 +0.42930238676202437,0.06482734870285017 +0.8022968074305308,0.8792689677912238 +0.8946135675450211,0.8680098902125489 +0.3495407606421628,0.6072243929855414 +0.4559961565593269,0.7990397883875868 +0.6571837279593955,0.29124679485375643 +0.7673877759119673,0.8337948364024017 +0.8494555193805116,0.46097489278439074 +0.6304337590838062,0.4325703222723263 +0.1587053740479485,0.21120085022601143 +0.027451100951814467,0.38745497781114147 +0.8086923323874127,0.8563938186329716 +0.6371609665739068,0.40665744718419505 +0.13550263017965153,0.5457408197766114 +0.1448520201377148,0.0025522566327423335 +0.714190077657745,0.21616187893579314 +0.7178993597511962,0.5743997253379645 +0.7899539090279066,0.22430781950717288 +0.5662350317883755,0.6549362280894763 +0.6108041333053134,0.5854117140434928 +0.2363032808184365,0.19987772390985953 +0.35819702683056454,0.7481527706346726 +0.6088724108448395,0.8844696953067629 +0.25379933418856826,0.5364946508047885 +0.014452726252512038,0.03045639683265855 +0.20693051977434185,0.49287721875167123 +0.4226140633815709,0.1186100851947316 +0.6971876394593198,0.3976569016093047 +0.32818432955283683,0.17601798741851588 +0.5244460305046589,0.6361534527792958 +0.9496875417311343,0.7393920666820926 +0.1988226412091224,0.9697151354997511 +0.8528192979666736,0.6160801499180879 +0.007598256397540748,0.42849681063395206 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.3_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.3_size_100.csv new file mode 100644 index 0000000000..7d4576d000 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.3_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9809361817082625,0.9140900649342102 +0.8561613639443936,0.9776932722853888 +0.017747435386936683,0.10196222551998757 +0.4825799476905066,0.265544273718458 +0.17270873625203692,0.39375371161608264 +0.5591782783265985,0.9507031305703859 +0.5505048366341021,0.4406273302555921 +0.06543830839377074,0.20010062270086748 +0.0021840902968277565,0.08719092566916836 +0.01588368786929928,0.21515767953575748 +0.019854013555213545,0.15933855664782304 +0.7649420595590237,0.7637398402102265 +0.8370227114868014,0.01771502736764219 +0.7233259529717085,0.7209465129702504 +0.6367560542687636,0.23257855477825845 +0.2972128546927677,0.8534311790779687 +0.143487236310903,0.1820933069578225 +0.29497457194096577,0.7195651217541046 +0.5241720163214917,0.9669583555325745 +0.5950552614899572,0.6970567200507619 +0.5572785630658584,0.12470782582907008 +0.6867512532168525,0.1925059012348581 +0.5801725550951163,0.7577391353543435 +0.24769289850925102,0.3404662768859473 +0.23707184036021633,0.8946876122034914 +0.805340499414707,0.37825412059692737 +0.7985967023023117,0.7409044157386188 +0.9740717845407424,0.9345400920039403 +0.03478710291616183,0.49326861254684806 +0.919567561927592,0.8482754528541855 +0.46300551566190407,0.8393235041655569 +0.8831065879798543,0.6713573799135684 +0.7979560693134518,0.6460869704253914 +0.47242321049938596,0.03535815177703716 +0.860426084442908,0.8348180959619269 +0.8033737046482048,0.16364790858624823 +0.7208617514502637,0.5514325705707043 +0.1939926001526533,0.577089106023771 +0.03435866265806331,0.6168227982057143 +0.787591040648483,0.3610957592588142 +0.020653537858918547,0.38464668721851764 +0.898431428514921,0.586747579301242 +0.7627985342997696,0.7683620312498072 +0.810742064504858,0.054563073331941325 +0.9298008157820616,0.5601660066236804 +0.990613680820615,0.028206330097093724 +0.6522557839812728,0.28461813704798256 +0.5317293568466556,0.5942814687697994 +0.34327918518672473,0.7347413880039789 +0.20728177295563005,0.903758353894565 +0.04173972051156832,0.23876700113917404 +0.9517458797897762,0.9045365143761513 +0.7429064323863626,0.667329045377132 +0.8346345404004251,0.1560482910381326 +0.2715328772442187,0.4188011366180314 +0.5509515490308654,0.6708699843552639 +0.027246337525228648,0.5534402488375849 +0.17777539141505166,0.7944354585208298 +0.66726395328695,0.6421201114308304 +0.7553201715731772,0.20717319067778084 +0.7139266874143693,0.797592110536214 +0.8367460652832363,0.9585579862778363 +0.5170501692274309,0.7081559894692097 +0.3003064608624364,0.22241107398625332 +0.22651288330434283,0.38599779190934663 +0.20087953660016722,0.39483433194869766 +0.21215673345525815,0.025324523943374422 +0.19233058379478407,0.47984427920317557 +0.08087433482859413,0.5502536988377641 +0.6978002500567668,0.2512995502980786 +0.8662504801500153,0.32288333042489564 +0.9696755244739824,0.3751124853842577 +0.993411742431533,0.9223900579204273 +0.7848257849140859,0.45533866947037804 +0.14308146415716144,0.09815987957144462 +0.45279188645281876,0.8220356837893117 +0.06753386881180434,0.05890400114485289 +0.3221002580668657,0.1928780736681293 +0.9348574055308331,0.942522219237445 +0.6587450881879169,0.16305679139222656 +0.9246829152666297,0.4199572892776842 +0.36714734000292826,0.19735525154118977 +0.9370456533771298,0.45109627816425907 +0.4980900007921695,0.4489908227033395 +0.36602610783543765,0.575158130123037 +0.46021864555214353,0.5660776669302986 +0.3700038488905212,0.5082117125554388 +0.6854723527495697,0.8801970913789853 +0.5901770128659553,0.36902898323842614 +0.3168285232826077,0.5786309108414982 +0.5006547674553046,0.5960528327234422 +0.19188355042620764,0.685140479123764 +0.7504064523680744,0.8132889964344585 +0.1902352299322559,0.4781407910923281 +0.9534195818211588,0.909237866182899 +0.8675492025045648,0.48421597870785654 +0.3299705023618882,0.47104613622390695 +0.03530193527672243,0.20590704792024705 +0.3531336794442932,0.7635553141320768 +0.5297910841099908,0.6600146169263752 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.41_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.41_size_100.csv new file mode 100644 index 0000000000..1931b8fc34 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.41_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9457464423217841,0.961623757477613 +0.9872574495577316,0.5756097852369396 +0.25482671298664294,0.37268259431963824 +0.5904046389023501,0.37648936060600824 +0.9925901494527684,0.8204620992492352 +0.7934873301625707,0.3806320302671288 +0.5654398754848511,0.74593902137157 +0.5939165233774183,0.3315297057715908 +0.035048487465142664,0.31468533695371936 +0.10430236985822011,0.8907918519396871 +0.29006877815599297,0.024448082580179775 +0.5233623957964343,0.9783475488059367 +0.31309222448162455,0.3912182645955657 +0.04615873514446733,0.22232966467818494 +0.6543044664902546,0.8815737934835848 +0.9788850177084474,0.9429382732404026 +0.08892006323622603,0.0047463729608530625 +0.66898549159176,0.7834514963874901 +0.6701279300293702,0.3120677141255929 +0.4976352389606681,0.827688637482578 +0.8291695461563975,0.7789313856780828 +0.9103821251108372,0.3529166745425647 +0.4758944364976292,0.8996404874749462 +0.407453366572627,0.075099131753745 +0.058414678397557596,0.04009724345664889 +0.8862344678830455,0.5515357339804579 +0.27382668086881695,0.49590191488724483 +0.18024261230910588,0.6136060429582735 +0.6691226492019764,0.6420095624662043 +0.15487259935732056,0.3409537650446774 +0.48462440706872334,0.2521163660137068 +0.21711898075105107,0.051986433591058645 +0.2988199162878027,0.46013812646858643 +0.2688959759991072,0.5261714969153313 +0.6703736796134967,0.16350804799246377 +0.6925853322737255,0.7194348722201918 +0.26780155895077873,0.4769702696196432 +0.8335567259181257,0.7388587044696541 +0.24346171725456434,0.9631977077811069 +0.03942163952754807,0.2523152868653545 +0.9302167016617724,0.7672442913603827 +0.24707789145569098,0.5103450063655446 +0.4644193883069878,0.2725889370222463 +0.2974676182803643,0.270426000602514 +0.4411898384178832,0.31592438589446403 +0.45671044072986855,0.7045667326200119 +0.743200491715767,0.47278845729036645 +0.020352222681528365,0.4034938313393064 +0.9863549464088645,0.600772163106248 +0.42637942073675117,0.3857600547957854 +0.4666494048179809,0.6373885785105171 +0.4888417057265685,0.13904310925594143 +0.7614554775400537,0.824967585803693 +0.09123022411157378,0.19658829783987392 +0.7808071643055585,0.6314550556657978 +0.6353356957478327,0.25468789050014484 +0.5087269589638669,0.09543123231733774 +0.6242216679728334,0.18421423979029017 +0.6860368596319095,0.5299363308473243 +0.1979688569248686,0.11473711277008342 +0.19095990870297508,0.751227168014178 +0.042767699237940104,0.14930203345396376 +0.4614085157752643,0.5089148084567915 +0.5150829232332433,0.3958768272257358 +0.8094243398621832,0.7662222543271111 +0.08057844426344007,0.23154405096566932 +0.8934468838737261,0.7277753078013389 +0.5921404917712246,0.9304141317719254 +0.4881994857628822,0.32833466048067594 +0.7095185787377996,0.6151721589739169 +0.8341204040796197,0.708162837530319 +0.6501436375298592,0.3407183398948188 +0.1965096984041904,0.04184731491372612 +0.9865606286965297,0.7756875375928076 +0.6337542615065244,0.16107096261408343 +0.1381030703323362,0.9676382142859422 +0.6799009783616958,0.3933212766685662 +0.9386818621556414,0.3280881279801188 +0.8696249479734232,0.9273885291912832 +0.8858666104316073,0.9730878232863647 +0.6637949128406186,0.17826460095730906 +0.3874682197021022,0.1469790281093522 +0.7943022858880784,0.7476807841278958 +0.6232719770509114,0.45356248960028145 +0.3951360329438238,0.9242820450294561 +0.005823066390246212,0.21787556211157305 +0.6960675983936698,0.9333554347331696 +0.8246896212121302,0.05975409065449766 +0.8377458356623961,0.8846639562055466 +0.44157033682906843,0.027336452788093546 +0.8897429012205824,0.9654489860601845 +0.7526615473135572,0.9650957808973173 +0.19425055056441165,0.5326441591353551 +0.5557859692578571,0.3936323703916665 +0.05576422245459589,0.004441272753801517 +0.8352955253097727,0.5556105694069565 +0.2898960750882893,0.5541427639383697 +0.0787673765946047,0.3048749204524972 +0.5346627405394643,0.604855865909321 +0.2381217006868429,0.12175307184561429 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.42_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.42_size_100.csv new file mode 100644 index 0000000000..5eb4f5fe01 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.42_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.16892489714528475,0.5145916586099908 +0.8564516964254101,0.6538057776215133 +0.036219794892297985,0.0022823336503114966 +0.46998510998457677,0.17175921694764257 +0.03743477269104167,0.11712823528568339 +0.5189210780610121,0.27730844364034946 +0.9457278686000268,0.18496317650926314 +0.1734734004174941,0.3901073807624798 +0.451031565577631,0.11043342348869051 +0.2211001408080409,0.8682088150452936 +0.00781283014357037,0.2905675937829837 +0.8239288542757612,0.6913052264741062 +0.8502336693531681,0.0071826934017606425 +0.43265729694823074,0.580371405546894 +0.31372026150850896,0.721535646783676 +0.5471485874330271,0.5757231573662567 +0.6933121591747988,0.6171379967203063 +0.5853484152716795,0.6391308839790041 +0.6212851435856852,0.3977229917439262 +0.48986438045700975,0.1352749512241393 +0.9600563086934715,0.9906543108553734 +0.2522984415911964,0.2740323686397518 +0.18207884351887932,0.26097411108440455 +0.4748385538699811,0.5606542139434103 +0.44313058543069506,0.37414240577377056 +0.6177830623936187,0.3466538245100719 +0.2916142664132699,0.8443168188881819 +0.591991646589123,0.7287725474711705 +0.6747547367380102,0.04674613338348227 +0.6049211644187794,0.5517794317422781 +0.1867390987945149,0.34875843841387777 +0.01469398883093287,0.04926572831239051 +0.44870410557731455,0.9375782126877239 +0.3154307645075455,0.3111685754015866 +0.5651568480304361,0.7725029890311628 +0.15683811069907727,0.6569904542457714 +0.7714167931041871,0.6171124350941767 +0.16310460862220272,0.37619076519519956 +0.888689769985875,0.08600903016310091 +0.0860347724975486,0.15619498694704614 +0.7685651165229899,0.7289619220869747 +0.04263572951078931,0.044873359209607666 +0.729516843351252,0.44364504291819523 +0.17713453767282233,0.7447828136858802 +0.32232502377100236,0.19693274955625634 +0.9414680303005278,0.4148452338039934 +0.6626927789242595,0.9281960140047718 +0.31939653465598117,0.5343943298347338 +0.07850724097362127,0.1581017902006227 +0.3654232086443693,0.7071072040755035 +0.352234785776243,0.15005406963925605 +0.6595949571924548,0.8316535099084965 +0.008880211367211732,0.060485327954244106 +0.9220862500674828,0.8249102979599388 +0.2554232036655587,0.23598799251750113 +0.8465077485967412,0.9217440252600659 +0.4967301948628903,0.7576628201087535 +0.3074701286094167,0.7425089415902448 +0.001390416930271754,0.03117672160492213 +0.7158999589400322,0.9465874851739671 +0.31461157736190304,0.029361937518164682 +0.06739751648048253,0.2397931962222664 +0.049556106108758935,0.13490467366218944 +0.4650679424097476,0.17701249807740005 +0.16030613838378877,0.007037018327646916 +0.04421379570858719,0.09461931955461234 +0.4214424809551869,0.04866622587346153 +0.7392053589882287,0.9148996909113457 +0.08993865576760873,0.30190639954026405 +0.5539703501527805,0.6390685573600463 +0.4290873221195435,0.588252488397458 +0.7266920393493728,0.5367982368649878 +0.9174081257280962,0.912644572290175 +0.8299429099984369,0.3777012908694776 +0.39283045409026995,0.39668009556348227 +0.4848959397606456,0.07732193955465222 +0.17466530564484656,0.71762525683448 +0.5330961759229699,0.8527649538261466 +0.9689071793710575,0.9959232794248633 +0.2539390348724587,0.381332656331243 +0.04983099703074512,0.31847526300146145 +0.7161923340635898,0.5329207947892555 +0.46043697381530124,0.41375623689780566 +0.9570458563464981,0.3182829132066901 +0.6661358881868221,0.8461377347979759 +0.5294725023843618,0.1999792446363743 +0.1988761357530513,0.6954143648383091 +0.8029776062525433,0.7305377073663973 +0.34288205886091616,0.46624220396923444 +0.9015404858111273,0.030575774508975584 +0.2693601315915133,0.6697287119110186 +0.9254721204671205,0.3532211706566779 +0.8336147631837219,0.5278978151753092 +0.9823973458682304,0.8348690990900265 +0.44397294563644607,0.2146878469904035 +0.34562824187358165,0.41651718107841607 +0.06099412765299361,0.024161015195529434 +0.8585992315986337,0.8418510898583917 +0.4102646087973779,0.46672617678857947 +0.12037512208864176,0.0168329704935955 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.43_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.43_size_100.csv new file mode 100644 index 0000000000..9a47d0ec0d --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.43_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7466075499264055,0.7549097860965996 +0.890947291923212,0.6615703160683494 +0.7177168856744769,0.7560904038098433 +0.0034228331546395374,0.055350343120126266 +0.9768044318431839,0.8768129865387233 +0.36620861290668794,0.25734424727701055 +0.6349624381658172,0.4936671788012025 +0.5603703358426432,0.5605147729106623 +0.8228081064944378,0.9438987136422645 +0.613319395781291,0.3546977745437043 +0.5347807525475725,0.5017309155795485 +0.4326325387363825,0.11989475266100297 +0.9644133751155546,0.908509415711693 +0.3528952990372153,0.6211987855552802 +0.5257700119243582,0.38583368915350336 +0.4387629935912487,0.9902306866550546 +0.7651457095400641,0.5031143534093203 +0.8877244280272855,0.8805635384555611 +0.48054133977010693,0.9121017601447321 +0.9154612043766452,0.9134860515174041 +0.12984026669420207,0.6895750470045015 +0.2950046490477495,0.9335156713790769 +0.2440447834383902,0.43529658432468166 +0.042117274861027565,0.015376866290070679 +0.8459809041405737,0.2638610827456573 +0.5718518546711674,0.5318435015443588 +0.939196790325799,0.8431973572620384 +0.7702218456824448,0.38790994117185806 +0.9624440584491164,0.9224626467514494 +0.09475054506262964,0.11304754472709722 +0.32334838421815515,0.8753495186033009 +0.3164977146923099,0.39903701758728893 +0.4508373874132282,0.11263290324591863 +0.7876076121734885,0.09557591290037132 +0.19080599648005625,0.00845656530340233 +0.37271888358143246,0.07059903072240414 +0.3615309079750344,0.3850705062894043 +0.2319577795768636,0.3382533867520491 +0.4383750214023393,0.3216186685348995 +0.695239377154405,0.05366848662735091 +0.19831293761644175,0.48743071493558227 +0.1284392956017718,0.5620101306321263 +0.6685023279906084,0.5878884484612601 +0.5846954630599456,0.7998637254853911 +0.8615397747723883,0.4632690732004463 +0.912445185891624,0.45329225972183973 +0.8938269146599713,0.8776274481769836 +0.9221279725510113,0.7813738787703196 +0.9231717021066184,0.3673889831067283 +0.248723645697985,0.2206040927670413 +0.5879064839411561,0.6759664992248633 +0.044730063819626964,0.2509323602606278 +0.3352491263102226,0.6966067547004489 +0.09156172899049475,0.47270511499383816 +0.08888542075937073,0.3303638008604106 +0.7470687831618563,0.12860246976459994 +0.7919561786176977,0.0092769808789116 +0.9235507789771782,0.9021704269169244 +0.43216164705032867,0.5202611104946491 +0.6149523177778379,0.47657926929590405 +0.7862256448479311,0.8707002303117327 +0.7131352689477458,0.182051632898243 +0.3857192655573094,0.2511854057339116 +0.34387773521381304,0.4587671560620108 +0.18926888756593657,0.8774494534223212 +0.07176695881201545,0.72175867101239 +0.9833757584985614,0.44143415168300537 +0.3300212966117818,0.9778910884523059 +0.8719154335152569,0.6953779363196004 +0.6389921384730778,0.19963728847275142 +0.5468723477333156,0.8096405002976617 +0.7750538726238758,0.5166369641761798 +0.13368979997925384,0.17916334923211202 +0.0685648492556088,0.15076814808755334 +0.5593491946767508,0.3912563912208684 +0.253113253691981,0.30381450303866175 +0.8247312313108894,0.8283755583831707 +0.5664667292628691,0.3158491646162508 +0.5757197407380745,0.19914968227961122 +0.7567854482841776,0.4178362212884678 +0.9789461242457497,0.7062681365146319 +0.13696658744546675,0.0902144203725399 +0.569026219135901,0.867844998126638 +0.4714762485386442,0.6774730614386179 +0.38751488077354934,0.47406743775821714 +0.589290338806241,0.45647943494515975 +0.004931324215409649,0.2091075738469087 +0.20503371210230126,0.45321963088255596 +0.4499632278077361,0.7664349421429072 +0.7092160957111828,0.0006448565078654989 +0.6520340974839288,0.14426222595737115 +0.9861439623961028,0.9739689769517219 +0.8305756736553596,0.6521653834762708 +0.03165175788143437,0.41782682764769274 +0.33287548673261513,0.42447897189453865 +0.4251881654270232,0.27295539598766194 +0.8591523141083884,0.935317684020919 +0.08136564575114985,0.6503912046276078 +0.9639351950918307,0.49425779599766956 +0.7252979734240851,0.13864993025138334 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.44_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.44_size_100.csv new file mode 100644 index 0000000000..d701d59825 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.44_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5671484923219173,0.017673180777974307 +0.9531798367807726,0.41673178357174373 +0.20004104615148272,0.33431734364149623 +0.9337757662606,0.9231764950160474 +0.026483273722393785,0.43378947444848115 +0.2099448654235242,0.8015106323729364 +0.5548829937499011,0.32952038340258505 +0.19719307844162542,0.8039355724975958 +0.5707980028084575,0.6015721249966448 +0.8415188498859856,0.22037041040879501 +0.6575548074016754,0.9375265456503258 +0.9698961105453842,0.874676170120494 +0.2341221844078774,0.8313781228141773 +0.6850228730008853,0.3418765833362577 +0.3249705806214833,0.22691439317009326 +0.06103420598334819,0.6204362741298073 +0.8562495415692903,0.10474858676218074 +0.6328823246471531,0.7916386367511323 +0.5799519943292714,0.393463247748121 +0.21770933152271071,0.2403934156754578 +0.09404843186295359,0.10019645472207317 +0.06225588398348891,0.05667635385615705 +0.732612513668337,0.9420393738167715 +0.24553673823501448,0.32913771145059323 +0.1515690101835705,0.6257295586543086 +0.25368179215430114,0.05194702474379481 +0.1219100481782045,0.26398523466607715 +0.9153665654528136,0.8321998382871183 +0.058769975188601664,0.4371852712694168 +0.4116565899118705,0.19773429076972787 +0.20478652761020438,0.5942161804414038 +0.5771293165718931,0.37302028850587476 +0.24295699074971033,0.029408626343085498 +0.30074163275609933,0.555610990792764 +0.02893202461031874,0.32532295335571626 +0.18309430600847865,0.7134329266410928 +0.759104131157462,0.6439658119061695 +0.24022704572958575,0.5521651988554628 +0.4984362261497024,0.2563734766582102 +0.7603812943524187,0.754642909597178 +0.6026782945320395,0.3081807565688027 +0.5570636668983451,0.2118475931502406 +0.40052208210821727,0.9564942029436061 +0.23915049566726698,0.25933773069662425 +0.792568716725677,0.1703298210467058 +0.779466971287551,0.686176946509541 +0.00813175687169121,0.1485813971682744 +0.5938268461995178,0.4358648686271347 +0.21262686441086015,0.28414620601494195 +0.18539934095805544,0.03665224119781413 +0.712136345718085,0.5209648674661418 +0.5347825113439238,0.1052634020884885 +0.9288271050054432,0.8179410698291583 +0.9879185721599263,0.9462466294536009 +0.3987722274567973,0.6888631752187327 +0.26625969934032784,0.6565686400211974 +0.4952470152593992,0.9480382107038821 +0.9491639713903246,0.7295230921163539 +0.07713276116221796,0.13127222752654039 +0.23422862789525728,0.0937104034358952 +0.9826592712677427,0.9705746373691326 +0.018777682136646545,0.17609424484573621 +0.20104943249881657,0.247109899507791 +0.7754566215083806,0.704338165197723 +0.06693270703445586,0.04858749234181364 +0.09185452911460323,0.3024265251492585 +0.985898705377662,0.854334680044171 +0.9539814635450534,0.46689361864320655 +0.5954041551557099,0.7433533093875917 +0.7489847883197012,0.8766262830034475 +0.9194329728005646,0.561277728575494 +0.19203702988505045,0.21286825086938543 +0.7276196430548628,0.2223985012082328 +0.5329867331266037,0.16364048283135912 +0.4933739987238809,0.39644097858296584 +0.19888895012216867,0.22357113125774664 +0.9480596939902175,0.9228621494558249 +0.05259059114432446,0.43431946956044615 +0.8530735807138674,0.9100938779638676 +0.4332674419956193,0.5202690843062576 +0.8472639529506438,0.9767998689874899 +0.9738392697916738,0.759245265538547 +0.8106992739191289,0.4503188638025653 +0.0388132133789304,0.45038062976581145 +0.23005860524482008,0.4390545880665362 +0.9038616704290132,0.2761503862620728 +0.2487447971333897,0.043559535839957086 +0.21187832993379263,0.9429766501880491 +0.12722118735794202,0.06788763193060365 +0.6484668610641734,0.9788984034384525 +0.08151163142653478,0.19596675908309186 +0.19457408281082056,0.4478547470237898 +0.13100590383445976,0.2785171400789519 +0.5156349572568657,0.9560234851766789 +0.2229611436400833,0.13088590685391194 +0.8071570650764401,0.8052356147711158 +0.5841052322179177,0.3051765290166468 +0.7586809620528456,0.23046287496886658 +0.5348057824758697,0.5361218214735456 +0.47602258930036234,0.4626335222847202 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.45_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.45_size_100.csv new file mode 100644 index 0000000000..8274c28d7c --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.45_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.03488565379930597,0.24020427164463015 +0.16176735206703752,0.10875400120788764 +0.5538478757466189,0.4227918299653203 +0.1600269766561957,0.12984149739183093 +0.8357439853816238,0.6780968929816148 +0.0298116006859096,0.30324951659751187 +0.09472231738699055,0.19588977136739577 +0.8846893853961852,0.48902605970670626 +0.9096450007500496,0.903260677835928 +0.8435747062450574,0.677630562302558 +0.5139672684777528,0.1689492149821244 +0.5529956431703343,0.3714668240102649 +0.019625772708615763,0.44445102754275023 +0.28312312807400863,0.9355307813318663 +0.011482325698440543,0.735761898642305 +0.7186448805492378,0.543973310835987 +0.6127709700944717,0.6793058921569932 +0.5488161879335296,0.9622951217778981 +0.4638628845573227,0.31218150776445464 +0.9225794140522707,0.6777710578100675 +0.6134055241808543,0.5922641508564681 +0.5510627649401743,0.9738486518405155 +0.1843560820085069,0.6263985675120822 +0.26600753318892945,0.4615803093739359 +0.6318420392602111,0.6451478589110579 +0.3947190899967542,0.47249658393798405 +0.07766573056364867,0.3860283047537843 +0.9440984998151773,0.7232970873703728 +0.9565853957708621,0.9351399106227805 +0.07720939719509579,0.7544334131678738 +0.6441543468257096,0.46677899351242724 +0.42095531447300616,0.9566148681448685 +0.6416029643529079,0.4927564614637881 +0.7447625794395323,0.09044223176492183 +0.6613442697985811,0.6821029458791305 +0.5086202086779276,0.46449865922200806 +0.8112636293293378,0.27384327471848385 +0.28396995217339316,0.40128657901109827 +0.8508209342608343,0.4143212445468737 +0.16774507846958225,0.2071538767849171 +0.2121517094816162,0.1988091930307872 +0.03571672045132768,0.07929978253540448 +0.9608747104265749,0.9957913902177138 +0.5838575960416873,0.1868568971796472 +0.3577588807483767,0.45790294237008333 +0.48288925465259713,0.7665472546015544 +0.2036176425560023,0.12181256100950538 +0.8259678208509668,0.6277208802361468 +0.07681667746570142,0.17565424753081393 +0.45192833313990766,0.8487564323587549 +0.6451257366601162,0.2213841739408599 +0.9850692431542536,0.9487864188549682 +0.39159856743691346,0.5869933071208118 +0.1696614728310345,0.29896459949124 +0.3347005934310322,0.6561599340642983 +0.38389341897633256,0.318812586772496 +0.12370699904289612,0.35413513477935576 +0.03552437920952112,0.5060769200473331 +0.2568885372734203,0.34893371749658564 +0.14309314902815612,0.31078027068717295 +0.5611114926022048,0.7235344539490223 +0.9018087641775354,0.17206540081957122 +0.30986466457517237,0.8101205956960158 +0.40082025787047104,0.2690553014563103 +0.02951432087309458,0.7392259586938901 +0.5712779736043808,0.4326985198661635 +0.6400022329554225,0.4190140048883981 +0.667624837575723,0.873358607648812 +0.8967395988598978,0.8793925631517302 +0.6069703614811965,0.9871604249518644 +0.70139525368248,0.43877395101906225 +0.9587633654027178,0.5218051240498948 +0.8332443112856607,0.7280226922744579 +0.8227283939422567,0.4972762649431637 +0.024481064495652904,0.5900431919298629 +0.9479709706616791,0.9341034927676541 +0.1651897945068594,0.6481986223831926 +0.8110129509128505,0.9616286447114748 +0.32168727538962094,0.41346629809945484 +0.24202853726304951,0.5234565514458863 +0.534323658937786,0.49686748739154996 +0.861844921945683,0.5921431767774166 +0.7358989759655041,0.6289406523033118 +0.8516415568536218,0.3461317580593235 +0.09483924111857428,0.6502863370681384 +0.544534927244691,0.38003553455665706 +0.12081594226479542,0.5785663281112793 +0.6610897371591421,0.6299780940695899 +0.2933831122070176,0.13487087359336097 +0.05691621750568843,0.2948999070636762 +0.30228932813523923,0.799685510925674 +0.7027649980511681,0.6657749486855863 +0.2545593568110269,0.3922687264531639 +0.9562444120815503,0.9989205873796394 +0.11028690694043014,0.048973819297388754 +0.4174465676529109,0.2466944593973655 +0.12950606928719466,0.838108689088393 +0.5673683337337563,0.8007951835695024 +0.4719128292983621,0.9959023888611733 +0.10496524143798153,0.1717795758728332 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.46_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.46_size_100.csv new file mode 100644 index 0000000000..ac95f8d9c9 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.46_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.048590485414652385,0.7421871997523429 +0.08058102173862597,0.09303709352359851 +0.41393622312963796,0.28348854110041 +0.0403990959033772,0.025671143422677678 +0.8905535374874624,0.39306496548472697 +0.03931048419580674,0.020427453828491426 +0.20680715560104318,0.6464147844796969 +0.8226627230241308,0.6215360269691542 +0.3480393157879539,0.6403275999840186 +0.6157493794836445,0.9239460475537897 +0.9698725626673442,0.9723168442731263 +0.30355666460297404,0.21795190447368007 +0.5701538951314065,0.8709504020561546 +0.18405195832762672,0.29255161558644716 +0.35308990232903037,0.29967312486111974 +0.6272020575478318,0.46805366624130884 +0.36818750282380097,0.1698963055053494 +0.22035224756970173,0.23776436352423297 +0.4446891487989455,0.7196270138930743 +0.2999683418864577,0.12504306367023138 +0.9494729925044105,0.8153484113233744 +0.601875930227404,0.12009500323090488 +0.16602667829428402,0.16356907901047407 +0.15095814427313942,0.23773357079010193 +0.7477474337877631,0.41191907062252175 +0.28134755423172186,0.8108947637302893 +0.47398627805648486,0.39244317688439356 +0.7352465136569817,0.15148043021044677 +0.49579997436498935,0.03453749624449404 +0.3074906079584704,0.6560001608179489 +0.6106488325623662,0.427282037689776 +0.7385047083588558,0.39219143546255075 +0.9639642403227631,0.9590977184754333 +0.11657181706067199,0.265991437153687 +0.8714793726551342,0.04094458595647493 +0.9717562209432634,0.7297087646111027 +0.7939886854938246,0.19975229702558234 +0.42931535083750594,0.4532025620440627 +0.6569780797453799,0.2556219125139816 +0.7366169614081832,0.7691162301508394 +0.2688974627910423,0.6547339855473682 +0.5300193578336209,0.8698812787334969 +0.1076785504197974,0.3963100134244469 +0.8388149601432057,0.7895769784639857 +0.4389954992934977,0.4324357068182806 +0.38239351902528085,0.33754670863537706 +0.17405333063349693,0.6666080455846144 +0.2629450785908761,0.6455827129481724 +0.22502419849890232,0.12285580284669789 +0.05764988919097802,0.3003239515865523 +0.7724259921791738,0.6573891263220735 +0.3527630166134451,0.6629995919594914 +0.13191938053326585,0.2685926683797229 +0.520060494169102,0.12425406386018883 +0.23794760068700604,0.8104547101359532 +0.0348279353022819,0.007961449807055265 +0.5671179036416893,0.4909262248541031 +0.961256594435735,0.6593672204882092 +0.79896112480132,0.9536778921044534 +0.5516108815536954,0.9775217147992992 +0.3445299750285207,0.16375653795791623 +0.9223301665209753,0.9111297269401997 +0.3971296818283143,0.09301755388423177 +0.9445424324501405,0.6885439777096956 +0.3910532207748205,0.29156442981947955 +0.05355749683886957,0.12009022223573473 +0.7677581642055723,0.22552725195294676 +0.2754018216528805,0.26398435318883906 +0.48861986740532837,0.49912913830461364 +0.6369222651968739,0.016847530166873514 +0.5512408590047294,0.7097403260448079 +0.9804695276453733,0.7092181489136621 +0.015383039964541934,0.25050869093268024 +0.34657300587010564,0.10553615508556713 +0.05833519701321044,0.295590782187693 +0.30208450350322613,0.4335573998948376 +0.09717879810423102,0.05058426342720812 +0.024158802561928705,0.056200121338623066 +0.40437546007255176,0.533823192763216 +0.8948294378792866,0.8392320422453666 +0.6662899001198379,0.8369707176524577 +0.2833279079957923,0.4778037658171342 +0.20948285014577817,0.4686444234971913 +0.0702524561804313,0.8267347591088728 +0.5858803896713526,0.20162835021414388 +0.196570714084634,0.5294896009543238 +0.2588964992427646,0.15961850948814071 +0.4664013162290178,0.5812007414655987 +0.02870244695644175,0.03837804472566175 +0.739350132371384,0.7537953667469208 +0.24810643329516907,0.4156749283601964 +0.6004531000088479,0.791834635610164 +0.7560271980041666,0.8221840434193473 +0.7707867567352109,0.853924618071382 +0.35409157024687643,0.7461027247313173 +0.43490785460596604,0.6969379507579737 +0.4942978858621392,0.8655547170604945 +0.7529450939017875,0.8879633143977375 +0.5034107173854961,0.1601749233354523 +0.258823163301668,0.2133455706634192 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.47_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.47_size_100.csv new file mode 100644 index 0000000000..f4a03bde34 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.47_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.2911468666485555,0.3261565832969908 +0.28252904966942083,0.08175261711544052 +0.22941777489369108,0.12266986551233816 +0.15878735433100932,0.29299782521283313 +0.9729835697833799,0.9975384020036491 +0.017064943347345873,0.15938059881275052 +0.8119528814545552,0.1509644780847227 +0.9027706610036978,0.803848727979802 +0.18467635475415306,0.5720744211705491 +0.0013220836681694381,0.254238997198861 +0.16929959590818477,0.0622514147173483 +0.38521643900609864,0.3960350906565518 +0.7488562512120542,0.025217975467136944 +0.7702844366668433,0.9238791402648268 +0.624090420394318,0.16379956242512228 +0.7105703118927622,0.5649988715243016 +0.31088626682006204,0.5705703978695215 +0.8167838491910442,0.21906413093395166 +0.8109135493349923,0.6886355641410467 +0.14858136350876844,0.3427757859524779 +0.06092996064242773,0.12681375492209512 +0.9519401850470688,0.9952959891909183 +0.8686103666469047,0.6057651682709521 +0.9531135952623465,0.8463206077453499 +0.1569382500301198,0.8738540020950645 +0.1884797237694658,0.5248187009694851 +0.22772797523233967,0.6370566611047651 +0.39267793209192836,0.24909551313899464 +0.811252360693038,0.1657747297368214 +0.8794816824447719,0.877032923682707 +0.5512727585253913,0.34414643289385627 +0.17878765353103993,0.039171324668209384 +0.5090029267916552,0.3060170532058911 +0.6674737948618068,0.880509894165169 +0.9071236332436493,0.8963038722508736 +0.1350230028140299,0.16298893629617406 +0.6496336332098714,0.6639278295874432 +0.8527534387964102,0.517969289911627 +0.06230171817558061,0.11592856900613063 +0.6671731618350726,0.4019223588305112 +0.20839140427212555,0.3630727494830418 +0.7025690772357442,0.6193013901863765 +0.5914677300749308,0.21129543165790793 +0.48496578317630523,0.8655375018063547 +0.2597089070777763,0.24746691966139872 +0.35133639895563185,0.13893072094900055 +0.9276512691732676,0.8748468482330987 +0.14418817652869986,0.28788184027168073 +0.9325569451516391,0.9106241278593409 +0.7607287320162026,0.7141777328633641 +0.5716790740879742,0.48242744788818526 +0.7370454781805941,0.9496870439042826 +0.11080446584072823,0.024567035343929233 +0.7433426464050962,0.8764648123301428 +0.4015095283131159,0.6850334924086087 +0.7878665507157621,0.7883228821732458 +0.15292275311774667,0.04398990287341853 +0.2726984625239968,0.4820522159950653 +0.7244751968111882,0.4153965833319585 +0.1726617521986013,0.010969106656438743 +0.7993459878388515,0.3886531835967387 +0.2684680152511595,0.12226135678238331 +0.11768212128437056,0.4319360325300171 +0.9195879394075834,0.5931033610991988 +0.3575397700754499,0.5364281255213615 +0.6169587685387116,0.795524408567927 +0.9077851812124742,0.9221527791796391 +0.9927825429855213,0.8868718472702797 +0.7794317368354784,0.4074911912130213 +0.6465420691591695,0.9281678499523596 +0.26850489594941596,0.7413051303970648 +0.9155810240868363,0.9342778193465205 +0.2092520869627172,0.06150080416241338 +0.5429655516185101,0.23724931617980216 +0.17155420751982614,0.67174188123337 +0.04987756554142431,0.05532192071287878 +0.28557853045484394,0.9592967224377011 +0.4375067377996795,0.20417151155045787 +0.8327885524452725,0.6893195304745817 +0.5838767361424957,0.34739293253876813 +0.8595349237820425,0.9448508733887426 +0.003740250455800953,0.2732004283807922 +0.3283303535555423,0.8834192836778931 +0.31717937166737464,0.30834966632192284 +0.3973922275768238,0.3782785511651839 +0.9582415857431307,0.7380119837837997 +0.8694729106525346,0.9293508234004897 +0.053690593216831894,0.08209922048193319 +0.6038770136239439,0.9608878971706833 +0.3324532619742837,0.04747980764850984 +0.4162050231884382,0.3269209731017979 +0.29351924825669085,0.10160895340049564 +0.5644455482075855,0.08178957511911178 +0.19467932058216963,0.31320679287924474 +0.27371534915365325,0.5051991132497574 +0.4559463677605977,0.35666318548523007 +0.6122882340116867,0.793116748227694 +0.9078252598543868,0.7691742513111268 +0.3317744282190131,0.44811954141184024 +0.6175742225602071,0.6133343492755143 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.48_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.48_size_100.csv new file mode 100644 index 0000000000..c4c3765bff --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.48_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.4499343334657495,0.5079914835208212 +0.56027827807252,0.5796933714359546 +0.6569087792247078,0.08645129359107934 +0.5246066552146589,0.7096858396188997 +0.12830096141655895,0.018012797629097854 +0.5393084623752429,0.9296671890615538 +0.01648730372270646,0.6986999326044809 +0.2564075818194578,0.14733190343143043 +0.6642593386944416,0.714289136187505 +0.35612468397265873,0.47308593694934264 +0.8745282012435971,0.8447513845982071 +0.08435045824709358,0.45409945283767594 +0.9212262813554357,0.6371011702042988 +0.5244277280878564,0.32915028615014985 +0.6314463267391088,0.7074855327697029 +0.6917095421211653,0.29697914931580505 +0.3122391974499583,0.8628811546579528 +0.9976154935921856,0.9750410397211988 +0.09094955146347417,0.10332573910407816 +0.6485325654337907,0.7512805602098713 +0.32848441400271167,0.5530498845973 +0.1818862488311509,0.050055665277120076 +0.05593959932228165,0.17664987415785743 +0.8803454745117112,0.5021583797409194 +0.8370949619591608,0.18128839403132885 +0.704300941737015,0.7962176556902891 +0.14900914819496808,0.5585282487685889 +0.14841860427246473,0.10041901296528577 +0.3273152705235114,0.13486967386404097 +0.513692643321188,0.15814765485607268 +0.728301693416795,0.6930254654972569 +0.5441353163522008,0.4244333769645786 +0.7151837059275865,0.4235809361697199 +0.8223106832418889,0.3417915580229866 +0.7989756426169824,0.21837539816988738 +0.7743814325367583,0.5400058172075003 +0.45487291113220907,0.06350678505511909 +0.8441910932307168,0.5032728933519439 +0.3035896927654672,0.5980032399339916 +0.558841209966523,0.3481362475329751 +0.269904811086879,0.4874831605161646 +0.3779482660173539,0.23495791442630015 +0.7492167563694265,0.47760143228836666 +0.7062698521653519,0.47881616564591317 +0.4362722726612387,0.8989341472248943 +0.04987359911613454,0.34077549917207806 +0.52979758781861,0.1936430993056833 +0.9986985034384681,0.8525570507245144 +0.4216792356836053,0.4028934677393412 +0.5764020953131076,0.6097102975050412 +0.6165547437179362,0.09200327720442791 +0.5664068539051603,0.06660187761037584 +0.9764081377255273,0.8432784534215596 +0.15903353530083097,0.7450504586752205 +0.8827370128955543,0.91347599757644 +0.40384833285698274,0.22737078744814082 +0.5076066954449681,0.2224960996773362 +0.6338669214474554,0.6291428815183493 +0.6370514937403334,0.9638615619974967 +0.6369582665169553,0.8055994626044444 +0.7431045315765765,0.9579506574413845 +0.30858598384159863,0.5806633020361098 +0.42181921640711295,0.028463879316457497 +0.12676921680403969,0.42563249630422983 +0.6002379194561672,0.5495670473768159 +0.3787987668130076,0.27959613944094774 +0.9180206044018322,0.11479542792460135 +0.5125367227550701,0.22057276815759597 +0.42819762428625197,0.6015300109813957 +0.7543358128685742,0.5794735306541746 +0.5543246661362825,0.33164908152475836 +0.7617030785312285,0.6759486698611551 +0.7664588498279594,0.9429185701416752 +0.2781986193656576,0.17704364742308842 +0.2295352041208083,0.16763907137736245 +0.2867513554682809,0.336763747420728 +0.17215899243016358,0.16575756057140567 +0.40739242864994385,0.41437912219546924 +0.3999186942790266,0.16849917820878357 +0.5265405042886485,0.07223297453747557 +0.6296914170850935,0.37726568055850784 +0.8169050101182733,0.5400113656735087 +0.13996516988945962,0.332347920832036 +0.6445785352595206,0.7035823363621109 +0.19519334269027272,0.6415085764290093 +0.7594171228151645,0.7200758834118288 +0.6478107067577545,0.6945709319302813 +0.7482595657656544,0.9099828236262225 +0.3421034600271923,0.5610211681200206 +0.3635707145927113,0.6860357095209203 +0.8054859886393275,0.6767546387866951 +0.5545910885251779,0.8352235233779925 +0.09285994372233991,0.5481124881798207 +0.9364380988625568,0.643339779703615 +0.17428965056982243,0.6985381002613841 +0.6998497335459545,0.3654696507872489 +0.3041983491535993,0.4665109114712258 +0.04055749966108735,0.21815447741848726 +0.7135021052390658,0.2870857967585444 +0.15206088002112372,0.17726055385084277 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.49_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.49_size_100.csv new file mode 100644 index 0000000000..326b93de3d --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.49_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7255538351671046,0.8687394654001336 +0.28075062196993805,0.14132167205691126 +0.612638591687823,0.44215430122495036 +0.07171881204232389,0.7751711709947923 +0.8458203121029184,0.9591795963182933 +0.21103649382809947,0.38401811449182555 +0.6368562745016395,0.29365235015096613 +0.813373406834023,0.9557621083015093 +0.23911008902450903,0.22136107277248623 +0.1445071695033307,0.10455060210315364 +0.6098927682044186,0.8193464159946151 +0.5696989617234999,0.5762520021652732 +0.2541708532919498,0.10002611437574982 +0.6521692964461174,0.45629876378267054 +0.4846935891500581,0.1466130408948481 +0.8087099318756708,0.9873960873275984 +0.7002395581661348,0.17461609826469454 +0.5454758116654114,0.729288369792206 +0.8706982537347585,0.6439545015239427 +0.5792058365782774,0.846773270628588 +0.661515965669733,0.8959698206021804 +0.37341179866888496,0.34255602461712054 +0.8580418204265787,0.06172071190508649 +0.5436363160550505,0.9655457942432684 +0.8278550167740779,0.6528556425960763 +0.03368369300514851,0.6943131869626042 +0.8516011112137207,0.8800557706161011 +0.7157670698725537,0.28343512808896903 +0.26544225824280165,0.11319101515889052 +0.8145705641631554,0.6772869014195344 +0.9522705847513558,0.9611748322963671 +0.7256113455021258,0.7051593400924472 +0.35052220173132964,0.636366051891424 +0.21550977651485376,0.11225284691393284 +0.26193042821956636,0.717727298322302 +0.6911896483075798,0.8618605001773709 +0.9969075648585662,0.8413795672788837 +0.7964305204874175,0.8962621461339411 +0.6874397646400086,0.6856164502950921 +0.9067193828102036,0.5161147230855515 +0.7954518444146939,0.388330817742317 +0.493882419095788,0.22989530412256992 +0.015128885060468389,0.007168696415770837 +0.48953256553659985,0.1867503084604633 +0.02426796439080292,0.034765154849290825 +0.26692219133234285,0.28465493441816525 +0.7827931550453309,0.4439466290132192 +0.18688350976909623,0.5071008506579772 +0.9218365995083396,0.45219471708414416 +0.35760952431024073,0.2867827788358336 +0.4818568040478224,0.3760312323984365 +0.7998151562332414,0.9338486917048334 +0.5239774653320696,0.27035906315754843 +0.5646912620389015,0.508915487790034 +0.4963939292135042,0.7075971882493973 +0.41718636902537776,0.10572729576214662 +0.2880602345567097,0.5055001074467808 +0.2902847150914053,0.5280495438379399 +0.4621060012851861,0.49177381350945154 +0.5902019986015835,0.9416810455591423 +0.7945290342532823,0.04192953681003703 +0.6127556484890615,0.1641974876897876 +0.01535449311860937,0.004736823811452795 +0.77391264612003,0.0545657163098347 +0.0175783191165233,0.10573556491945008 +0.14600343618024125,0.9198469232246725 +0.6548692149181871,0.7432133094339272 +0.5589233698074628,0.09771118939603074 +0.02970536764642917,0.3842077027439753 +0.6476877729484584,0.2581728602021037 +0.6160401468208737,0.8075855736986657 +0.9349767783177105,0.5274672600164413 +0.24028902475677855,0.14684921213221647 +0.11327500853531874,0.09281484636573106 +0.4116538867029409,0.6253350773304379 +0.7776507373800162,0.9117993331151679 +0.5112977231430093,0.675721743380908 +0.8948789924062858,0.9556297634336748 +0.5880788899567261,0.042656354126854534 +0.9217612138226297,0.13340145229836042 +0.4751987449141736,0.6445849313950056 +0.32759106846896013,0.3635777560235792 +0.9959027432475336,0.9383471063881241 +0.407790703416259,0.2058452948153242 +0.13168798639801232,0.18237965579816584 +0.3918342504794182,0.00562304536625452 +0.53816227460812,0.16383363409126434 +0.6946388297779192,0.672032437477171 +0.7597995961545605,0.7688037232189244 +0.47115277602941474,0.14804540605163785 +0.45584242245388407,0.90704152900004 +0.49363040342805564,0.1307872395801733 +0.23086807891176236,0.28328487041580713 +0.17204801742594944,0.16549623555846293 +0.27264250549544766,0.37965221323299847 +0.5316183488086929,0.696786830781378 +0.14779066964432802,0.43622846620860123 +0.1681032372104736,0.09189830235324598 +0.15028559897525506,0.13517746290134453 +0.8239906968552608,0.9248602219107546 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.4_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.4_size_100.csv new file mode 100644 index 0000000000..43270456d6 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.4_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.048890195992492114,0.3866330449373415 +0.4282248297957879,0.14194658287184697 +0.7050392558327205,0.043146786457111896 +0.30213497315038296,0.2330808359713425 +0.5527505056524977,0.21288668688488754 +0.23128394897686155,0.2936115665288097 +0.8547482716389316,0.9853224690876674 +0.8645815635043546,0.14131119591247082 +0.8723726714262188,0.1466566717103056 +0.8794831079102432,0.28594295118534574 +0.3197839862060906,0.1826915997109263 +0.5187925270282971,0.8684722922325514 +0.3589360336414563,0.7098927931388023 +0.8923252991359163,0.24021491423196867 +0.219560205975384,0.2401810634540047 +0.4912675789134987,0.1093074254223027 +0.025544552581796443,0.4860288452144378 +0.3921550477737433,0.23700929785819524 +0.28279335518742144,0.5707994873062994 +0.8754133998031781,0.17895621440219328 +0.6909149629444219,0.2265308619823162 +0.520794961303241,0.7435128016811701 +0.23201488500053102,0.7815917116489888 +0.092202421986181,0.27907422975988866 +0.06024332404118371,0.7250968159159421 +0.17289084445112668,0.6627862853864491 +0.9166259763548555,0.6447772567810398 +0.6584466956427293,0.15436038538659475 +0.4683826410521279,0.8039559056978381 +0.5248333136742926,0.2770706942604749 +0.808011765628552,0.9747436496561748 +0.08710153344621552,0.3688576390029991 +0.08730173806015284,0.2309689545725535 +0.06068356030067534,0.2795364920477315 +0.6018142149194404,0.3228446820812573 +0.9945099253610798,0.9532568052451913 +0.5607731961702861,0.1793488741928646 +0.4670529582493941,0.8612705127897492 +0.38355072199091234,0.7239642003429319 +0.5331352107100962,0.6917788399398885 +0.07378589404636582,0.2867118384312666 +0.5380707263929345,0.7424706576087927 +0.6613811874233229,0.2817298288785022 +0.8170111667425176,0.32624910837742893 +0.7267350318294009,0.4377040583892661 +0.6705391154277475,0.36981173933445477 +0.08923025510704113,0.004111945818968343 +0.8400462356524843,0.33705233783670274 +0.5517206982608146,0.10666908830740596 +0.9503649129294929,0.5550067705059888 +0.4696647737885107,0.23536259954525862 +0.2770765657007623,0.08721554572875712 +0.3943365613787122,0.6435275493918372 +0.44276676314933394,0.6782302783732284 +0.6618104575590602,0.6741054039165005 +0.8103120017537491,0.5197031629838664 +0.6495205786492185,0.7875229072792335 +0.4451859287933445,0.6988899091812535 +0.9184578082343144,0.9135015619464688 +0.3555012097183826,0.3047073202018107 +0.17441491417109073,0.49028976663241397 +0.47005610642643947,0.9180664929370614 +0.7928468335394904,0.6462237889845164 +0.5706734009165703,0.2027435064191585 +0.6305540331704876,0.9959725546458763 +0.9537288019281478,0.5278880258863486 +0.15790564906458837,0.17899117421925181 +0.5573533185222013,0.5973699466404149 +0.4808533280849463,0.5929193855372193 +0.024992256218917208,0.04509973119320476 +0.24018204006946287,0.3292765794451905 +0.7136368778216703,0.6151140506949406 +0.5098327123205844,0.12344868431165873 +0.3697160238946373,0.06063660786691932 +0.235870925932115,0.5666577123765818 +0.9776212440418939,0.9576805136825304 +0.9315447496514737,0.13822583460555554 +0.3601621935520637,0.00950943783172542 +0.44615437368323696,0.7672904471196842 +0.6103005736761742,0.2708544949787941 +0.8395072075128791,0.41773231569929936 +0.9827778856842605,0.8159350761782467 +0.28077098380779697,0.31011443074330003 +0.42442899834593806,0.18772548901031105 +0.1521741296424396,0.2656795847910248 +0.8059402760370742,0.7476893953223211 +0.27518943559933784,0.5398843584529486 +0.622759007018605,0.0654393166498094 +0.5729236060420565,0.8354385659240514 +0.5001489226772543,0.8139995292261883 +0.6453060544829327,0.3752283041531786 +0.5404021854274508,0.5161384024589776 +0.11819035072259748,0.6075615006099435 +0.5388794140354841,0.6480200494707058 +0.1431907833630232,0.40702110988706963 +0.04292587565276462,0.13499152770564504 +0.10459614699206715,0.7339144740212522 +0.6713091868969676,0.7508644197888923 +0.5282394824393157,0.7290137766958983 +0.5725621369644996,0.5374508491073858 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.51_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.51_size_100.csv new file mode 100644 index 0000000000..da05d47155 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.51_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.49420816315899396,0.3938808274805293 +0.1566734046117278,0.1985932025343355 +0.2478292612706121,0.36548115903639034 +0.35166774056492955,0.486298159201316 +0.03380691068991182,0.48779213614276534 +0.8518568316488462,0.6080027741371798 +0.3487462303977339,0.1710959592944009 +0.7036321481612775,0.6652662526383866 +0.10588039276938277,0.4384857462192378 +0.6603467126592856,0.7480476514345239 +0.4020952076430929,0.10709587495447803 +0.1612332500901229,0.868959674450055 +0.27446523440676995,0.6199359125140023 +0.41514471415603926,0.2955785911629678 +0.58861874146341,0.4900126449685139 +0.2754515561689172,0.40293774051836617 +0.9116557939559458,0.9707122454860477 +0.4722820104308122,0.4944834581811083 +0.38876469318698803,0.3331893269609153 +0.7847290040875925,0.9798180911270833 +0.749898980838008,0.5384957601157336 +0.35774351645242575,0.7848430992928461 +0.36373901288927935,0.20727298505896702 +0.009294274541054803,0.15521194030543034 +0.0951730812204572,0.9526930422341378 +0.1641323627959359,0.8298646058543298 +0.9323119144318902,0.19230530488095665 +0.6628545023344884,0.28359099142194666 +0.22607043862667175,0.5948849975398447 +0.8811955480447113,0.7155402441601602 +0.6847556848928701,0.45667565598794874 +0.4650466039083734,0.7037476383618603 +0.6590384491109327,0.509636594378259 +0.6890241371803282,0.8312602760708796 +0.9975288449621639,0.9722733763817397 +0.7026693493924052,0.5421273453958291 +0.1620014226085591,0.06319633527440022 +0.31469145008318966,0.1192748490432392 +0.09295721411004881,0.5922995143268746 +0.7259727184925231,0.4812901974557373 +0.21180512928278172,0.7187896162275927 +0.2188002413215112,0.6823717895490133 +0.9297551355185809,0.7387649946221522 +0.8925777810921214,0.7864021372397438 +0.0258249623012633,0.512075237455132 +0.3625220955520392,0.3599336343526738 +0.904511087948989,0.6177850779486572 +0.6551127236033348,0.48560464647979956 +0.06948945737062506,0.07512802977964406 +0.8650660817053979,0.4364323043745584 +0.5615097172702793,0.9061430387613909 +0.9825903870016871,0.7742154195292796 +0.3823111489745612,0.39948814456090465 +0.763782705909259,0.507910420838767 +0.8628533882738647,0.6677385350364324 +0.5321910995110353,0.5725385472144359 +0.3733588067570689,0.051286805156561144 +0.9338737239463244,0.9014490196783096 +0.16431442249819472,0.3963949917261683 +0.14888714270818826,0.1842883841106372 +0.29798264398696794,0.18461018118100797 +0.5210055233826728,0.7536393594829389 +0.2151424002375995,0.3932205838683566 +0.5597504559407257,0.4442244805455801 +0.10783841820739448,0.21972538141197745 +0.2812787881382336,0.08284422013609566 +0.37711731712458485,0.9158695195930783 +0.29880115140573493,0.717778602537484 +0.988569447260144,0.98606443460809 +0.8243316849257014,0.7332248091550027 +0.5061234906898101,0.6596129137727473 +0.9898608206221444,0.9533771941797344 +0.8727189605670536,0.35785647630587686 +0.16466265618352743,0.341020190441301 +0.2939712281380906,0.025857352856123783 +0.4818689132590701,0.16717630884644286 +0.8531177415347482,0.6276724906787322 +0.1522399006904887,0.6471735037393193 +0.5997428841778952,0.7425304694519685 +0.9770551011965187,0.7247562548534112 +0.3981013353598901,0.5895939192404485 +0.2659922645950945,0.7358476638154041 +0.21834834479708587,0.4283502763307492 +0.5945106548368074,0.5461456539286746 +0.8009241681141447,0.6751241833954282 +0.0891479684992062,0.20973080983596282 +0.13734410924344181,0.082457420147581 +0.9310698568140591,0.7476737020528518 +0.4521292780417686,0.3978671170682229 +0.20788229849634093,0.7186330373216442 +0.7695038037592878,0.9790078911842377 +0.8406777937273264,0.7972315336261662 +0.7768834828495255,0.379606962534151 +0.9223856231046462,0.7601106956904746 +0.5057960026411714,0.6448954774527585 +0.9579027743096378,0.8950050406720327 +0.7658652565855488,0.9784712714155228 +0.6481736541450154,0.8193042462697833 +0.0974770848725594,0.33083646881679485 +0.4572170927500073,0.6336497087745387 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.52_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.52_size_100.csv new file mode 100644 index 0000000000..40c3cb76e8 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.52_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5022371237566559,0.7934004593756534 +0.5101749860813589,0.7865398432546387 +0.3697820083304576,0.04931677128094836 +0.9281900542514439,0.9646353815037318 +0.23413606681652177,0.9830927871881829 +0.5056330188386332,0.2198598116383571 +0.3498862103046301,0.6017768786099122 +0.793192929501199,0.5710190475622259 +0.7470475997301302,0.6575832462263346 +0.7423071952388166,0.4037520524984219 +0.2683235717714261,0.17358812623255432 +0.9269797781107021,0.7840836293284668 +0.9687933417869501,0.1535194214193888 +0.885870258447016,0.6708728299210991 +0.1293005821462473,0.750119988484832 +0.9880619478288882,0.9694161252506655 +0.7248476624771607,0.36989410710409965 +0.9184041858988886,0.6480676489529343 +0.501653192957084,0.9143852034047051 +0.8339108890478409,0.9124838583097179 +0.09945100944689605,0.45750125876371844 +0.6611849462593452,0.2079853039046491 +0.19930668545357466,0.49226882908035324 +0.4810940044522726,0.16232846873031115 +0.5815249506617943,0.47302400185013976 +0.6832498802719447,0.4805930955074503 +0.32448622865590937,0.6347120421537915 +0.8039344490228615,0.5472671859321716 +0.03963065155359846,0.03083338475255787 +0.29005720925352085,0.3597943641703989 +0.7192653774597915,0.6927852071850523 +0.2977650381205023,0.48077391951097653 +0.519523983762374,0.3468551635770922 +0.30231608324047266,0.09370908132242589 +0.32345809979362905,0.4224838805089232 +0.23468209267860102,0.25607330438124376 +0.3632276242723824,0.39271314834400395 +0.807796023763756,0.9837489870246943 +0.9746134923112,0.6543868532698285 +0.22953362650025277,0.4412361969398003 +0.7001504728235753,0.767530907518616 +0.45124882314871695,0.11079737149774477 +0.6423332895457193,0.27531290553929383 +0.5501033052664123,0.45497889760997445 +0.540667836571716,0.9045736626563967 +0.7092264858474169,0.2887363494292292 +0.08300437303318875,0.49616572737834513 +0.6471398881589654,0.9132095144779765 +0.1393325835035425,0.3427657621216116 +0.7105368283579669,0.9104345650317465 +0.9257858472880739,0.7403339120741574 +0.3675737165254811,0.6281197769647456 +0.7729316483835397,0.3335926479520809 +0.04771220547930688,0.0807166857136884 +0.9152525787320631,0.7574276548400951 +0.35580804415557665,0.9817100993780343 +0.13151217365756607,0.13581803562358136 +0.17242024304288417,0.34266231549982085 +0.06876250148238594,0.4333522110700268 +0.18624553301126068,0.3208996304201191 +0.1825699606456439,0.6824042587227074 +0.23693286902010524,0.17395253032308988 +0.28619285993939236,0.6243875196317696 +0.11651313625820986,0.9564384834531543 +0.373060132041383,0.6474615804899603 +0.7845745397102475,0.7951955219062707 +0.25078154919772744,0.9099078070419993 +0.604219656824577,0.21674091216727065 +0.7634382583399099,0.4600479955876127 +0.17496657235748114,0.5179983595448355 +0.8379229132944201,0.7911097611397035 +0.09132581413195645,0.8234806293286653 +0.9274646684305019,0.7904370103497071 +0.303784710302482,0.20891897322043695 +0.1837714803791679,0.11780824984892296 +0.509409877089892,0.5154787002181412 +0.03906217548898028,0.5853592212518048 +0.02129375830643576,0.608083701576274 +0.8657137918454167,0.10754753206793927 +0.2984922149799235,0.4288055032584551 +0.7206731467969691,0.4442415476052761 +0.2453951974175016,0.6524592983831345 +0.17364529931255396,0.42007638188943586 +0.7235958584922486,0.9500942844326089 +0.9304529571709323,0.9859045805436539 +0.739177267539761,0.3474484601991963 +0.3100774478698388,0.4854476070389107 +0.8664500154447283,0.33148472079518365 +0.7577982351390933,0.9887147206487227 +0.640314062668165,0.6181856632528289 +0.13915306516706527,0.3866478252486594 +0.5407989843548989,0.6461899778143665 +0.24311184899254362,0.15406076054921236 +0.13696273768766853,0.013635389300494405 +0.35662962176835045,0.020755793075120155 +0.055845311658413666,0.1821723371973316 +0.3800730924889082,0.524416746803276 +0.5340622635695434,0.007223462415547055 +0.32259970012917905,0.8135968116294389 +0.43127286794847786,0.09607478514747275 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.53_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.53_size_100.csv new file mode 100644 index 0000000000..0689d62101 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.53_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5124223212987072,0.9274889602728287 +0.28861850385780957,0.29540687948154076 +0.44231155750463347,0.5854035545953362 +0.4043711571221742,0.5441190835594267 +0.054475227982399566,0.09933640878124217 +0.23005062052353709,0.05995047769866241 +0.9089377391930616,0.6984350144028872 +0.5850166937261033,0.14490301459351934 +0.8666243314314217,0.32516608287185794 +0.9932696936517397,0.6220941433134696 +0.7238718538315727,0.657453766378904 +0.948030220300314,0.6585228774706273 +0.7795992633712554,0.24523050284272224 +0.09524203868709791,0.07996003957400338 +0.3151692343775775,0.11752003626990765 +0.3603493697711364,0.12520782920075424 +0.3287891822465575,0.1373818023398478 +0.4826535715144765,0.6806521704722563 +0.9448884741593583,0.8362378650093958 +0.5628408461627825,0.8777214677325393 +0.5938977324365521,0.624990816227449 +0.5466288859811224,0.31491504796362857 +0.9127935898331032,0.252215405753098 +0.9356966836410581,0.7729047382050931 +0.4647353847711623,0.2973544525768781 +0.8738377940211175,0.8342195739623224 +0.6244394401754453,0.7640914834823469 +0.42716178624931245,0.23480663194516355 +0.9323985551739857,0.7949321883991387 +0.6086119246564646,0.25730466846011757 +0.7338338953824054,0.7230136955668464 +0.26833599172516454,0.3816405461948995 +0.4735693727769156,0.3845112641750957 +0.15905192268938845,0.14118343353009694 +0.392896077778349,0.19230702499944508 +0.29746613790273563,0.06988904734992674 +0.22493460368314244,0.04750824645199292 +0.32155345148786096,0.07223656059266736 +0.842123462831132,0.7689698302959502 +0.570463116455219,0.9307866990243928 +0.9317230881742298,0.9901805242237182 +0.3332725699312368,0.9008708171062713 +0.309004056137142,0.1772873845404086 +0.3841420544461087,0.680768897975482 +0.8848198478548854,0.9721096356043626 +0.5241257660160327,0.319082409773186 +0.5137755756774103,0.6590216095192339 +0.5948233853661876,0.374852335820592 +0.5517373706006344,0.6697790522962602 +0.6334416161977194,0.2743094594832361 +0.22988154502243618,0.49040451377433647 +0.3240186492686138,0.07721155461816442 +0.10077322734425537,0.020721820279150205 +0.11337799912083446,0.35688577884532213 +0.3399957397237401,0.6233680601181412 +0.46640841167703473,0.7775718256583521 +0.7252565870754201,0.285993250929798 +0.3657901107677404,0.25939584133938365 +0.6380984160838193,0.09757344142879848 +0.0822051691096049,0.011439986352238918 +0.40234715799689924,0.2904498586102731 +0.3140685334530654,0.7905207280453022 +0.995880390604625,0.9942861374796881 +0.5803021474678304,0.3347163637020618 +0.19161764301241735,0.2394521937165176 +0.6977586967333574,0.03775723614655013 +0.7419945862038259,0.4845156154866788 +0.9144611728945058,0.8940924050358801 +0.32394371129844457,0.39677501207852317 +0.22968708347639244,0.015912926968274843 +0.731924211123637,0.46286441598348005 +0.7483110204304456,0.9700159333243374 +0.627714328249772,0.22621023199547552 +0.1949624326380776,0.73995454518836 +0.8070235724917839,0.9753074406429011 +0.8371404257187445,0.821446726515089 +0.48777086189097274,0.27853637131896125 +0.6606770360160551,0.4104099542388054 +0.2788122716329592,0.7731543264702101 +0.4698507069738823,0.14856741963527098 +0.9700697254208348,0.9969718698776844 +0.42927215079103287,0.47401068295560167 +0.037520475351233484,0.04091276829729745 +0.9498795198056785,0.70273829264644 +0.9729727588419469,0.9936026866074281 +0.02791462182331128,0.3159552719665466 +0.6577330412942181,0.9492563435871064 +0.2112283747329789,0.72359586385161 +0.8838443190724512,0.8280305429271977 +0.9250992479119106,0.3370936243046694 +0.17774139395405275,0.2564328266607755 +0.30059590578832523,0.2951276629898585 +0.9162900009702231,0.9795610810961861 +0.3901570847873792,0.5438497631418043 +0.18318292547358955,0.11642608859931641 +0.25368689786725296,0.17463773983310515 +0.1476248349698276,0.06294683747716173 +0.3337326958198552,0.6060187492487354 +0.2557308116999511,0.2203245040894274 +0.26226416561388777,0.14251784960262864 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.54_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.54_size_100.csv new file mode 100644 index 0000000000..6da85cd5a6 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.54_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.39568375837412273,0.4638822740373748 +0.23849945659592037,0.4027983677889617 +0.038408488790177664,0.11093787436612024 +0.40162881644388093,0.04084685057905013 +0.40471767099775346,0.4070903759201121 +0.5100868099180077,0.646091629581904 +0.3580097949139671,0.17617168937006916 +0.25861583218078277,0.2902924636373745 +0.9477542014589201,0.7950738566876698 +0.5546319682396796,0.630440628330379 +0.08493497139089645,0.11564029441973755 +0.8250668229581991,0.3423116676042841 +0.5504468389814635,0.39006169212637026 +0.9219498292280861,0.8164967426813208 +0.07717926041722567,0.416346776690445 +0.982987979816993,0.9976640903594487 +0.14249231992177563,0.1609159819165371 +0.7915208744822446,0.6530187222868271 +0.6960042375063449,0.8910069785228001 +0.12038684449418702,0.5773981399570535 +0.8196035141462956,0.5668458959600263 +0.06924368444370987,0.16900285008217747 +0.9102300206015912,0.8712051628455575 +0.7209938994980688,0.8137037527606288 +0.000135457124216809,0.002787980780148802 +0.3047669760081737,0.9346869782059302 +0.0072031800529350765,0.03368653829135976 +0.8863855471485622,0.6195540340472471 +0.3309691168616651,0.17353528601494167 +0.09770612864015649,0.20635499020360132 +0.08823431936829185,0.007751265109159966 +0.5403599717294684,0.7466515186349958 +0.3784639792688451,0.12687236713636718 +0.6316379037354742,0.2162141849828707 +0.698716321069855,0.49772855124997223 +0.31309508743427017,0.051343105978847614 +0.48923370848068304,0.8800051204954331 +0.010115882660695186,0.02020203739315035 +0.257115942911431,0.15996091874361928 +0.8200503877602283,0.6352782753086882 +0.9434163881735772,0.8555001904347305 +0.2324825179717236,0.055952391493523324 +0.04909270797997145,0.0352409929939953 +0.324161723834262,0.05325913934193455 +0.15990769630276308,0.4580834842482877 +0.2783426535968099,0.19477615247787988 +0.29259035005420775,0.45428622650434675 +0.12871223879455812,0.6381503559097985 +0.2809810061800534,0.09676975768183871 +0.06757819925864905,0.02959978273369207 +0.9265424325251422,0.8468906369001068 +0.7687830600560265,0.5144176710573621 +0.33045158606730585,0.08764846541233828 +0.7447298205108371,0.4783585627547307 +0.9898154146464528,0.4754180981241799 +0.5272567942864755,0.10670393395744049 +0.21950826549319358,0.4170206049357842 +0.11870457540683799,0.7294992860087274 +0.9240891907442328,0.9915157931716642 +0.9766503177319468,0.7944632804266799 +0.3466471910533496,0.11683250043070625 +0.3290154908819175,0.22368655339411186 +0.17857569056928074,0.5488565091692522 +0.7567528146408291,0.671942578114561 +0.9183218116907688,0.9660568879424556 +0.2652168388529289,0.8357633083861338 +0.6181752241082037,0.9102398661490863 +0.966651062528088,0.9769143895076772 +0.4621774524143717,0.22459091557305905 +0.7775892632333354,0.8928947563898066 +0.15299465300133797,0.8901915492481213 +0.899930387943537,0.9592016893158528 +0.21360576772683493,0.4622994983257812 +0.534176541559765,0.012983944845137985 +0.06319632754609117,0.09379604508258876 +0.15261968101357515,0.19194227191480906 +0.9802576276084962,0.8659152598935145 +0.6755911550171975,0.9005985503946233 +0.3381401264119852,0.29316034882131004 +0.4413264345945409,0.5993155126214755 +0.04975616960911977,0.46885530829933175 +0.41751500849262524,0.8563451918862937 +0.9031982125006123,0.6643490897882985 +0.7866706948972351,0.7122088979194058 +0.5858067123082965,0.7035765447795786 +0.047737005556651835,0.34080003801105885 +0.3228887629260013,0.11732958227271983 +0.0006444918818586665,0.029360674504080475 +0.232314501153143,0.5390192108396534 +0.7950743211025888,0.5253269839860394 +0.15700635930783463,0.06587539533951114 +0.5082791565663858,0.4122165835736185 +0.11132258147766044,0.8898814933162682 +0.1290542410602803,0.13768178658151964 +0.9445997327250858,0.6516936926478462 +0.9232707796642221,0.24081195490661905 +0.9348779030078793,0.7990354423102406 +0.5428934425812318,0.6268774827727401 +0.6030647746817409,0.6418615382190402 +0.7039392560753528,0.6167827595994553 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.55_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.55_size_100.csv new file mode 100644 index 0000000000..e7aaa6197c --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.55_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7377093311271571,0.6536590831111391 +0.06207994441787079,0.16611314817881068 +0.45183377900075594,0.48508229613685844 +0.04489963722548429,0.2154934988108793 +0.6051558061289672,0.9712056634406134 +0.6188823271740026,0.5304709456101666 +0.7417393295324918,0.6122855860684738 +0.14798026079745497,0.4230808558186875 +0.731987651675879,0.679893394846496 +0.7014678832365978,0.8960644294034245 +0.2781186972740646,0.3132348579870326 +0.028979425174035733,0.627211907863872 +0.5420280510743394,0.9087352637089339 +0.35370727907303096,0.43571968843136744 +0.06457043492299908,0.03004237912489821 +0.7417551830169608,0.024772536549792057 +0.35577573541862795,0.15684336375773927 +0.6353382848951609,0.22523230855680454 +0.9155970558440201,0.329457769568312 +0.5138292126414812,0.6438501271008918 +0.6274490900363981,0.4981577186337947 +0.15000844077605585,0.4040262202975615 +0.7080387403303963,0.6436061468560424 +0.8084730512002791,0.5739886333518658 +0.17131775011091754,0.4287485482234905 +0.526061674830703,0.718448701986412 +0.7126747371949124,0.3586718610885103 +0.8372141203709232,0.9042747238061046 +0.8029212257176239,0.6106652856646468 +0.14767061482059662,0.025952909454237227 +0.384583521826449,0.5411815918893598 +0.9601184565097373,0.5995574553267209 +0.8803854237627511,0.6815785276502387 +0.918457875324257,0.37275449484548095 +0.5757013267223299,0.7881328851174192 +0.7116834600580669,0.3370285124343545 +0.4284198006108324,0.8189936138023093 +0.5870972634561675,0.44549342545897497 +0.6421339437327079,0.8994562482143449 +0.6087607447389101,0.050085219822448734 +0.15384567678688044,0.8059486938873127 +0.27611635499865067,0.6349938120955727 +0.11917794697125111,0.7360371822709104 +0.33677381222015546,0.8595237771744466 +0.8760685463484158,0.5490360087034019 +0.28442130532111787,0.7506153444960102 +0.6342419643310009,0.9593909437439797 +0.9239305729015584,0.9683794682900222 +0.19541429994341508,0.5951828788369904 +0.5160520920230512,0.1357074168448818 +0.6865071080029386,0.41183527537483755 +0.1824171869121327,0.12565493174460912 +0.15312104095661683,0.8122238552342518 +0.8025291584695204,0.6411842624263623 +0.27367891328414284,0.26853518978719726 +0.4327660336728367,0.2867359286663427 +0.2606460071608918,0.05519463547321152 +0.17395070542523927,0.18694163157894766 +0.17198432060127905,0.031932020981839226 +0.13874843449385205,0.2080787880602305 +0.5997885498554241,0.2663535939474018 +0.7850767973030657,0.8771102439469378 +0.7097396001708631,0.8729351639218587 +0.22025521103686857,0.4284384441528284 +0.811315080781801,0.8266030584630628 +0.7475513284962815,0.9313878712003254 +0.690927893329334,0.41641677886487105 +0.4754042599655326,0.7061679817000043 +0.8686521718992062,0.873484834562881 +0.7057232699854126,0.3455568948011991 +0.29809788398818726,0.2850565493232381 +0.06310527397335974,0.2583294002408985 +0.944117655231265,0.6401964261427884 +0.06662179438597604,0.4777405248753266 +0.8197804963792921,0.7392407991098204 +0.22066701601118488,0.04203498307657538 +0.42377848345223235,0.853676917441599 +0.4908787057583591,0.30288779775271835 +0.5079684338688691,0.5746083003519252 +0.5294563105815985,0.5241121747284597 +0.46692413316403036,0.917215021238186 +0.0027537837327824555,0.06456878624881568 +0.8025464580569412,0.2800177126740141 +0.7912502467385343,0.9000896240055453 +0.2778476464556521,0.31643334469145884 +0.4655089722154804,0.23662914184471534 +0.774668205053592,0.22511145534283794 +0.7155165257032992,0.8544820427506523 +0.2490422210676675,0.45573670762231794 +0.7721347408162544,0.17005268331034507 +0.6376622062626884,0.19912277253378707 +0.10190059914299177,0.021289404372426046 +0.035685328809715866,0.7797707632425199 +0.6252546578044623,0.7857478806481528 +0.07994206679323484,0.2815198023513654 +0.879077741804587,0.40441699256256464 +0.4204155674391489,0.9167189730351792 +0.11528106298110058,0.4766983680160718 +0.0694941857907897,0.17079313286151054 +0.19825320222636095,0.603557762535941 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.56_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.56_size_100.csv new file mode 100644 index 0000000000..944378825a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.56_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.42490438057626034,0.2142833375646082 +0.7650281200121304,0.9335275681435673 +0.7035828976696081,0.7246102908395988 +0.19309787974140796,0.5804511231197232 +0.0008598504080220559,0.11013523407679943 +0.6711230333422386,0.2972917703534213 +0.4554903629244599,0.439917299345671 +0.7347257017102627,0.24972978233662946 +0.4777173100995422,0.9852590563358171 +0.3373889572790195,0.5276657300837063 +0.6492369759992225,0.46919783322049935 +0.4082613992195777,0.15519065395103254 +0.17144484912772529,0.2927744860038929 +0.5668192957547346,0.5944881479626396 +0.739949432067241,0.3984228663038659 +0.5491205232941047,0.2962767981300082 +0.7108750345869667,0.9288135611070313 +0.8321541468268512,0.5682508011755113 +0.6161551480609149,0.5768748290909824 +0.04456928531536919,0.03440766246136928 +0.9702171887482856,0.7066553615480852 +0.3918241605741082,0.09776111348200678 +0.5202380322085005,0.5985617920424129 +0.9075690581892726,0.9461205262982103 +0.299958885812997,0.20910596238056833 +0.9611107579488744,0.9585684764817727 +0.766349484174649,0.45025849738862883 +0.2745652398569647,0.2704355346775452 +0.4071292374162254,0.10432340426415881 +0.09219731655005936,0.11358445415749602 +0.73862125008925,0.1251303744832154 +0.6292262031920592,0.5135984554869233 +0.6431381654007937,0.20959511548317766 +0.4211952857707971,0.4257777396295459 +0.6221994455396236,0.3702457573980058 +0.25286174554673857,0.40552317731825444 +0.17250736508122277,0.6246240615421204 +0.9137507018854227,0.37497893783937974 +0.5256176171860936,0.5110968293752198 +0.19188495657928,0.5758385491096867 +0.6954338896309779,0.5882863932266312 +0.832433287253922,0.9804233354041582 +0.7660507311089935,0.4115487563530429 +0.5171133122578201,0.04376653640613076 +0.7991979057453944,0.5447271360338212 +0.7269317776709947,0.03304460495186318 +0.8110680879296929,0.8650996655530596 +0.45106624674126894,0.2101823952440735 +0.7450051750846892,0.6831339563434028 +0.6450386691454832,0.2384276829861458 +0.44576229353466956,0.14489160574538706 +0.03682862565567313,0.30534140231404294 +0.6550070253476781,0.8379968118568084 +0.35034741903591105,0.3036307136666503 +0.5939033395957192,0.5279101617539079 +0.21952313300651755,0.36681647671208256 +0.9293477937582653,0.3925130617208079 +0.03789859160296377,0.27415360436763714 +0.6057683019384407,0.7774338151468748 +0.7777769435123765,0.949057789942007 +0.6055535891528138,0.6277008351496582 +0.346166025706799,0.5470102568630605 +0.9036261340771523,0.22599463761988048 +0.150092023264499,0.056445569629927694 +0.12713849347041406,0.4020939647813578 +0.875993016163497,0.31511146494292325 +0.48146472675440655,0.22181957342513103 +0.9166095110841805,0.9102065143975147 +0.8104435599369431,0.2192147268469805 +0.4347280708486717,0.5665914692851036 +0.4863817112271074,0.7270492551454576 +0.20370932082737736,0.7696701184356671 +0.22701263664200494,0.5281453969839216 +0.7966736147086942,0.934021111947982 +0.1788323957145836,0.37083407166416266 +0.9280104027099148,0.778961967150464 +0.015129658140803581,0.04246106527379623 +0.6895983545382323,0.6034961682799848 +0.6085651622514218,0.6942414105118369 +0.13582562805295756,0.42870232467316294 +0.9760365702990649,0.9442906871172527 +0.8753382028940453,0.1983856189952385 +0.008157302831169777,0.0538039959162574 +0.1765397741707247,0.39201764041307835 +0.26111467445965886,0.5976226624074167 +0.9150025734368552,0.5083966675295947 +0.5388681639064098,0.3754457476368561 +0.7119607260319584,0.5625421074424923 +0.4903599307486165,0.5731635499899767 +0.36743294421723904,0.7625049535693187 +0.977003090899179,0.7118619720151282 +0.11062632334038514,0.01024023581083855 +0.7009350849114602,0.26785933529771166 +0.9548681657034312,0.9835232246158905 +0.8591261039615183,0.636331477275834 +0.9913294521793823,0.48345878456493235 +0.9646074628305015,0.8584286460217799 +0.8622403315194453,0.24695166682524516 +0.24161149645552615,0.15386227265581498 +0.7555086382895277,0.8776954010650365 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.57_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.57_size_100.csv new file mode 100644 index 0000000000..95d86866ca --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.57_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.160699316224663,0.45734636107578214 +0.3357673643244182,0.683992401663748 +0.7631314119112393,0.687259111876595 +0.1333589437552421,0.16433988607037886 +0.3788193779149138,0.2977085859869107 +0.651983822669653,0.6540322078961324 +0.13966247875089932,0.07123489094238106 +0.803123949070427,0.8895590107899292 +0.69441132292134,0.3045777220678817 +0.7018995552621479,0.676660046226781 +0.7874784718713446,0.4360326733818777 +0.4982520155455419,0.7587654994595865 +0.17111501530297857,0.2600581376154012 +0.9914298591845934,0.9547599702938158 +0.03433918138113845,0.2289071901403385 +0.9480432184266733,0.6372860605092088 +0.010983378361622997,0.12863457328568673 +0.029224113979532507,0.02505101228838985 +0.9566558083097206,0.9897284691097209 +0.5862733842056185,0.168432494493039 +0.4332982880843641,0.9194489169651634 +0.7576498178809412,0.9214038792427729 +0.9242612192715851,0.7392251321983695 +0.1174478494891198,0.4032676913186933 +0.9562551923062802,0.9920980274459206 +0.5606660679667992,0.5978010082721071 +0.24642975911836035,0.15147972023165351 +0.413406262870341,0.45291151567273824 +0.5445589133995948,0.47257980908461295 +0.2978904927801219,0.8455878126754328 +0.6004270408039962,0.4624054785548026 +0.784972919551596,0.5060070927747531 +0.015599615339144668,0.03700989278922129 +0.8255385533937927,0.9473759089678682 +0.9265566358805319,0.772352783976427 +0.42291244883263346,0.9623953330163068 +0.1103153840846342,0.6307836581725641 +0.5096309555262007,0.8637479705311681 +0.9267415610390952,0.8008739195404762 +0.9763332803764853,0.7841978002547124 +0.09062785826197023,0.22185576450646094 +0.7011911354278347,0.698165703784773 +0.648567572570594,0.7462997116075396 +0.021827644192244477,0.0009629762112785545 +0.30262531552553407,0.14044375110588264 +0.9569505534677306,0.8346194260656739 +0.2149120765842492,0.04047090441146933 +0.8818031649592146,0.9312712027217863 +0.12949532336712688,0.05725895697452332 +0.4306438817095395,0.23526879163273612 +0.28021729605303247,0.3624245042946571 +0.27335790076482747,0.8341474389611121 +0.36216556794840316,0.6308241842981811 +0.8709201001153525,0.8064566908155637 +0.2573575556137682,0.40764595931165654 +0.0848634459128964,0.5248564011766951 +0.7096842343373557,0.09914495299078768 +0.46088364588933495,0.7971159128689187 +0.6503120985156892,0.586833753845915 +0.7065382745558234,0.20810176542869885 +0.3975116086737407,0.266356521560403 +0.4481288089634393,0.01634889706001319 +0.2650205577449195,0.09230622170783642 +0.09763130436518985,0.6913929656500521 +0.6199137050274272,0.36172256044099904 +0.3291291743158711,0.515119256701714 +0.6134636968878558,0.3668382536879053 +0.050932839629546645,0.013041716954841631 +0.22092792493898872,0.08140069781978271 +0.7447653026638056,0.5995242949328672 +0.6394049470670119,0.19534125873825142 +0.6760355138483156,0.13170816234686783 +0.27993609232159933,0.42099497783185225 +0.13050378110123373,0.42950290396686736 +0.4316999978758851,0.1490539616285791 +0.16593696154254717,0.4825619253906004 +0.10998244877347729,0.5209379522425241 +0.31599456609008725,0.5214250307308244 +0.26850296325199857,0.16976241581153423 +0.7202866691127849,0.38253531562300086 +0.1948858386018505,0.131645638345061 +0.36128129672115616,0.3206218312011704 +0.1903421046518382,0.1470136801790995 +0.5392547836586987,0.4496826379823243 +0.5738266513333263,0.1044092092086667 +0.14435299567558052,0.2530848370925836 +0.10757725451675365,0.3020864948128852 +0.25603745899556596,0.01915724212237896 +0.2628451986851267,0.04035253763969249 +0.03973925296374958,0.1931270496573646 +0.0633118024721726,0.2667141671822366 +0.40571420678340997,0.469493186575372 +0.019243904584135274,0.2705141248105679 +0.8946307230775423,0.6853473143268364 +0.10576949963392751,0.10002580655963234 +0.2537990661527506,0.07569904964333635 +0.24381223454865486,0.31398648249139516 +0.325682636827617,0.50524329099924 +0.4525339785945375,0.8438960113780303 +0.33347376784682115,0.3328074415268677 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.58_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.58_size_100.csv new file mode 100644 index 0000000000..254620e954 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.58_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6419354612533713,0.7747289044649144 +0.18543332604863472,0.2954441924884041 +0.05106367918613908,0.6366481049492259 +0.07161337136906909,0.06968978417817312 +0.45436865091878376,0.4363605035701962 +0.3240553132717302,0.4657952101011564 +0.16231381191277966,0.7036783296989502 +0.05085972183759124,0.48371060034159225 +0.14565251697156717,0.492795823507281 +0.5184947197655041,0.5984736994399962 +0.3738170757090088,0.7280361118550626 +0.9889618510040894,0.9296082945884088 +0.8955546634098592,0.2517035568091874 +0.9273593737065406,0.7333029057796263 +0.17079363889821353,0.32455980680493923 +0.6570556720145757,0.4543384617963982 +0.6657305866156679,0.29216261607597566 +0.7697241353671291,0.4748212374235124 +0.8947970211360625,0.6146034775796909 +0.076264230502877,0.013848658756319299 +0.06674133099418567,0.47675098027118495 +0.6620478754028924,0.9184466447591895 +0.9459402555921008,0.968757784895317 +0.3748604552804842,0.7043376046934975 +0.7731591135266882,0.6456447370797301 +0.6640811585191432,0.6621967542785869 +0.817214046897244,0.4098484394388692 +0.030251713461285856,0.2755358359740311 +0.8604351917756989,0.4751002303878851 +0.9765340769619473,0.26471162047495866 +0.7060049385506663,0.39472437381337466 +0.5865480769065446,0.35326277762142333 +0.45532748116265453,0.1577510958817827 +0.28509710687811024,0.7677794548458274 +0.5143522058057065,0.6775254895212135 +0.9842932393331485,0.9146507775038772 +0.13403307687518934,0.0842965483813673 +0.6601199499822485,0.3047942050476019 +0.020722669133231286,0.07602948502486367 +0.07399983449116065,0.3786720005703079 +0.3947570860327341,0.2685402365136476 +0.5206712440241555,0.7309574665109063 +0.6635770640637534,0.6866704192841399 +0.6337135797033907,0.7086112910882134 +0.6865228394399445,0.630120691073653 +0.9137106792743418,0.8707094706621405 +0.4135762262301941,0.2774645010900336 +0.25440045741764755,0.4555828530729817 +0.7777438013565656,0.6080840847071464 +0.4717320012197208,0.4919089980319667 +0.5728876889611585,0.2180190465690348 +0.060493864185384494,0.5482003813709486 +0.7578344892897196,0.41142726644287514 +0.051010778854691075,0.2217412131230081 +0.04656523200308205,0.01648432531011329 +0.9589934146531611,0.9905931454638668 +0.11942413558682285,0.8143306345605696 +0.2716900495533787,0.4828876591129043 +0.9804703412690032,0.579748681811287 +0.20319217121271477,0.5390988714646123 +0.10803022688471703,0.008509543470684944 +0.3286069505765178,0.6259547338430494 +0.39642733978040046,0.5593611419040371 +0.14345056445884624,0.8314279678865332 +0.2817754124430334,0.018658982304811556 +0.0946556388069017,0.03574837848412732 +0.0427499211162381,0.05384241380237914 +0.05056980966560065,0.008212415168201814 +0.8341437923438975,0.8940999454147367 +0.015527296280569702,0.11104101216738421 +0.09501733325171613,0.2173287907654914 +0.25276823150427974,0.06226915344710837 +0.023902814056685262,0.06015668414222414 +0.11630010297568633,0.44309634546510035 +0.7779883264622014,0.9429739608147061 +0.08183893650534774,0.6925654297116093 +0.23610306919686308,0.1943974088647159 +0.9942677214742581,0.7140958958298196 +0.24896452134600988,0.34426191413989504 +0.6359776364326706,0.221446327446586 +0.5238270061321333,0.20574170454698842 +0.9971362644483269,0.8718895446690813 +0.3966119107158763,0.440697879423159 +0.4124222463044577,0.21341773024506 +0.7207287951340935,0.5877501998700929 +0.37189468861543284,0.9673108130280152 +0.5724189095763328,0.7262567864610174 +0.7637590289279491,0.4036704478064982 +0.10783726239206681,0.28166292152671973 +0.4543229807680754,0.6216028540030346 +0.050857586528633925,0.5541972303291942 +0.7570778242823053,0.9103609213198212 +0.27146636679683284,0.7130937783761951 +0.7189622843311607,0.9456472858195902 +0.5548274357987559,0.7477695583119665 +0.1058699394956602,0.42454294091898787 +0.8570348759527632,0.8286248425553369 +0.174918607374621,0.2264515820648494 +0.6507157514196733,0.8176806113705688 +0.24072299309499823,0.1273691981242207 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.59_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.59_size_100.csv new file mode 100644 index 0000000000..e40f345a7f --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.59_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9154779854938463,0.9636271345062349 +0.890276673472375,0.9811456630078805 +0.06761080331031499,0.01601428383613146 +0.3177078465589047,0.6593319484107882 +0.02380348323108672,0.7123279464539019 +0.728944738150013,0.7825052876780192 +0.6566175812085739,0.5559824477813545 +0.07722036333024007,0.3459427622502603 +0.8030824764224538,0.3463445228213522 +0.8383068028765778,0.8006934366514045 +0.4119080484671047,0.5757345158385355 +0.09579014871848734,0.22705717963094468 +0.5857417956347576,0.6064562228943767 +0.22506805489377407,0.46066915566800426 +0.7927156228202525,0.7893554591692209 +0.5330941933141207,0.17107934726239626 +0.6879252155107647,0.8966838723105857 +0.23182286420299486,0.23100041683824862 +0.7165921213358053,0.38740272178354307 +0.3343336008350992,0.2801197074521326 +0.49096166245718065,0.4837536956520743 +0.8149946929573105,0.8839611139053081 +0.07693861235656424,0.3670899234705264 +0.2483932747409876,0.5874467391146844 +0.658066529952638,0.4867925066436822 +0.5302368700972636,0.1554351445341473 +0.18518421150322112,0.8950238007163389 +0.7717839166514122,0.9065338228256212 +0.37072716426812113,0.7322561323066183 +0.049816662602559014,0.06580752864627737 +0.8454976618386703,0.9014797663564849 +0.7731222553130186,0.7524379242404823 +0.35157960988369363,0.5193107526938398 +0.5704194094287438,0.7197364944003621 +0.7957977565423748,0.5396857916339179 +0.7442202531589819,0.4507106995832617 +0.25576749664473275,0.60059291382157 +0.7771385374100174,0.5483991480199111 +0.2513035970405256,0.903713915376583 +0.2857035511825057,0.051516759130513234 +0.6866948942977891,0.565969430350219 +0.5614255170522483,0.7968141632814354 +0.17904827854610678,0.35297544373411494 +0.5890740125563847,0.7781471083873963 +0.5106393944566173,0.16596126877460998 +0.03783554153761681,0.16851198148233698 +0.9864303434087881,0.8527062823930014 +0.7703297706430243,0.9817500046330584 +0.3683176481757893,0.024657323684473598 +0.8935886721579784,0.6371801538987024 +0.6855103177269568,0.7911846315877289 +0.849811490314726,0.7674871165822115 +0.8772720884692236,0.9873800389665754 +0.7864368721999916,0.7381488076517312 +0.2550042188993634,0.032948089719688656 +0.84644886921606,0.7808679365260593 +0.20452595307436888,0.40890666628202144 +0.015129440348057521,0.0025728236098291335 +0.36909500942468765,0.7208868319205428 +0.7343403673887079,0.6193803030662304 +0.29755599866619253,0.10729546922017497 +0.7275071269347352,0.20910325939668178 +0.8949995020025856,0.6245806459498899 +0.6059898491981902,0.33519734932125567 +0.017333610675234645,0.204993959546228 +0.7475022008660754,0.5220889406067307 +0.3473863740252967,0.5891943109138549 +0.5889090678773754,0.41497410163336174 +0.5440405383284933,0.48945893526824286 +0.00035945941232884415,0.18393055891847754 +0.373964755876633,0.45658497530128705 +0.950547744216555,0.9781642707603352 +0.6421528402050424,0.6840011611165895 +0.10631926710416528,0.14338355591965607 +0.35143416098186653,0.30427557173344477 +0.173110062575699,0.07494026545861643 +0.8658802961546812,0.8764949621172224 +0.1005544019240765,0.35363409639457277 +0.47372664067638426,0.7030076515066044 +0.42438851134678357,0.2575152319082221 +0.2321303161923403,0.743008375081365 +0.6932970193321781,0.9108329678736828 +0.5955098719167616,0.8349889954709613 +0.6687409935231353,0.8589726023833775 +0.007552842285500239,0.134284178817196 +0.5990612569968449,0.5489490555185598 +0.8033295514163006,0.9978576364983998 +0.7425331270314135,0.8887797523930965 +0.14066475758159408,0.25781049053162797 +0.865149412099701,0.8705802376321201 +0.042870750371047706,0.20116737628882514 +0.4962834091735794,0.37314393729843376 +0.12121257789865558,0.38328445635982406 +0.7064053926179478,0.1923305996064898 +0.7314541615036135,0.4238814031991776 +0.2487143865857836,0.04714842342085945 +0.7261903741021589,0.7528507132466842 +0.20301651570129486,0.47998517924028 +0.6945232028130707,0.4551042515771539 +0.5962941266765741,0.7033682229044196 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.5_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.5_size_100.csv new file mode 100644 index 0000000000..020016296b --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.5_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5503161484577832,0.48706660157444986 +0.15187495555250458,0.5962819227773232 +0.2985696490069517,0.458273228737864 +0.5450177531630543,0.8021861260193917 +0.7496189989686636,0.8747982044036555 +0.7033356715136209,0.40304827120679565 +0.3283083678597847,0.3086374303009286 +0.563086555740162,0.45242875990269676 +0.9775960078364198,0.8140630430617204 +0.9020725663822231,0.9498180278818462 +0.5937573147904309,0.813921615116272 +0.03186396051090634,0.18578370396085708 +0.8957122978103662,0.8593576378313705 +0.39233270824006206,0.17558554782821445 +0.8004824279215399,0.48843178438418083 +0.5374754733363581,0.3593094970688674 +0.4316443053429678,0.3941814900783172 +0.6865120371458581,0.1893987093462824 +0.8580670547811209,0.9434699504279525 +0.5673154663824792,0.23812524962453357 +0.6196443566163072,0.9920461246090966 +0.5682584946713185,0.2624131704823155 +0.1222740075369998,0.3428864677249291 +0.9539330598331222,0.428733924129054 +0.8992453119201076,0.9789617470949166 +0.6536005977104217,0.6711900259608425 +0.2824303651577804,0.3574973049844322 +0.401147343185558,0.08943604043930392 +0.2582111332205832,0.15590573270608693 +0.7725746243289124,0.08285552428448884 +0.00017340630381401656,0.006675316108673446 +0.39953599848047194,0.151257343920761 +0.22704712568206964,0.5516196543428712 +0.28826730876340734,0.5055451990760051 +0.5364547099707,0.7844530720027774 +0.6793707995059262,0.6581986390669312 +0.7397768327128794,0.22896378430986308 +0.9694161438418925,0.6251059205654728 +0.7745319922045628,0.09812604479651854 +0.6012793682585715,0.014804184149521504 +0.832472576288465,0.6549210192206768 +0.15188866282642666,0.2481598626904274 +0.9735431008333488,0.9666470594545091 +0.453706571179455,0.739483128209178 +0.40711922788296706,0.9449005445257972 +0.8487626915068425,0.8118432412998617 +0.4083881984207308,0.053612856297370004 +0.3352343775032979,0.27622991361904514 +0.9412361219809925,0.6211831034025176 +0.22834091288943248,0.3235477913725221 +0.48526684194945824,0.3706068689176137 +0.5325738580567357,0.24982823489905948 +0.5199416033324574,0.4634235479789872 +0.5932176964287457,0.7603763832673527 +0.8699006165613922,0.8803336871652232 +0.5972088988109258,0.715230481050128 +0.27628265856146506,0.39424920936553365 +0.10862956786186212,0.12396814890779695 +0.1239656970755264,0.07749934711599504 +0.7624693433483687,0.9172695744532559 +0.5473459138513365,0.6968951225471811 +0.42271188874242627,0.793726386447337 +0.38239006403167175,0.5277989229532463 +0.33141266773621225,0.2659091485900954 +0.44340312872866094,0.29423279942499503 +0.6333520460107983,0.938267750347459 +0.20385839430509467,0.04678657913173784 +0.14049543348411042,0.17071928798305697 +0.3820964983588665,0.19197720367230986 +0.06602623741149627,0.15239140823915392 +0.46609400540092805,0.5314088918924308 +0.2778993798919037,0.9613317633894285 +0.5576397393814619,0.6232502603086453 +0.4357410181514725,0.23551499881298027 +0.31379013291266666,0.9495431767523481 +0.23575834126640838,0.2552787956701916 +0.41942123181870405,0.547344905109288 +0.2592002405894955,0.6545575766689392 +0.5863704074193129,0.08507702270739231 +0.025694257830343847,0.24018434830409202 +0.17662124415561786,0.0069178371973026564 +0.9631701722161343,0.8942085641541421 +0.2516062994621633,0.3660384226325945 +0.31248440082923323,0.7148991399029732 +0.22689978979030218,0.18647362159267045 +0.4105234347048047,0.8466639335914687 +0.5151616866976586,0.5119021791287524 +0.19870012460898928,0.5986650155077057 +0.13776635223447092,0.6026001054126853 +0.48194738971746176,0.40334652026931517 +0.14667387764310663,0.05729905037392302 +0.9939696633571813,0.6289167769909018 +0.5047480774612555,0.9749415575606788 +0.46358163170923805,0.9433951302517272 +0.342167747707683,0.12435707583374855 +0.9251536187635916,0.7371286394159853 +0.7559699838788982,0.5506214315535577 +0.8127545460078219,0.9883548977860859 +0.25995898634486725,0.1415281769602897 +0.8353362459107745,0.15807733057007245 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.61_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.61_size_100.csv new file mode 100644 index 0000000000..498a98c5a3 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.61_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.03234842415339423,0.15661035389726047 +0.34797400675740575,0.12028620919149874 +0.31283677870414117,0.5920214330404373 +0.6549283742540984,0.9342763330530932 +0.45369608745948065,0.2844644912933769 +0.0617054298321188,0.016582032527042045 +0.7274609996607111,0.17287097518595296 +0.7727327442494628,0.857140892157623 +0.08175260149137198,0.25002696014631987 +0.5045736760801194,0.604611265102434 +0.5694012270168599,0.8695638954216893 +0.6750406074496078,0.5047358386432632 +0.8403873565336157,0.45685326919724256 +0.7999286938602329,0.45172454246969224 +0.4692740700255009,0.6217678657000566 +0.40164910714940494,0.8315506517359832 +0.5871675194594499,0.2606692740618991 +0.02633037133767535,0.029536536179492312 +0.8066814986262236,0.4587521422670583 +0.2386745329519489,0.7105512584682732 +0.07404148481587924,0.45220230483250334 +0.6517535810361317,0.9187419036138076 +0.4766078201822673,0.4409303971071085 +0.28196833854954106,0.37374224873292605 +0.06211478081782684,0.4669159934925041 +0.926526214659167,0.7538657167859224 +0.26805004252451226,0.09558072947393015 +0.39908885451290543,0.7478028551379232 +0.5443349790864603,0.41222056325953066 +0.8614354061701122,0.34022843427627103 +0.07374155548307937,0.4680298895167029 +0.965621556442747,0.9254078524688565 +0.25238710472154335,0.24012955059799518 +0.6319269440349804,0.580045973695985 +0.0061037391887475145,0.09101758626023626 +0.8388709054003555,0.9222112269669823 +0.014221908033255182,0.12180188826013849 +0.09653973067657629,0.03103013589260284 +0.27953193348951866,0.7666589662934387 +0.8828907175896474,0.8238364237822002 +0.1823309878007593,0.3135417156245405 +0.051983205594907544,0.0949260397694548 +0.12759929419827337,0.013189028607923314 +0.5259524540142302,0.5354025404732575 +0.37957430661119473,0.8502150338429263 +0.6533956033034941,0.8324209401775688 +0.8733881659299005,0.6689358587917669 +0.34330147053763826,0.7452287789537597 +0.9957495293471601,0.4091136923223934 +0.07831854493390222,0.002930034294829298 +0.7519249988799508,0.7167665931856966 +0.8103908810456025,0.6546659586968218 +0.7984949577689074,0.9122166520048962 +0.9513857678068844,0.8381703185322802 +0.7703450369706817,0.8656534080270792 +0.27700141290070635,0.5498570160748977 +0.566348137416582,0.4771346719695078 +0.12978474609363028,0.047514902654076596 +0.46423634926167545,0.7876132682924766 +0.02153376474361368,0.07251392710995813 +0.8565621391656841,0.9994493042539208 +0.21126833650993304,0.4173548242397578 +0.8512718108588038,0.5172453140574518 +0.5306311358822938,0.8523352181678702 +0.48045652887868884,0.5456686946443202 +0.8599615087742474,0.8421828507941136 +0.8498998254183271,0.1848080514915033 +0.7833789373536343,0.48485054721392096 +0.9239558992374517,0.7115838556799607 +0.2792929198370834,0.11134479711705286 +0.9128673859390288,0.8514941262555794 +0.6649796296771455,0.08171607356913568 +0.6923258327453377,0.19306124398325736 +0.6651413203480967,0.5052422736471442 +0.741695296872611,0.5217616652439653 +0.4749628985398434,0.15514455202117727 +0.9071352256107119,0.8804462438181764 +0.6177268475125658,0.9387568974525468 +0.58676090966659,0.4151403075539988 +0.09637052181360506,0.33906768458751424 +0.5755520145165244,0.9120091108520888 +0.238570307002116,0.5197439165957353 +0.23818096488178142,0.375453795112045 +0.48645307197053356,0.3425030083423096 +0.9855169425017529,0.9874076105239249 +0.10137694503639921,0.34172017370891844 +0.18765620910128988,0.5519237552979362 +0.6137667213693194,0.5795824672161275 +0.47333376513977143,0.5553462730037945 +0.3985369020200601,0.37940217508294566 +0.5396539539049413,0.38323901986714626 +0.1421384822547727,0.43963565150959116 +0.4411082356530708,0.3333074277588607 +0.788806254537314,0.4424716922439496 +0.8584916290298539,0.9026874709889087 +0.5224479438357883,0.432100270987171 +0.6085094838967502,0.4462637231769599 +0.13079234632711662,0.06808676669558517 +0.2583161081742431,0.4145577703862031 +0.7393053600399284,0.39926439073851144 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.62_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.62_size_100.csv new file mode 100644 index 0000000000..592cc4c510 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.62_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.488513450373087,0.9279592527457661 +0.9685028771672496,0.8911335562256704 +0.830987298122271,0.5653771542443778 +0.08588571022024083,0.012488377044964138 +0.968968791474526,0.9008376795476871 +0.3380311477065123,0.29800822289402584 +0.7919746022706124,0.8173418008424789 +0.5167166628070898,0.5894812624711031 +0.13572217561173983,0.6623791766016772 +0.64741393382009,0.22286860295022204 +0.5817211571764573,0.516494056548767 +0.22099496372730965,0.245701045598828 +0.9463208937543152,0.5203820651715372 +0.47226124604326936,0.31370233403993986 +0.8474878164084614,0.6699682476737793 +0.8934155711611147,0.5390809375490602 +0.19129365120199915,0.42565436716072924 +0.8952431414389384,0.9747686926675596 +0.42187284672708025,0.36828643584583876 +0.06482874038385733,0.03074703521394795 +0.3325922688071038,0.6251999120832588 +0.7681315414414516,0.6109294860617166 +0.5639521135276322,0.5676021885220145 +0.42568262678862256,0.6118271578500429 +0.05040559860456806,0.19552564401708245 +0.3885823413063264,0.2102831736700278 +0.6091736601074559,0.8669348738294123 +0.8448200399328842,0.39337007725477124 +0.8649658329713608,0.5542500296849773 +0.0850648515393943,0.19543203279185595 +0.9305500836843331,0.9110000604994544 +0.9552602459241507,0.8092484376121235 +0.29076317727865825,0.15655562506323673 +0.37983274246112586,0.1627868609786523 +0.47126176915965245,0.13324676435733945 +0.9100465678444537,0.6094678668590985 +0.9492067362666035,0.9061818618098554 +0.725884869521547,0.9874470340653005 +0.46091294386193604,0.45693637545400073 +0.4534291912899818,0.20249295463759825 +0.7042361775650314,0.6466655698629481 +0.1442517373490897,0.10641546666961277 +0.2964074219457774,0.09414573727649667 +0.5216515145872209,0.3990371267161695 +0.34536397929607765,0.363230029455885 +0.9521009091000228,0.666337774474604 +0.183219530086061,0.21466702710954821 +0.1571413508742811,0.10753022053465755 +0.5651923951894733,0.261102086589035 +0.09506129876011632,0.10487376038300628 +0.3949499950087405,0.7370201471732146 +0.9356048168583696,0.9671466681261013 +0.6044423742844742,0.1532940343179539 +0.8803124740258055,0.853032847654978 +0.9575924180795091,0.7599023302893739 +0.7682230346860138,0.8475969518054054 +0.42384550988484604,0.4719326290993185 +0.9503829924428098,0.9657948117620723 +0.3041082724754528,0.1574235531110355 +0.5155253792078814,0.4232165261549155 +0.9139612082337583,0.6709551367313329 +0.1720214918501352,0.4740021700989974 +0.0645659632048583,0.3609191368444915 +0.24267644312369824,0.4080010889996365 +0.43194088054769963,0.24456510568042927 +0.8817765889694493,0.9343785101427808 +0.33498310653696406,0.17095407082194425 +0.12460925377881343,0.43122876762808604 +0.8816842004537748,0.9496388990715896 +0.2600779983791893,0.0815340718955227 +0.8409429506544057,0.09518962958295274 +0.1854286554942417,0.13333710151998351 +0.5499754240159247,0.38469669737600487 +0.8935310702358088,0.9186785398402034 +0.09695915989421927,0.11671809505343012 +0.05742164392677007,0.0487153353997023 +0.9227828476843853,0.9628607151888152 +0.6245465466370191,0.4005925737849951 +0.38330209122979486,0.4810181742406709 +0.30545042380942167,0.10684519548784355 +0.21793510775167635,0.13681994787272844 +0.429214017553772,0.24649738571646518 +0.7753308757785493,0.9191940092125366 +0.7185871762358002,0.5006626110091708 +0.9440430902439689,0.9821413405142382 +0.0831726752073908,0.5808865290883739 +0.39943543020265704,0.3491865135643297 +0.8318214843634111,0.9977560727722568 +0.8017504503011359,0.879036705791267 +0.5490094251798175,0.501547945033842 +0.4785409962920075,0.2737631223913985 +0.14507252637863993,0.43073793959334267 +0.5081803713647891,0.4468593300705035 +0.539373251052507,0.19032128386186986 +0.49246555113318835,0.7106218496094763 +0.06463963649181348,0.08347688518522184 +0.7907440082791569,0.5126867114520401 +0.4729491200176552,0.9150325677640562 +0.3444494717897695,0.4790315662511815 +0.04403934019296629,0.02233413361776082 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.63_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.63_size_100.csv new file mode 100644 index 0000000000..e641fd735b --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.63_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6903336595802274,0.276949180371312 +0.18087380471363873,0.1701463951861994 +0.9848804633143201,0.9448736942454574 +0.25549973129685466,0.6678536236439594 +0.8827504310727562,0.5800582600473225 +0.8287722969710896,0.6469753720275127 +0.31839211762548425,0.29944067491902854 +0.401047287438154,0.5322761866309902 +0.6734904364712478,0.6682906260661888 +0.7160206184521358,0.24794582727880005 +0.5039716259198422,0.39169868355185206 +0.232230679090285,0.9817230396048705 +0.6824273759132798,0.6308250598235076 +0.8214923487313474,0.875874936798879 +0.5636691896499486,0.4194914104829059 +0.25846955385297943,0.42890147445544813 +0.5107267742869404,0.30156876903318275 +0.9438022296619164,0.9479617757239899 +0.1883412697651255,0.5134043723427294 +0.33013197490352175,0.3164068560436337 +0.8641798865238194,0.550339814297528 +0.5455641989139504,0.44585386294856844 +0.5756907287930308,0.6626666829666016 +0.026035705298779188,0.3671201285263203 +0.7032587638905021,0.34135562082358195 +0.8720687164566469,0.6170928479117561 +0.4039974650161442,0.7473370675366677 +0.2450817187755978,0.20384821976762574 +0.2075241413827293,0.11052958153867098 +0.720652065182172,0.7292061597653725 +0.5252690614022164,0.12739065639219593 +0.8021029676640352,0.7134407709919895 +0.03992724463006536,0.10528755444896726 +0.60607821529088,0.7795216601891659 +0.42461421892006956,0.6782832397914208 +0.45325893328755984,0.5783039379978228 +0.5721852442804738,0.07105157685398278 +0.33435365590970173,0.5386701944286072 +0.32030368507036855,0.218511870557198 +0.38332506490130214,0.33308646327124203 +0.2573044801042035,0.40785956667073725 +0.38492389585456943,0.7392660210396873 +0.9934377221844876,0.9964540562534927 +0.722518410134298,0.5841174460460659 +0.26678725250596946,0.011372859906219501 +0.9205533031496966,0.6913671871991586 +0.29403776385711555,0.11813879612494743 +0.4221215646084937,0.4152742640096956 +0.31758110318459176,0.21028589407781723 +0.9329483187200759,0.9867782523214004 +0.07797555535408907,0.22913999699407206 +0.9850509609122606,0.9800561244581738 +0.20242846579413482,0.3779289467957381 +0.7978473124933101,0.5363175371891735 +0.5887166989637108,0.14451298707457388 +0.015959078360474055,0.16779999849510746 +0.8457820781088392,0.6636505201424248 +0.1471765411219061,0.4411531609878742 +0.8808708099292668,0.42071402010798387 +0.8661777643357237,0.5544629671503833 +0.7092010151714626,0.2561558151757836 +0.14380312063283268,0.24720694167358487 +0.9684123862604921,0.9123438489785445 +0.36153946579720664,0.6344064897171002 +0.42899132937478945,0.31997365848872306 +0.6331551925411605,0.551078219901592 +0.8199785299277211,0.3806947058645847 +0.046247880482213066,0.05273926730434586 +0.295566709749582,0.6114464305260547 +0.9456758435879408,0.5644562895413742 +0.06589250887597142,0.011041885380981664 +0.836617003801019,0.7633699891152939 +0.4557413770238191,0.6921970519443738 +0.04995258937312952,0.09724467203066861 +0.1287363350640508,0.33529874060551834 +0.15327014462354127,0.14440689069725232 +0.3457707717264208,0.37539621470278556 +0.13237915796839034,0.1880278437004519 +0.5171951155591048,0.7594014935460147 +0.5638492435171512,0.915480404550105 +0.7810984674425906,0.5500670089436221 +0.3961503058424164,0.06769452702396006 +0.4997665135620355,0.7019285890367795 +0.05004091066844707,0.03163287911381252 +0.37861319370631874,0.021721492529666098 +0.11312163594060187,0.12556723738463776 +0.5974465575869471,0.11893001035918865 +0.6153947524229938,0.8630071167448347 +0.11715637903775716,0.7034857160652953 +0.6230923051833809,0.9220483629364985 +0.20115309159502082,0.6110377110772021 +0.9869855555552085,0.9957511780093442 +0.693791008769378,0.4776499432734643 +0.7309795551931129,0.41396385064420804 +0.15730263780560128,0.48441868646353625 +0.4966427812514509,0.4902468362470165 +0.0856142050431421,0.2228599232278322 +0.8366769369783538,0.7639384368165867 +0.25251621707893884,0.13482156154270836 +0.5441365398749841,0.5228792424323239 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.64_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.64_size_100.csv new file mode 100644 index 0000000000..95e83b0a3e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.64_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5318231144723629,0.972063620524091 +0.9486269600335485,0.6008079466764742 +0.7896199270769942,0.8713290831118863 +0.7979120878563326,0.7926049690379322 +0.15795941441748296,0.16410376318693182 +0.7420502943522231,0.9323202571279393 +0.0073000518374606305,0.17675900051522386 +0.714797008136831,0.5390457061719285 +0.7809320003384248,0.3539811240752325 +0.4280143673840584,0.3733920687988186 +0.815397962202182,0.166664840764222 +0.24234097788799902,0.3805950743161052 +0.4064468124798575,0.37587165087940116 +0.6953304113481293,0.38149131538376313 +0.42666496095865636,0.49451680410230736 +0.19952171978683964,0.1314938128246334 +0.283860166284692,0.9261482538854924 +0.5705274534840009,0.7536266970925876 +0.7106181849642907,0.2935285020088846 +0.5139403571138389,0.0902001362241866 +0.3735148736588889,0.6515042582686044 +0.29292436264881,0.47474600475926076 +0.2411663335819778,0.366077809280184 +0.2612177741854649,0.21467981992904994 +0.5948128631146576,0.14098015128436797 +0.3083630621668493,0.18804409989074333 +0.9420382278341751,0.9850541351013419 +0.05017125223875174,0.24212756232863103 +0.4510440061477954,0.5133992146813805 +0.6727184321479388,0.7784119827241778 +0.8055484502632027,0.8901400633217206 +0.41314657827409307,0.16895029759547225 +0.899563652864027,0.698700576173778 +0.114722226639144,0.15141953655468682 +0.9836299792913463,0.9470509156109311 +0.9341162620168366,0.4816748108887868 +0.05272014100229383,0.08621583426603002 +0.016463732331150616,0.19601820475402232 +0.6335798887252341,0.5152934199032301 +0.3434422000524425,0.6698718570523661 +0.054660837085137914,0.06193845090061367 +0.25848862564546937,0.4119180788435056 +0.17094798862129434,0.1404252917341896 +0.16018040332301053,0.10478231262055387 +0.9650307553612302,0.9784001606471818 +0.8252063814160202,0.7791433551822444 +0.2436426004888117,0.017040750505309066 +0.8689658758808714,0.581728031785313 +0.4266408199720594,0.20293543477268594 +0.37349205895681614,0.6888987148482154 +0.06294066405823273,0.004329635057535863 +0.6529944345060493,0.3733993795725856 +0.5453101699438877,0.4484882521021459 +0.6141737180669633,0.25382748682934675 +0.8669264413415132,0.8703789302593345 +0.7287667792270986,0.41092539955632634 +0.20434820977065205,0.28408849572828454 +0.07565513780639654,0.049861902198488905 +0.35086031531221906,0.5486570116358094 +0.9071938534035318,0.9236915719588195 +0.38506894225288146,0.0588759028415064 +0.031982585906401906,0.018265211754186106 +0.4841092001361099,0.8341505448683597 +0.6915931634009878,0.4146221390824597 +0.9422667924172373,0.9566763593266974 +0.996399336360732,0.9867363668048902 +0.4706403896768857,0.7346927471436697 +0.7134463356386843,0.7483684063362859 +0.3969456250398623,0.2509469273067284 +0.12900249996033902,0.309992220679852 +0.4415244513285609,0.43043520466814256 +0.1980881238723487,0.05828256001699739 +0.8939708171667677,0.804434790860036 +0.420983576716383,0.753385551088769 +0.4196906401174464,0.6867704218054954 +0.01661874874135416,0.0020882306415964114 +0.6376025761122032,0.37204025855610107 +0.022418259760281667,0.06176309350487952 +0.2068255641215802,0.541695724089951 +0.7188529116951426,0.8872486323928692 +0.769455951666262,0.8618323817458888 +0.4541904068053165,0.49094495490009615 +0.8024421802973283,0.7035036140730272 +0.49908781424134985,0.5575931210697257 +0.542505180270713,0.7911290053588265 +0.6930860309995772,0.34717479152306385 +0.43812516175609884,0.4867365513955122 +0.1947303780164601,0.7956476983406733 +0.9806809901279635,0.38714791421485334 +0.3781582209281641,0.4516067336662274 +0.21322579172520884,0.2773433640671406 +0.41699416199650385,0.1719434674818403 +0.40773677136187236,0.5253863934029 +0.5256802269852134,0.7452582221961379 +0.025385982354953818,0.04755982895382438 +0.37802181977787586,0.29427431957626693 +0.9606844396390022,0.8144447628024694 +0.856393278784054,0.9429891664139166 +0.4398303935037329,0.8627349910057676 +0.4326197584156134,0.08860956945851267 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.65_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.65_size_100.csv new file mode 100644 index 0000000000..bca1a60ca0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.65_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.2009560621408804,0.45735592099269035 +0.7865716675662194,0.9241263009355689 +0.5720485955368385,0.4526523888345589 +0.7598021090143056,0.5915208994584914 +0.6216190403584719,0.4635700013884548 +0.06246206525772102,0.08536743154417997 +0.4816345368769621,0.449998163250027 +0.505132065122818,0.7481378250020814 +0.018390203892730383,0.010954573445707827 +0.2051029584044463,0.48895974989868507 +0.021217901742809242,0.46046923549213775 +0.7825548323861329,0.3273721259546734 +0.7568335251184519,0.5883112089549479 +0.7040196693819264,0.6489911239389518 +0.6852957093778894,0.3235519119677832 +0.7164499585010071,0.846351524710945 +0.49422297205882226,0.7463058164587524 +0.3305712521465258,0.21012220650008012 +0.6586324863114877,0.6465610250562761 +0.8379123744222914,0.4935479292035033 +0.03379332594973161,0.6064454200825244 +0.1471748662516293,0.29769552476982336 +0.5901645316442619,0.2550569705882848 +0.12441901881373879,0.16201802918888364 +0.36121236755197417,0.57778162363224 +0.113495358057431,0.6581472678807283 +0.5593880829586446,0.15645511175095117 +0.12953433166596806,0.132421316258654 +0.593570646135203,0.30788806878274766 +0.37685899180468363,0.4266037996438209 +0.9535069575503814,0.9869247404064043 +0.8139268342475889,0.8094613350630502 +0.20243186079881464,0.6965349782290394 +0.5193357470799741,0.7286878923294043 +0.039860385031680656,0.5426210874779106 +0.1322264254427265,0.6489584621891007 +0.009651256030354327,0.0731643488600438 +0.15833887796934443,0.23984933651478757 +0.5614867777008558,0.18828233166142722 +0.153843916447661,0.08714991010645207 +0.3391447734884159,0.5716322800310153 +0.702426534272073,0.5613158113444068 +0.4475285844737993,0.47471583589991195 +0.5302470477710605,0.7794014676906975 +0.4203827613282346,0.6269223943347098 +0.9934120582366494,0.9221140820871379 +0.32392986811049107,0.3281552855017361 +0.07533213016317308,0.30758913994481424 +0.5769940487895228,0.8715062550011481 +0.22509251200245306,0.3032749187415399 +0.28059349216870744,0.4758445672022778 +0.3535705767003795,0.5074573082574771 +0.7750766150796355,0.9843425642630748 +0.7629551861770729,0.6170330454696915 +0.45494398484435505,0.08733620959192723 +0.4462209828354453,0.32450871301847983 +0.7486069041371077,0.08308052128643229 +0.8081398246533507,0.9422466081608887 +0.6238968410389196,0.3892242069276022 +0.09110093937547059,0.021749491652440445 +0.536646172409824,0.32188410394406197 +0.19889909936713457,0.18660815159544342 +0.0007038571464288434,0.004890341245679275 +0.4117152835206158,0.4975046016966159 +0.8510460905738404,0.5353437901144059 +0.9378784593241721,0.92364827901556 +0.7210856065705633,0.20707448529580613 +0.7583864719481075,0.14019482081499374 +0.3459319189675236,0.4568716933494291 +0.9028338981033356,0.5743870328588009 +0.6194491143025999,0.13395219860751073 +0.4070463873867166,0.7884218249634856 +0.6610193845774024,0.3695402298365258 +0.12471554104283245,0.034309799211012626 +0.9688717966561362,0.9279731511038704 +0.6408235327782498,0.7907526265290076 +0.7694448109331522,0.500354355656713 +0.4959613703614323,0.8080020286593367 +0.828223268816634,0.3200054508455249 +0.1616448685329448,0.4969822206442759 +0.7181381069961512,0.9752198373144563 +0.2680033442598313,0.6733219566497033 +0.5055460101790104,0.7871170133939293 +0.8510100707692043,0.9201594737947105 +0.49750629351823994,0.22218049824108255 +0.5245262644064408,0.7229093101541266 +0.5435907800549075,0.4685691859197877 +0.42232279323299127,0.15570581233907427 +0.6542279594134587,0.7838349650052371 +0.6051400591445268,0.6538331091458776 +0.32620035050576557,0.15366823472774965 +0.7298961823595704,0.8229829145757868 +0.8632329792551832,0.43063229349822385 +0.8581553017828916,0.9899122426113274 +0.5982894880198923,0.7458122993419715 +0.6867194038383428,0.5557377615567767 +0.9904769535811514,0.2590176266970523 +0.02061738859126494,0.049285474027821796 +0.5847330398382068,0.44315288244077106 +0.5990917543251025,0.3201757537611818 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.66_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.66_size_100.csv new file mode 100644 index 0000000000..d5abe797eb --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.66_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.07183652798564844,0.3509621196898921 +0.40783768288287436,0.11598956505987107 +0.03820379639105875,0.001519078493130488 +0.07228845102779724,0.2706407740787258 +0.7920789666887096,0.8745761945976801 +0.48526237317427456,0.23976396386174476 +0.6781323344882497,0.3714437751344618 +0.5441539755005983,0.7470046270155423 +0.9870020956692801,0.9992264204333063 +0.22755832218569977,0.32425870126554046 +0.7663199731940975,0.5116826232207407 +0.42057002468239857,0.7508339110669953 +0.5253367959124479,0.5241590211486052 +0.4056542437308407,0.5572083852459251 +0.726722543544877,0.9404274893293988 +0.349416603837447,0.03130832618362206 +0.7484682427662875,0.3298097137129457 +0.3583872265612854,0.41779239359811393 +0.09567305017488542,0.25739848051150493 +0.3460633232961424,0.2357047144734607 +0.9022830962109069,0.9691325486100006 +0.5093139543207368,0.39028889811247514 +0.6798820386264106,0.7008509961231549 +0.09992330222780738,0.29543939367713457 +0.010580413666522293,0.05967827810757964 +0.37765623157471817,0.558977813449211 +0.9373288002490148,0.9866069726593516 +0.2831946698159813,0.1340391730794359 +0.9163022538967878,0.6663704592389121 +0.8594219998159601,0.590798710593124 +0.3752865486988516,0.9413808529983111 +0.9450345761795567,0.930935607907474 +0.8806751491374565,0.919120067102583 +0.8407601333596475,0.8633155498076924 +0.6566978079337439,0.6490577665474221 +0.6230337492578312,0.10950081934634348 +0.1765249595860991,0.028228053898710304 +0.8698978362911097,0.967893660406062 +0.5928958134109904,0.5807533196032506 +0.00527747256241573,0.06920365207667883 +0.11308734482693045,0.8284296415353307 +0.229319238753652,0.5840808656696342 +0.27640173313797284,0.7438679551873202 +0.2232412043727146,0.22932548555588628 +0.4572335375144655,0.20279875008387038 +0.9575597574962648,0.870851442121555 +0.7827060713268443,0.5521798652657797 +0.7716620439225164,0.16259528805861317 +0.21684502420618956,0.15980982895619317 +0.9070444745628541,0.8497329033949741 +0.3654114066288753,0.46319726211229995 +0.6651618464147608,0.4191883624688634 +0.4705038808463301,0.7285288287124656 +0.5815980359362706,0.6570669180143087 +0.8174665119526922,0.9650692823088145 +0.8121072219000041,0.6476491102123965 +0.45741526479754535,0.07816175659777691 +0.5946726059326577,0.20348850540371083 +0.5294182481187676,0.6395388513428594 +0.6811717704898834,0.46554173965352014 +0.8333812166176566,0.8549332165824356 +0.7450778618602854,0.4579423687591831 +0.7933441553528731,0.9615602920127977 +0.46085257285540426,0.29153021575304083 +0.48856945211983505,0.12278724777150973 +0.47420686413725377,0.5131360845997935 +0.1764860178017264,0.044114470309375486 +0.30732549812522036,0.5671786960592258 +0.29765431001260717,0.29276880296141095 +0.8157661395337179,0.6456815145995862 +0.9887657396190244,0.5703018484379792 +0.8322060134401049,0.5677924112887849 +0.009754626187041926,0.1713556445791467 +0.8269035594227261,0.19192468465335155 +0.2912131108719702,0.49663946588071156 +0.037537809693035995,0.17372326807736582 +0.6019319823563231,0.7415283559464101 +0.008605778679272369,0.11934703973538063 +0.7960024270321165,0.8512152559867225 +0.9246620398196753,0.876098550085141 +0.2788191879061852,0.47333364266360545 +0.1900675529037157,0.1730052155714295 +0.11287284909454848,0.3813566714327351 +0.766619099250462,0.7994876867838678 +0.5924426385323953,0.15706341097002036 +0.16460238714006692,0.162391746166419 +0.2025991662152069,0.212636053579293 +0.9697059575226454,0.9874329694180067 +0.1232646884604065,0.17976569901940287 +0.6073877520687725,0.44230971755667936 +0.7453531410479364,0.4769887192016928 +0.6052808641465275,0.412638500651382 +0.4400498898927545,0.45253162849639766 +0.6950426608160016,0.6224367910738635 +0.3937919856989194,0.3940851029946776 +0.11024378269063873,0.2734846305919599 +0.41098132546142796,0.3947592991390546 +0.09213202593253,0.5292829705144224 +0.9308393170252256,0.8459959707347557 +0.11321909196504609,0.2636319631801948 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.67_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.67_size_100.csv new file mode 100644 index 0000000000..fa5973100e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.67_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.24478350249954706,0.3861525520192954 +0.29600133341264623,0.25074428529256076 +0.3479054278393857,0.4109834283606367 +0.177485708179076,0.29773149262348675 +0.7074814436604896,0.9695873895117049 +0.019889221471403595,0.1405691204020038 +0.32850000955638814,0.6699687515951239 +0.8346040520410192,0.695132209572729 +0.6706368223698155,0.7471171883740144 +0.4710605045629659,0.5128754741498224 +0.8242984951228325,0.5316678444976044 +0.2483766802377435,0.01795074734097002 +0.20188857652787873,0.0022698971901414233 +0.30647797125194376,0.32395387414439886 +0.5673832346559375,0.7196908072438937 +0.8507092272498518,0.7796684427803531 +0.36233206381939054,0.09312579054459469 +0.94458845099542,0.6050639982430108 +0.6367700711644976,0.8730233147583253 +0.29171417774459807,0.35198055135199013 +0.4979508913002396,0.43158874087398946 +0.9352341396443418,0.9918000270618723 +0.49833021286601886,0.5544955857203001 +0.6358653014392079,0.3370721110788699 +0.930932657051054,0.9401031576149428 +0.040433594008367435,0.5817388265087952 +0.8944995003379217,0.9653915956996765 +0.3663505977865247,0.17425595454488774 +0.3046811838350634,0.11900119159292899 +0.24274713829519945,0.13955240193967422 +0.8320310605545166,0.8023078227015965 +0.837222416861892,0.10610071475271488 +0.3314398593878194,0.31361865019409785 +0.5251146995618777,0.4378524010411016 +0.16643580356190246,0.41781719462662614 +0.9606643543945084,0.7189873682262515 +0.1796541612653238,0.024362108910240488 +0.23743552688613945,0.42748355693714946 +0.7953674170718982,0.6246957011988031 +0.3088280863677225,0.5120880777216664 +0.7891093012232537,0.5949545935555062 +0.0919266598016577,0.00911550147738971 +0.9668618172901273,0.9785755578427984 +0.0816048291394551,0.10553683574637385 +0.4162758495341068,0.5327964308789449 +0.7873409364102544,0.8961238735581198 +0.9409624667169028,0.195064640722991 +0.270272129937403,0.2882749057852171 +0.8586433463798375,0.9918302394983498 +0.607218091659211,0.9602581992543676 +0.9615057584333319,0.6565371790401079 +0.9948953904489736,0.9858604276684368 +0.8859920714810475,0.5319005620302791 +0.846108011422479,0.6073152340595359 +0.3323342695166327,0.16175738313875743 +0.16674082915859323,0.1840927656584383 +0.8850759563176448,0.4271508563259135 +0.6013671246392971,0.3388277882024358 +0.20097560149890026,0.2528916800258384 +0.19657188800495318,0.501055480274603 +0.7171424254932209,0.55874468003241 +0.11202816762470857,0.21117468341482437 +0.8616914219079495,0.5807922305161293 +0.4523651998419761,0.5216708004232257 +0.5064745699129124,0.3879898145015095 +0.40527159426831016,0.46084347405789894 +0.5583994108317635,0.12276050491887391 +0.2138142694815549,0.25075111868901667 +0.7740354408501273,0.762542229398625 +0.8382711666462115,0.8205617875663589 +0.6603562942979703,0.9276931782594924 +0.5902746118417249,0.2800972735554156 +0.24706745582136347,0.23785872256940216 +0.44436582916293454,0.09112215068969709 +0.04691195992767472,0.1224113287265487 +0.9886983175291432,0.9818898356265942 +0.07783389163646642,0.4215905144882429 +0.05429395319816077,0.06988289929588298 +0.27950503801906046,0.10789371624011879 +0.6852238666331721,0.8517553918873364 +0.0029904840205829952,0.02177681508410645 +0.9876951446096975,0.9948055092508858 +0.20134907076385677,0.16275271802580438 +0.5679836943358127,0.5373174488285661 +0.3074277724471377,0.555386948816802 +0.4583694722749061,0.3585900696558511 +0.8951204112508468,0.6570337970110346 +0.5326722910822178,0.843927955948778 +0.9073735299814596,0.7712370643294163 +0.7487621898057567,0.25952322105891446 +0.8799301140409053,0.6772528673089238 +0.280250525123491,0.37068794523704696 +0.734846466563625,0.511926923240799 +0.4596338207337408,0.8688931786346521 +0.11656281274557884,0.18865017842855175 +0.8062886692891323,0.9502322608845595 +0.6911237040886749,0.632382205696614 +0.5110393435410311,0.48516801630570516 +0.4458251138285648,0.7087214799054388 +0.04540838380546197,0.0031266429766190207 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.68_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.68_size_100.csv new file mode 100644 index 0000000000..b4779fe70a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.68_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7744604471826881,0.33626519573030833 +0.8247207136723318,0.641139906548803 +0.038400366574889766,0.08417802048336087 +0.5258062323872983,0.679027437018315 +0.5312008055754692,0.7498892193266417 +0.024921779360855156,0.19387797264806267 +0.564906282385788,0.9187748671609717 +0.44391111709739317,0.5024220784065733 +0.6209637038516223,0.6332311209259596 +0.3876542709013626,0.5512471071740622 +0.11192701185317677,0.3167748765279534 +0.4525552978627472,0.8126834918968431 +0.8546527776375796,0.9779351616073064 +0.16590624151739009,0.33668687107526774 +0.6602571439852234,0.4918990979513173 +0.8347997805973308,0.6501105263335273 +0.5400226476374141,0.3393542390264513 +0.10748537403919839,0.14936333409990316 +0.9395496167800943,0.7850494338329659 +0.48939545700593434,0.24897068152857693 +0.36491388370301187,0.6720937443166493 +0.2989292449596772,0.21947464124601512 +0.08129043217605564,0.43548942364386567 +0.2688354379501504,0.3154266937590355 +0.24973322074965365,0.02141237819542302 +0.24465231581835223,0.26830526476883887 +0.01673407603219501,0.0043326868864771995 +0.21513589960153556,0.051545163002914896 +0.47325690290650635,0.8468884818800102 +0.32026321898658694,0.5892730926473182 +0.5169919414869756,0.4654304590428182 +0.9485821503547734,0.8032771289439472 +0.563638814001493,0.5188577094977501 +0.8018011957026439,0.9429500128143506 +0.6968535581136215,0.35261646033258537 +0.3933875035713359,0.32555993428793045 +0.09321273371919486,0.5014991107926432 +0.8457157260589214,0.8321301986530898 +0.3827709189783084,0.7735553472646575 +0.024790173703815754,0.35248376525618874 +0.29091053004610856,0.5439983959887512 +0.47473134441059506,0.0931174007400492 +0.19910702500829014,0.4250673349267096 +0.008181936050127958,0.00759055953264276 +0.7090237637128258,0.821695701299168 +0.49737051808755484,0.09349417274693267 +0.07323370952268804,0.10189898286517762 +0.29334241032980934,0.36420136336228576 +0.09732293832838179,0.05973032984349208 +0.9533532591670707,0.5380470322663318 +0.5075701807846569,0.6723799492362184 +0.3710288522897761,0.3095992371792523 +0.24277790958708062,0.6156414964023291 +0.5575179166320252,0.20917752149009566 +0.5488959220295734,0.37728365516012985 +0.41015943798004817,0.18913209692759914 +0.1817242002039266,0.14106208565357303 +0.4854677377316543,0.7615604022839577 +0.3767089280163355,0.15065925156835097 +0.5740994794421702,0.07236512334139122 +0.31932685532682625,0.5900630577399233 +0.14564764037726746,0.1952491876494981 +0.3731796140525402,0.09759477548574491 +0.6940755847316163,0.7025466077677412 +0.6020355130896111,0.42297457213088596 +0.20923402515745626,0.20104973912807816 +0.5795810542990378,0.9596229266987393 +0.5463152627413633,0.9369883108080023 +0.8412392886737197,0.8273608124482736 +0.38298787859863614,0.3581730273703152 +0.9377179220245249,0.8722774088186377 +0.7219706052365823,0.4335779253146978 +0.11507326494854164,0.2762686046934668 +0.8093647210159247,0.8638209020840493 +0.6099294907163434,0.6047868809145606 +0.7382597315855443,0.886329425909423 +0.7050929558138995,0.8571982293595448 +0.7166048360873771,0.7368758202094703 +0.13273092152095795,0.6819173584853231 +0.8234714261199987,0.9151178602526397 +0.9197998654057729,0.8846225423777632 +0.03729557285901808,0.2376369643180415 +0.024377474797214083,0.13157421073873765 +0.45739417582148034,0.8060327576577888 +0.3286096546402345,0.051911909996167405 +0.7324496440296798,0.6771769941525412 +0.9939266578251028,0.7630715327897704 +0.3684045289204677,0.05083717104527541 +0.7405263498801617,0.7166000290113588 +0.554203941258458,0.9440838651104857 +0.8888203373045218,0.8722537147055509 +0.2574209509600734,0.4792314430717466 +0.5742959018482457,0.2326362762630267 +0.2521879229893865,0.1579555181744955 +0.7312275991458242,0.8669441416989334 +0.048502428602221426,0.2566683350409596 +0.21225410886763796,0.7067927562735685 +0.9492528413747013,0.9999165989638463 +0.3494612159097481,0.2616969150196271 +0.26142661556285407,0.25877592499920454 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.69_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.69_size_100.csv new file mode 100644 index 0000000000..13fe2e1679 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.69_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8395588437838362,0.9835470330832705 +0.8961175573068907,0.9018048088420185 +0.6121679713382406,0.9636882316470474 +0.6242679510476332,0.07429346770995482 +0.43258322161250407,0.5041485708218932 +0.23903289292975316,0.11647970314740136 +0.18195310764351974,0.7967413343292733 +0.7892689376438373,0.9042977603731518 +0.5786171671132428,0.5178454920254749 +0.10714887159003256,0.5612402008759918 +0.4304726494617346,0.7752680709642249 +0.7556793275330501,0.6969801966564959 +0.6015595322173521,0.33173710327718425 +0.4122904076398103,0.18335496498431203 +0.06503738382270607,0.022886640977639594 +0.7918839253821195,0.6678142071457763 +0.5162431006156534,0.6543213660962575 +0.3295350002575913,0.40428704940843774 +0.6908822254481336,0.6399056130814915 +0.4224010826939929,0.4063926544185277 +0.65386576606456,0.6294098836199753 +0.0637489684338739,0.01388679926023173 +0.4232705707981146,0.5434081987640289 +0.40254013500819785,0.318294387971919 +0.11689680475516034,0.186167904476228 +0.06795194255863346,0.28746073422151275 +0.78523279973404,0.899163623886648 +0.6987860271750883,0.29466743761606157 +0.8605025962834938,0.7176714315524546 +0.9514997025149263,0.6366948910796972 +0.4909498068939937,0.6356938089797977 +0.9232611818030003,0.989675207115475 +0.648795234777285,0.6028306341602478 +0.5134361776751983,0.7491352281207541 +0.048942133689027334,0.035438525779835806 +0.01725870855583167,0.07148107585459063 +0.250514862984351,0.2798318821204664 +0.5413522646111982,0.476284452271265 +0.3275634761094223,0.19716354136375575 +0.36896229877446995,0.12226162088074971 +0.3728374244053495,0.5758165572305569 +0.454489724742528,0.32735677528506657 +0.8319364057004464,0.8532900525389021 +0.055348695849314344,0.1386577475812309 +0.37358767910073676,0.6627315133669702 +0.06124978335496484,0.031226357406160532 +0.2910406086729813,0.7059637358122159 +0.7325344019655209,0.6113934316297295 +0.36942164260204446,0.816632879140013 +0.24954722347546332,0.11724969598108731 +0.8512169868245745,0.6967615354386656 +0.7803883400060282,0.47117677840954275 +0.8187505290322962,0.6304381627085764 +0.24331376282916817,0.20960948333258766 +0.5870387289154088,0.7596683838667058 +0.7100958532675499,0.4601127413697667 +0.5072884883131117,0.6184926253299958 +0.7501526585016214,0.33272229539541054 +0.021292635107045488,0.03207969440501668 +0.05131060801403542,0.083258246676366 +0.22173312387697613,0.7032177297201339 +0.3495712773401588,0.7304703724369257 +0.2955735638654836,0.6479564592662264 +0.9064432399663216,0.8984078013687222 +0.26173895958150906,0.09841806242629958 +0.1792923853632299,0.7967028993275962 +0.045368017211820044,0.08678080002064048 +0.7718313491424948,0.5556590653706119 +0.21545203267045587,0.46560400626255016 +0.4732307425302691,0.8781422629084985 +0.18882085516099195,0.1264332223459982 +0.3240725510585071,0.43009440933061555 +0.9226048579094895,0.9449797885879422 +0.43415840153638585,0.41915285114761003 +0.6541039214286546,0.9159476042883022 +0.302647805322098,0.3634462012596734 +0.16877938984129132,0.4929711485039026 +0.7768294254703992,0.6972259559626997 +0.2109751037936609,0.1495080257527135 +0.6387915175408098,0.6452067225794118 +0.01025828848025434,0.006682492542140983 +0.5794540495568772,0.33204947974728677 +0.2927840962319943,0.3101545818893129 +0.3251249411849838,0.3465637820421341 +0.6125935464605651,0.6699769415904349 +0.32583324223509813,0.3448645925931513 +0.06836048236258874,0.06907776801925014 +0.008317540051555716,0.028708036355084787 +0.44275005203041773,0.3446127547156695 +0.8764888610087475,0.6727694144166587 +0.14522165835132728,0.10127832086234345 +0.5481097849728398,0.6268862066214524 +0.5514817891679334,0.2586903525507893 +0.40654268744431465,0.7441992645106621 +0.2937953183143375,0.08949860110590518 +0.8918635531497905,0.8071474818807369 +0.7392148429829015,0.5379023289709008 +0.5001369459500727,0.6875563431284996 +0.9385342408603201,0.5890045572128761 +0.008956688398353951,0.0171921498659231 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.6_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.6_size_100.csv new file mode 100644 index 0000000000..5746e57470 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.6_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.020287153680753844,0.3639025339562676 +0.4536153086997139,0.5894045158278779 +0.47778972605461123,0.6583832311112727 +0.6963628178424635,0.7461026764617473 +0.9926171060682101,0.990730239898489 +0.6186909834380693,0.7998509627008015 +0.6295308626462369,0.9034886161212488 +0.08653154787820122,0.7338984282731218 +0.715277542718836,0.983742340335409 +0.7998535565562032,0.9470751454112976 +0.6700879684963144,0.41748826281923856 +0.28388324254468966,0.16300341112244254 +0.16674049154966736,0.10637327728314155 +0.12414689961700814,0.09175619633641569 +0.91435100896083,0.808525316201539 +0.9648800434307672,0.9981785585153204 +0.8366497068581933,0.31894726888627034 +0.3157150737767833,0.4404079189521442 +0.3314668220158685,0.48610578510173225 +0.9483817179700603,0.5882297785517243 +0.703736030591382,0.18884886184525457 +0.573863652661387,0.9099265424779489 +0.7431209918966061,0.7102591608714408 +0.3628752344370497,0.33423891760122815 +0.8093544401277891,0.9091158064155553 +0.5108825034767703,0.23240488885584043 +0.22526646229388736,0.46935601005223293 +0.6483425325987099,0.8711198962018202 +0.002320391227870866,0.0030280330291480584 +0.7561148257747698,0.754436050181921 +0.5745510424260706,0.4951592952059542 +0.8296077201469307,0.9646651175868801 +0.10617898742096532,0.011562286159679636 +0.42319099192040266,0.8091575222188474 +0.09969595652353214,0.06339932446601215 +0.08580615503802275,0.6822756613728291 +0.6619429924734634,0.23638790865138443 +0.9415126816001786,0.20523896516138224 +0.339097317030843,0.2979068137879802 +0.5100415021452093,0.28141570549203393 +0.12476035179502026,0.16221638869710442 +0.08421358228077924,0.37808535346236605 +0.010950840318864286,0.34818763636977856 +0.17233300138402197,0.6273649901973898 +0.10150477914208778,0.5292883666960427 +0.6934479205086573,0.6109577492297215 +0.31725514158337775,0.38992104775141617 +0.4565951861522649,0.3865027169333558 +0.21296539202418396,0.040748068576198004 +0.40797375079403897,0.42946829906813 +0.33331469302702377,0.7659451878109345 +0.14951623889366167,0.22519680202936732 +0.5510238066887787,0.5749530456323122 +0.1926439737030498,0.31261748322900584 +0.9908831857603801,0.7647750211620823 +0.4264332790931954,0.5051447885330638 +0.7147739042457858,0.1929990411272292 +0.5897054211757744,0.1576083402563997 +0.3105744210462855,0.36811706980135506 +0.05666312500743231,0.12543666880866872 +0.030447498091108582,0.03885795808307091 +0.514446484745501,0.5858561969083124 +0.81692567350277,0.261651857201694 +0.4568159511218468,0.25991793975084887 +0.6494645332999097,0.5235058953539492 +0.3810208434815707,0.6777635336027017 +0.3796923173036584,0.43378006280854187 +0.036215417167957065,0.07301377856093205 +0.9670738278242994,0.9386567568432687 +0.28113244358431455,0.07015590038381425 +0.4264193351150536,0.25108737964984584 +0.8150672107790342,0.473652457404271 +0.0351178562740857,0.539537546183814 +0.23685626603435161,0.36622951776664275 +0.9858699280159285,0.9963603289559249 +0.2607255579280051,0.5893268974688654 +0.5477381699041383,0.43840044002119194 +0.6731697406952196,0.46569998730743056 +0.7059988721307493,0.3751581343166067 +0.4930564448804441,0.560304539982721 +0.11774588839417899,0.10071777767859064 +0.13844034856227821,0.6480465027673246 +0.8826123813029586,0.5826404198943537 +0.01627425969669516,0.08798716192165024 +0.9630668528654919,0.6599757534990955 +0.09194587049195713,0.21922295499096667 +0.05067966836379778,0.14844014380278364 +0.6817238974463246,0.847450543440966 +0.5881322948756249,0.9088068812943519 +0.943181138236801,0.9359155008654283 +0.03333618296331242,0.07462159665569523 +0.714323079853212,0.6584824726757011 +0.28516796317698323,0.8826520434480022 +0.8514322329644721,0.9027634150154265 +0.09727014230792602,0.7473514358743035 +0.6118555944548046,0.3132724267396394 +0.4428810911422547,0.6639073868982547 +0.6489211732145956,0.8749359015006403 +0.29634107762976314,0.3443840278028966 +0.5860421843405181,0.5070917098885046 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.71_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.71_size_100.csv new file mode 100644 index 0000000000..08b162697a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.71_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7102013736890825,0.7760385940311167 +0.4670295203545357,0.1477675536511447 +0.32345904773932554,0.7318723339283316 +0.13110920318918384,0.4106583443629197 +0.7922142967450799,0.531500564144123 +0.37242061910569146,0.38904592282088873 +0.5864900701839293,0.3579170102604792 +0.4790207919887166,0.37990723509950886 +0.8418031355931624,0.32319715548967576 +0.7585831134023581,0.6001356659713678 +0.04035934851718215,0.12788888529657666 +0.44347877471536246,0.18749683435729048 +0.6049585177678679,0.5198436814306483 +0.9892569494430137,0.958538524830342 +0.5433998600490085,0.7283961061013712 +0.4828134641294295,0.1719718122802139 +0.5075243635141576,0.48658552461890886 +0.017280650347872517,0.023314969071044966 +0.1283182800069974,0.3552132820396402 +0.04373543861532181,0.2864099140775914 +0.7420625380989577,0.6568206399964861 +0.19610744332264518,0.6792959061825109 +0.9489149008267406,0.7227143428007912 +0.6893587343851335,0.5657106522889813 +0.9354496636852232,0.7105623334433756 +0.7630848133483074,0.5575691911347062 +0.5135423121136267,0.1850996294598013 +0.7878776402823163,0.799634572028753 +0.8233664831194931,0.9330392116957855 +0.02474838416031333,0.02348546895821302 +0.9078380898125942,0.4864060217610098 +0.6820320118279223,0.5207238250230287 +0.6353632220431984,0.2601452424561011 +0.12534394437223711,0.027697219417678554 +0.4778145387275091,0.5539269364621312 +0.014123542861549376,0.12110665466127274 +0.6254278889631614,0.6808540935203262 +0.41928933411229286,0.4239549133023995 +0.41257238590801215,0.7311625918265512 +0.4096667905161596,0.5102047454029107 +0.08287748927491945,0.1777474603844425 +0.011492437393627819,0.034276224557141466 +0.8142383932748496,0.27151119057675877 +0.09766962700824272,0.10562983671374587 +0.8342541167443153,0.5844930162154691 +0.91526636300737,0.6246137358379095 +0.16817682344776225,0.10480526115604588 +0.31563051942033216,0.7383377441266088 +0.1492585209324026,0.07480074061017344 +0.6763994243384572,0.6311585230878202 +0.42418533371353784,0.12555587014903602 +0.7811319602463257,0.5574555017939775 +0.39218013105102423,0.3177680415017139 +0.37417864364945486,0.4976979189903345 +0.47262748711921554,0.4818345043022961 +0.6584939561077229,0.6702872034344671 +0.45565658275354104,0.2554188006464499 +0.1847032692844578,0.13425732910106197 +0.30943578659702375,0.5338136374320681 +0.7319540815017382,0.1735677439674499 +0.9478985794987195,0.9893128672994842 +0.7843698745011608,0.6997964733256985 +0.7156618287319307,0.7570117662060765 +0.571719341355352,0.8699427341231639 +0.41135834155987716,0.2906301035514471 +0.6381993008086638,0.7567024013109848 +0.5491243140792859,0.8834199331052472 +0.44415755452926675,0.8733764874348744 +0.8124403982117103,0.9065821155852354 +0.2900036883489421,0.7051282889591417 +0.3328951993182103,0.6092739774686828 +0.23520422358492116,0.3415203875551085 +0.3013117714622553,0.10537712643166713 +0.14067439046980834,0.09758081990828071 +0.671539274631189,0.7052703005485705 +0.8613013784489465,0.4243522523393561 +0.6084814181653593,0.6975607380552826 +0.7506405080664115,0.3206956678752866 +0.10284049838975773,0.485940259527814 +0.003932752369977033,0.0077186939605943805 +0.7007754829615085,0.6707967569230855 +0.7935767160662816,0.96679109825838 +0.7650984589302524,0.9694706760709866 +0.5194253178405183,0.7092589753145189 +0.02085208833965324,0.3250969808217582 +0.18168743031859824,0.14327092315780432 +0.16233483296756668,0.4544364804241625 +0.6218688817122365,0.8027836774562165 +0.4706801362889639,0.6866732842804024 +0.4945351849978433,0.811546104806192 +0.943039541858701,0.8590909902627109 +0.4199109155366092,0.07634998575228258 +0.20492750088214778,0.09831176893913518 +0.447164533115465,0.3797665737799868 +0.3808760452850741,0.2618434329004949 +0.21168475248695234,0.15157330748399694 +0.6166397728411526,0.6617973133734582 +0.004356144928875483,0.0012620599877661842 +0.6658356995681485,0.5026168443686192 +0.24540759233571668,0.03335996232752447 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.72_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.72_size_100.csv new file mode 100644 index 0000000000..71f460f5d5 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.72_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9629931460096792,0.8962587696602251 +0.2113648448691392,0.3364532007061575 +0.961565391072748,0.7238551426411594 +0.17351536975035997,0.18336770784382767 +0.13899303511644817,0.2974769167294689 +0.09890410229565855,0.06854719870312898 +0.5222162846991861,0.473905469496272 +0.9274502701013403,0.7473229660993636 +0.021019792187862207,0.5529238593412417 +0.8756448321388233,0.9112688401475157 +0.9868423177969553,0.9088368293326842 +0.14856759682043025,0.06466167500681186 +0.7464175229633457,0.5114900556174098 +0.524295760244743,0.5193295295733952 +0.28358482845179367,0.16885949571875414 +0.5289384520972936,0.46244161947857293 +0.5596435389022131,0.25660371909819646 +0.06708107961482723,0.11508976302579993 +0.48591927298792015,0.7687942569397282 +0.1275243680563481,0.05783359706962743 +0.8225677557110083,0.5764898662866629 +0.7626571638887136,0.7741839025154823 +0.21765430430080657,0.3457933198133003 +0.13028488631600255,0.42927689961224186 +0.2802522541441873,0.23656741996185732 +0.8905928709539835,0.4308082048641077 +0.7726392511927918,0.9327288291489282 +0.4361967685967929,0.2374958421839481 +0.0415789339917122,0.03697538110617321 +0.3727331551056873,0.14629994012932662 +0.8945053748635348,0.9889808848393371 +0.5857246537011748,0.7749227875229671 +0.9792831758188617,0.7881784495934474 +0.8954871252355705,0.8751333113177824 +0.08378759299774685,0.21939614178153366 +0.995971833666381,0.9540115026036319 +0.9247647545134621,0.9462495806101889 +0.5205117713369323,0.8818981327313067 +0.45467357461137925,0.5530759003188791 +0.35351301850332895,0.5850114294274937 +0.18546078664428134,0.38337861060814116 +0.7176305234548781,0.8047708256560278 +0.06219451754457028,0.20420531379817586 +0.4889390787181893,0.3957892842829476 +0.27119693101138187,0.7307811498612733 +0.6335313280130493,0.7983678420284177 +0.9292293237910588,0.8983430594996668 +0.18016899594520175,0.051094331070488774 +0.35257440491644054,0.21184702776754089 +0.49686754951229994,0.23765143825083096 +0.9030752750987978,0.9796667529758363 +0.09299449758809186,0.22821188877065512 +0.873784782651815,0.9254212915427412 +0.3695110558108795,0.5673292565036061 +0.012479637891806061,0.15620204639882607 +0.47033857274335766,0.574882761971967 +0.09173302337592398,0.22518938500166968 +0.10995863785503085,0.035379273412695644 +0.3888822054806943,0.8061323427196558 +0.483252837267087,0.633047742542684 +0.10305041635911105,0.2933282212147587 +0.036981321541335155,0.2100470360068195 +0.6530897310942074,0.3478812975529746 +0.2703804327217371,0.4794051549540154 +0.1563263036026079,0.49544630774940124 +0.7932484851389251,0.935716191090646 +0.36603747059895286,0.3563590240648631 +0.37690568342430053,0.9056155447611878 +0.7476819116645189,0.5895305115719924 +0.14296962930405938,0.5662436310016405 +0.8242544173952657,0.17834748840119274 +0.7553132624588729,0.9280339671774033 +0.4706777306169513,0.7461653291217878 +0.5848555040782204,0.46857734256771144 +0.673228855770377,0.815598088841017 +0.04463522940621556,0.04301813632870377 +0.3714263745933436,0.15524471384291066 +0.7298742375054929,0.7154256862354021 +0.561919040077493,0.17780946420380583 +0.23825905803062208,0.17150311812960917 +0.020934911046437077,0.05566155211818408 +0.17912720964251289,0.36541920504225023 +0.8715667257643139,0.6065285295663411 +0.49388556920514404,0.823125122822942 +0.6852027810525179,0.7406378526330786 +0.7971914295171199,0.7027185609861952 +0.3292553240093019,0.7540221106690501 +0.48041206240370093,0.3189315743356625 +0.2666072467125188,0.6476201237462732 +0.37983583878356597,0.37561347104572684 +0.8828056003790937,0.4411554762500195 +0.4030174850489969,0.8025459360412681 +0.035297584479764055,0.08280991456006548 +0.10205765119802196,0.0835501619842216 +0.4036071633241064,0.9103298913869924 +0.3452953711355477,0.28639401244046003 +0.008219564883958697,0.07339187877736286 +0.5079259454490413,0.1513944294475752 +0.17761304677258416,0.03716673710567131 +0.57237146656395,0.7966111914364664 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.73_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.73_size_100.csv new file mode 100644 index 0000000000..3f164fa45a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.73_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.00399213049324576,0.011235900964657985 +0.9382147274121826,0.8762188487937375 +0.26808477418483756,0.7214749772160824 +0.7529444648149678,0.7575013220031086 +0.9933695238385314,0.9980896032302417 +0.6264276019715409,0.5320919342222663 +0.44632573767151773,0.8198017134131361 +0.47407721499215283,0.2828327625627334 +0.3497392631256163,0.8773404686794039 +0.8054174462831551,0.7049293692516441 +0.39288073426922343,0.18700313488128112 +0.21516395717620634,0.12802457051798483 +0.9438047359848907,0.7677711541710694 +0.7029751160692117,0.21366434483534658 +0.2719346571879375,0.35327774834947456 +0.09124169610577226,0.22710268454719035 +0.19205062630077496,0.2785934718497516 +0.6411668294767149,0.8160942743973871 +0.860550835287131,0.5473599290543796 +0.09908662696911669,0.2927185700088887 +0.1601662341568701,0.07566150054548659 +0.6942192466277955,0.26393610765018183 +0.3899343892708307,0.17622336080299028 +0.8065166372456799,0.44924937891842553 +0.620004022553589,0.6268341444632808 +0.9319821196247967,0.9589874051418947 +0.006176058771259263,0.06410383837286776 +0.4940489853675294,0.2233580747067347 +0.470448306831036,0.10763931893958179 +0.5707882274201516,0.5608098560828135 +0.19194949278552143,0.5604944037993218 +0.91512858098371,0.7664889803797338 +0.20911484539698721,0.12663752958072083 +0.8626396292455288,0.9275358567542085 +0.9796774564783777,0.8237585025804762 +0.753044561843305,0.5869823163635096 +0.7367668742935355,0.8177043786354382 +0.6200904181475139,0.26160313464040785 +0.27824357168071023,0.7803407387185795 +0.897141080936191,0.8913217881643163 +0.4064239930345519,0.4069865551543599 +0.6451067511739408,0.9895547724589504 +0.5665132745523193,0.5290958787425655 +0.27421155642460504,0.34462860708538956 +0.27582563406653904,0.7774897875908309 +0.9213363200912568,0.7344106773227548 +0.9809275776876656,0.7795948973278961 +0.6831197289438825,0.3331180900115003 +0.5573633324223143,0.21743299854332926 +0.17583437609673003,0.2708471352774511 +0.9516651300772765,0.992320759512793 +0.3578787698476167,0.5452003389606753 +0.6861222889323266,0.7687701993073384 +0.052547743371484934,0.06742203404712116 +0.9243710103867003,0.8442347714074632 +0.31749921924372526,0.36006448121210144 +0.8938233479471668,0.8808553047311207 +0.8471394409136583,0.4473621349031924 +0.10605497251007351,0.1686456366236419 +0.07774728191348074,0.18279652634033033 +0.7960917501946057,0.4184210445896686 +0.28572707167064537,0.25123493810546854 +0.6048939662264142,0.3669584165882934 +0.5031515268081447,0.9804104202840624 +0.05427846219125104,0.0756118386300576 +0.6613477203282038,0.7392277862059775 +0.9474333520486474,0.9379565860026794 +0.6288239664449085,0.3205006435086637 +0.017910869058902712,0.20162126767155858 +0.06307923346425137,0.4755626995226834 +0.07262644825769116,0.13616107429451585 +0.2890613656365273,0.7277563630682187 +0.8793893402401726,0.19375181438235145 +0.25650556275656544,0.12933214004528687 +0.2631617892740855,0.10503425905458774 +0.4417211700782746,0.5068780058700182 +0.44116917884291307,0.19147906652909585 +0.013956528030057203,0.1330100985083364 +0.8213299184463217,0.6906451772919469 +0.863727547332954,0.6101025558427938 +0.9827729282428437,0.9903103787706102 +0.3874280252741134,0.670532796650316 +0.4054229713021762,0.4510698970610705 +0.1857364784386476,0.4209561622652472 +0.22294635263677542,0.5171794987412325 +0.3961493878940804,0.8759855089490014 +0.745661280424556,0.7198678877207535 +0.364582776321261,0.2447219104155442 +0.9050945664763612,0.9196490050120543 +0.5838073576712852,0.09138736008559406 +0.020322012520203048,0.021601186863045574 +0.01683345740139064,0.00195419776347705 +0.3329192533002151,0.03677729042682243 +0.72595719991406,0.5241888650681479 +0.185153327666019,0.04586092155857435 +0.48355730546031805,0.2693302091973086 +0.8272926436916399,0.9332023257554933 +0.015484999511912956,0.057966887483635265 +0.688427314977584,0.9283761535431532 +0.586313761472657,0.6246160324890397 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.74_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.74_size_100.csv new file mode 100644 index 0000000000..102d4afd6e --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.74_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8358688520199382,0.6271210669465415 +0.24383059349776404,0.3991043104396358 +0.30437832885430716,0.1549458748306809 +0.7717509512551497,0.6980047617741434 +0.045504429709504524,0.4688579848210954 +0.4898599122235301,0.16782633959210436 +0.7393678049746246,0.8917039451029917 +0.05145249794350365,0.14477763966509466 +0.4531696874004847,0.7003492997386562 +0.7954007270788214,0.46088231825743975 +0.7010111436785719,0.750569984090447 +0.3683721153286412,0.3518481456518699 +0.4606742746382738,0.27890742554012216 +0.28189965263168437,0.14236493730353622 +0.29212892373309396,0.4201043103523219 +0.9055556988730264,0.7688767811292582 +0.3747506126918013,0.4555217672763101 +0.5759911292965729,0.900840598653208 +0.952116366551067,0.9666590875223546 +0.5262579203068133,0.3847448714971 +0.5686442746907363,0.9267185408280579 +0.44427420653300986,0.6756373416979506 +0.8718676758997178,0.9209132562718829 +0.3141879255949497,0.1218846016961041 +0.687911494542607,0.7787218526195736 +0.46421159340378915,0.5983523957791927 +0.8487559216966153,0.9210904450643385 +0.4128571526861615,0.6492520504913726 +0.8287070737776888,0.9211699398873814 +0.918713959671964,0.7968251497726895 +0.2814460406191752,0.33822424407052687 +0.053444420559498496,0.18389821407685786 +0.7246391222037926,0.2851310873827426 +0.7279273435962554,0.3766027585007618 +0.8086516948946967,0.5116009355453603 +0.14536568852664017,0.433785561337742 +0.5580858562750337,0.7963327537460428 +0.8586037697476169,0.4756442861966695 +0.3947378388043743,0.16624729214621303 +0.438423383208576,0.6318342969499866 +0.29316196084126045,0.5019563654925987 +0.8149785249933079,0.8889125009991323 +0.5917879493870192,0.7402041997081225 +0.2931415978133657,0.07416813479169376 +0.9190835053658717,0.47979075114493364 +0.5403268737360084,0.5847712445617459 +0.19084586284908506,0.09258152189378238 +0.3729293222384116,0.2926484602502786 +0.6079696224161696,0.6096646535028044 +0.9427400033409506,0.8997050291557664 +0.5221710548618476,0.4777203395361815 +0.8302163506376736,0.9353108089835354 +0.3789096467157389,0.30336853661957625 +0.5555865567948187,0.55345720404364 +0.9352398812420677,0.526710957729354 +0.6604558693214055,0.280502278656273 +0.1756245267519984,0.1318450091674654 +0.4367311651577641,0.6825160379271512 +0.7385094572639572,0.6085779538607832 +0.8401335387720779,0.9642097367254557 +0.9524203698021163,0.7700746185600083 +0.20238669818446625,0.6067211905860755 +0.6894491939007088,0.5332592447225304 +0.801155808893548,0.522332784725763 +0.15001437488215963,0.08360325969296117 +0.5972362864688819,0.8059031311684361 +0.5751984881768957,0.5847233543867725 +0.03878150894257415,0.06782006062915963 +0.8537233710685509,0.9553458698893225 +0.5396831277525813,0.5075055056999322 +0.0062133965696998805,0.0929902776105535 +0.6230130228468919,0.5577469319783718 +0.45540997537023,0.8263178270262421 +0.9174886034242866,0.9782521823192906 +0.6458502676757936,0.852510034371459 +0.8252247745196973,0.8403027847937712 +0.7379877799326356,0.21147966166929205 +0.15421532038051944,0.4036879064730771 +0.19562867817744817,0.05180136852413042 +0.18253618797698484,0.03120557056798068 +0.57946542290926,0.7305829816344741 +0.04357810699104325,0.05996039757607552 +0.1361103244259701,0.39301137688014864 +0.7961740398671476,0.7521707301099996 +0.35496956564695314,0.0679381474887587 +0.17606793084800704,0.2075833334078856 +0.7255487946968114,0.44603280849087823 +0.5427681440272386,0.7757594125249 +0.010879425479360272,0.0890531183077643 +0.9375312278402794,0.8991003749384519 +0.3687201999067281,0.1369981086255992 +0.1143171964768307,0.36171915904957863 +0.8363521095622912,0.9653199331471962 +0.820355991279347,0.8469802048366407 +0.009852439442651906,0.12074630404584258 +0.35258044052288506,0.4705043591403836 +0.7423913912648414,0.8256004909929079 +0.07579081392296405,0.021992793946631506 +0.0825573665715939,0.045438176796130714 +0.7172303789751177,0.6581404005075864 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.75_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.75_size_100.csv new file mode 100644 index 0000000000..4ef0ed0138 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.75_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.15605255519105232,0.25767322330633263 +0.6704044555089673,0.46975998673426916 +0.160424779354702,0.007432112442893213 +0.10792852885639276,0.027998339147347007 +0.6229539880107501,0.8420279348813808 +0.5806782491579368,0.82436145782029 +0.883550419065905,0.88533162603696 +0.04320078983531295,0.21331822739329143 +0.3651126092225334,0.445294668116331 +0.1769700141406398,0.1602305197147152 +0.34823756871216693,0.07771480731998792 +0.6276346894786554,0.5869814193737752 +0.061318116625059926,0.1211846001811675 +0.9256675098941893,0.9833956905514416 +0.4810319946798609,0.23083218763642532 +0.5220572204191453,0.4897699532212692 +0.4403763919383773,0.2382777258565449 +0.47884273793282206,0.5929166821847093 +0.45423003557395136,0.48824678418341116 +0.8197877734537498,0.4994476232585355 +0.2984790155583142,0.08148583608111415 +0.1033212894366421,0.351947176497594 +0.26556580363032734,0.6780735293845245 +0.2543464213184508,0.08245485998278845 +0.7102564799124536,0.7319389816420349 +0.6581846979217342,0.2636242704525028 +0.9887560231129962,0.9758388179226953 +0.847100050003561,0.8046101535784458 +0.9511594608772787,0.928435490670811 +0.3427444527188023,0.5709767300331057 +0.5176269501694791,0.8559213578022915 +0.015996459884869307,0.0978932369109411 +0.516632952984163,0.7423356362751492 +0.8769692035461922,0.5209780676860001 +0.8539504991825178,0.9135195769863567 +0.523339144808248,0.472484801892335 +0.9935035265671932,0.8693856513270222 +0.9418215721150553,0.6212996839791554 +0.9088316913209287,0.6235225448159606 +0.5177791788866194,0.5770182443510591 +0.41768026580560025,0.24590335010355724 +0.8803948694929393,0.9169825510353686 +0.5269696736943145,0.4457036621565344 +0.32272077115942255,0.2092090335360709 +0.08527445911169129,0.34283204667354306 +0.37383361254654746,0.2424016486751321 +0.3617317753310938,0.6732342737671166 +0.42500511657927165,0.7731498059923188 +0.7197212806213477,0.42564112064447535 +0.8164303210651362,0.7930864047385731 +0.6094375737330643,0.6188965795138038 +0.3411778570713804,0.21983740295687443 +0.23750461974657777,0.05956290021512628 +0.0344689333724989,0.042454685441654705 +0.9266836695582615,0.6698204104787099 +0.8546213788026091,0.671759061227746 +0.35989415338459496,0.27135388100209523 +0.7689577785965429,0.7045628919168222 +0.27901477495201304,0.5213081719967487 +0.3700147263827256,0.18418169541483725 +0.7785594544817283,0.4954889776929044 +0.6534469322022822,0.6421097325514296 +0.8569743708435276,0.6813587150371896 +0.9345738085771493,0.7092809940091909 +0.948307514701471,0.8505904332897543 +0.2574830512788979,0.20999832543271696 +0.3248603256752747,0.1840593874653999 +0.946259129238418,0.8954143663148719 +0.7975028352619496,0.6557160463381322 +0.8916912070778542,0.6152370232462419 +0.8125839910094548,0.8668260790837717 +0.7074399773826191,0.7023959705417725 +0.2517787858331837,0.3748255129340636 +0.8384820964185324,0.4709133247422294 +0.6978482564424033,0.9926360357100149 +0.7752175444578462,0.26833219011931086 +0.7562820225539222,0.5200227000841103 +0.3984501858960521,0.1379807712643038 +0.01834000240993805,0.03858464701971526 +0.9148516428821385,0.7844512793872197 +0.5069770064446312,0.8457462641164983 +0.34005568226563887,0.20303511608837177 +0.025871609957128006,0.008418094002856258 +0.69440378235735,0.532742654871054 +0.33055709410734024,0.18225903258222503 +0.7062883472625638,0.5762319631377908 +0.42774186949983606,0.38650784533594873 +0.09448487293250613,0.07673856084836345 +0.12342592240201095,0.39716973660229116 +0.1956809382004145,0.2545657132538886 +0.0439492770440727,0.01074856409880276 +0.5681407603742856,0.47070441080676706 +0.7190712145002112,0.7887309078527072 +0.9197337040481854,0.9360039281905856 +0.943205244382537,0.8334994616659991 +0.21443872047792495,0.27343459121978275 +0.15117815741693774,0.07658799545833173 +0.3469468122185415,0.06282936529107658 +0.6829623593653984,0.6217650235951713 +0.7699492639919063,0.8493090330416719 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.76_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.76_size_100.csv new file mode 100644 index 0000000000..bc1924bdfb --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.76_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.1598604773409314,0.10771697088771937 +0.3689427895302875,0.6609733921227097 +0.7266596120846617,0.7371370964506042 +0.028388331893769214,0.01568782088587245 +0.34152860925966566,0.2630105845184604 +0.4083391450682329,0.7103814046673743 +0.46425590323074273,0.18259787222205892 +0.42455655215304733,0.20598217136010605 +0.3949745216464069,0.52983487110122 +0.7427536810221131,0.6980275614686877 +0.0077788907152614994,0.32075347479907257 +0.0559505266462581,0.3980535900611876 +0.12697340883113756,0.16769345010958858 +0.9279973308694729,0.9141229351664182 +0.06567468281408073,0.10273243556666828 +0.5906891025617172,0.308371580082522 +0.5419452949335581,0.39240472986626146 +0.14185120864194595,0.15238513095415862 +0.8711937786947929,0.7846534922663582 +0.4902101187851734,0.2841052950388545 +0.17827376106826093,0.7030050635104448 +0.34262083301158885,0.7373600215079645 +0.8773570037685052,0.4655744331539446 +0.09887261389467661,0.3286880242335483 +0.9067920968855936,0.6025923380508792 +0.096483775981344,0.489533930219848 +0.11343974278547814,0.05727705338766531 +0.34644856638615196,0.1934806159306 +0.9063354883865595,0.8193201475539007 +0.23060703133020866,0.19985085719927825 +0.050699698695162,0.1326187897137842 +0.5981076106062747,0.6067982888973292 +0.44047705166192275,0.6001077442202059 +0.48138073513536295,0.40710985294801555 +0.6721759869751068,0.7924374666006194 +0.9186013711507439,0.9140476267140852 +0.26523078444424986,0.24108171877374113 +0.49624584162569907,0.5955814011152712 +0.8912326326623651,0.9248025709665234 +0.4408277611885223,0.32259347439779673 +0.6076308147845427,0.47224830969548537 +0.49957132459659304,0.47499636002977 +0.247436889983641,0.28803918996440825 +0.9236756038571485,0.5029901894541084 +0.8737651426699542,0.46242235534527737 +0.6066891458945628,0.14887556005494673 +0.6340822572026396,0.6339508571362261 +0.49329624710112663,0.5431417056153605 +0.8727147957039868,0.8563637881316123 +0.5783730547230228,0.4551163811279665 +0.2914499113538599,0.48601753400832914 +0.08459797997418705,0.019248910768673466 +0.2889732461653526,0.47533204096047743 +0.22676125379847967,0.5124275035455849 +0.7059003692343159,0.37621936504732834 +0.26081438566610726,0.1252221610058481 +0.9311909623660062,0.9694503568557098 +0.5602372466271958,0.5821111497637244 +0.033816805238379266,0.0334340641532519 +0.1922722920885686,0.09859514590859808 +0.7439739462617512,0.7539535458911777 +0.5331584911260997,0.5689418693537663 +0.8718299970590182,0.9836246788586116 +0.18662661513797252,0.07268300620958534 +0.08703065109265007,0.145509314883625 +0.3197945272508702,0.46559396333117625 +0.3399721857267368,0.012553774637291015 +0.1188463949750242,0.27232124211373016 +0.7805433930561905,0.27978608874081007 +0.08097647902069544,0.2624922934294653 +0.8869517358031785,0.8645551019411136 +0.5586580669793606,0.6454840399131643 +0.18971684576402686,0.035608497957979435 +0.5387611561673914,0.737630085154942 +0.8736553782237377,0.5595292938300848 +0.9686824805580105,0.9869381399686431 +0.5452406325132905,0.8928314409817208 +0.29978283225090363,0.5431024108557622 +0.07320128616791832,0.1458115323069914 +0.829267472818938,0.5682127216649941 +0.06320856007290232,0.10212835634335338 +0.4624330671562198,0.31177689837961836 +0.23635608978090794,0.7198720632963171 +0.7526865455422264,0.7109256827929583 +0.005757461572184153,0.03330786689703091 +0.12010301081101094,0.09921968020546046 +0.33362144663085513,0.2578726749631063 +0.3873294648454717,0.23283290823130004 +0.012068217233769052,0.05182000284330329 +0.5859883999018406,0.4559107536897357 +0.5413069953421938,0.9427477345021664 +0.20184897870421253,0.18922832585388366 +0.7144774836314179,0.4279586779166242 +0.268614078916241,0.3513308257082779 +0.09473808251206384,0.0744684349603223 +0.7937714664912885,0.814241414285187 +0.08313678297513721,0.15014083541642748 +0.5748164359459376,0.8008870904711762 +0.5855328893276096,0.4898049333232263 +0.0644651044831166,0.3743516881595083 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.77_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.77_size_100.csv new file mode 100644 index 0000000000..d092f5e505 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.77_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.27944397028048773,0.8875288481271577 +0.6403693123776357,0.52565101396418 +0.6941358200382893,0.6083713807100968 +0.9710207096237516,0.8230560114827753 +0.4776660358856041,0.5714631562123612 +0.7264554072505964,0.444579445967042 +0.07021805869236664,0.01930597423326641 +0.6647587647742841,0.3358224841162414 +0.8572860714131418,0.945778095944767 +0.9747495301701393,0.8953820211903707 +0.3343068542075893,0.23351327695870594 +0.21524383797401347,0.41237618427303 +0.6282666962019756,0.5965677373355173 +0.36655618919548927,0.7272934706407789 +0.8314862034515519,0.6724580025470555 +0.2163326844240508,0.05596315151584369 +0.5417911036970199,0.35329236384425955 +0.5837917987635771,0.5103560725937061 +0.9017797747994305,0.6624352534600413 +0.6665945965205398,0.27264717627885393 +0.850161182204451,0.5835638153681066 +0.9056463810762551,0.9205431812565537 +0.06193232913350172,0.028174766525523975 +0.7226205285390815,0.5522843984989122 +0.5061558165765728,0.3353495550862533 +0.12474386919657443,0.30257755188555335 +0.5497314302070279,0.7493481487531127 +0.2054918806814076,0.4341227913189491 +0.7490310347160323,0.6135762711545684 +0.9720965457147777,0.863573238847718 +0.47451538373380275,0.47252357419177343 +0.700507515765947,0.8268041442867813 +0.35942329447856713,0.1954378029547285 +0.5473223869840328,0.23122460040663034 +0.8275055027855459,0.9454836710005983 +0.9711549201528493,0.9325743270824336 +0.6592215309855016,0.6603464101839371 +0.827465090934774,0.7629161178817134 +0.5755574938587608,0.41455818740180017 +0.7343296100546123,0.935256193301612 +0.5502003167768356,0.4517151758810275 +0.8690879094066943,0.8948947295965959 +0.8933262558980686,0.7282755670341272 +0.31084730996205034,0.3894046046739309 +0.37298413619268966,0.2842496894623835 +0.5943094050477874,0.4871491517478765 +0.5244595283156711,0.14928562661982714 +0.16484383554245208,0.03424717042988412 +0.8465117636309119,0.7997739308761206 +0.9355567712299864,0.8300033629953274 +0.7119267942033771,0.8649971960705943 +0.8162698670520673,0.9482951167181775 +0.18516217110781874,0.05732164630211345 +0.6913632058438278,0.7340983908325545 +0.8839653111474816,0.929683782404636 +0.8369862703709623,0.8211215534783352 +0.28412737534857074,0.5323606198105695 +0.4628999522247015,0.6225556272604178 +0.7083797651720469,0.9665229313360469 +0.5334703221793882,0.14368711970942066 +0.4600914916168326,0.6354613384952291 +0.8240521770301144,0.529846014674171 +0.7420138784739434,0.49986507505150984 +0.8281919447556675,0.7035063109843265 +0.5508470546063536,0.4190859802570517 +0.07243584544879411,0.6358054339207527 +0.047009329854065585,0.1467531713437913 +0.523177790135257,0.6964121255726359 +0.26297768265986715,0.23886828254369558 +0.7872414661502586,0.5137932675823011 +0.44407948216148285,0.30732619424868 +0.6769942572189334,0.6255167784706842 +0.2539444375995228,0.3660026828571833 +0.33189894677159215,0.5194616374774572 +0.5072067784440348,0.24883004486956678 +0.44193717143819844,0.13312837363648078 +0.5051417255890129,0.49611487887834926 +0.8585915751178984,0.7297971435933693 +0.3696485744945748,0.34348306908556114 +0.8338045497277815,0.42939419783470373 +0.25599633192533666,0.27313360221213456 +0.7821429760845298,0.7542254238228476 +0.9930635601827762,0.9432235052196556 +0.692118211438121,0.5691878925568526 +0.21584309319585726,0.7938290073566658 +0.7520707330533533,0.5201613384144863 +0.5170518993952881,0.6576030877905528 +0.12785602546498676,0.5693595868787928 +0.4484593579519418,0.5648742015751899 +0.18967306419035312,0.3980025812046993 +0.025655934665221647,0.005660505090478329 +0.2250232013747806,0.15821801259609186 +0.20489457274128298,0.09590043113374813 +0.955147990358224,0.9459812940467063 +0.6046785487966476,0.6364446436593472 +0.08405203343036732,0.06734356373721145 +0.16634736987871046,0.1787875083501969 +0.9775658152889656,0.8721983284046113 +0.31493341713864587,0.6382554030809668 +0.2774380860668568,0.09651841239337611 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.78_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.78_size_100.csv new file mode 100644 index 0000000000..e83820fea7 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.78_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8637025466067164,0.9612745092227379 +0.3836509632079287,0.3113391188895816 +0.21092947483734498,0.2923395604732677 +0.2814914438689159,0.4574754448244817 +0.8908803312837841,0.7849198984939576 +0.5332579284003919,0.12346685983069583 +0.7226767769255307,0.6005426950035185 +0.18240910791792408,0.15580438072407593 +0.6370939310520096,0.661435912651621 +0.5175330392695764,0.6099511295727357 +0.7019333540895998,0.9832817596386203 +0.9470569953517713,0.9724095005539135 +0.9065438007340552,0.5767033955558593 +0.2973603160535514,0.3804701240567384 +0.12511965526608093,0.17831289432728314 +0.716853299139941,0.7776050767245892 +0.6177269333447335,0.5355639863665606 +0.5654232640055872,0.6386084088189209 +0.30252738022432024,0.43540083581511796 +0.3586659864886387,0.26760058702787526 +0.38407934993030834,0.21992173091603057 +0.0971530602283669,0.09821931527356165 +0.08831702574501865,0.1356179312312094 +0.21981950801689404,0.13427137295421349 +0.8649613896971291,0.9024316854574317 +0.310850458127086,0.6538963074265908 +0.26120350495209854,0.28355719807224466 +0.7716063428023514,0.869409728179346 +0.35003726893659237,0.3926405398556414 +0.3611578168489902,0.4884769950694098 +0.37476678985767387,0.6440010440179278 +0.15166871944366528,0.18379945841862172 +0.2547632951010139,0.3413117851067118 +0.08104105112407972,0.07905834678253953 +0.08302262014160877,0.0818261272686811 +0.3205161652534968,0.5126123562402947 +0.25169254180772316,0.1684536391397245 +0.41637864892762133,0.8844733220482823 +0.6803124500604649,0.25538833228880087 +0.4745717997999871,0.4401399840301694 +0.5110070362438285,0.5889882501395011 +0.752510359300319,0.3795752858392708 +0.2685923577357444,0.43342933426227415 +0.8257533388564677,0.6101248011895775 +0.5387491775889307,0.07932373126549086 +0.6753937047130734,0.7734726642213079 +0.647415306701608,0.8945984528720368 +0.8825524239163739,0.38010642824868723 +0.3720511288650189,0.26164660227868763 +0.783926075385221,0.8827913440066109 +0.42558212447795996,0.3148966627573143 +0.5981175846754586,0.5789756472924292 +0.48651768109229276,0.3656534073880374 +0.5298405224719341,0.07862521169847375 +0.7218994669624037,0.8007470486633737 +0.1694385114874017,0.06288880900987093 +0.9121935049669476,0.904572371542083 +0.8374973519262109,0.9963074053246546 +0.9436348235532366,0.7979354839521952 +0.7323169263634008,0.5009798726178949 +0.33196507276029263,0.5850241482723789 +0.016678532171420013,0.08633258606455313 +0.7841119285563294,0.8005568517831638 +0.3995292787077054,0.17233545802099126 +0.25118299029965285,0.4476025028235977 +0.6631952549768931,0.6096360815894367 +0.7454525050461807,0.5263022542858907 +0.5521981087987916,0.8041009692118051 +0.7245274292730985,0.48403337605684316 +0.31434544478998105,0.64980758352652 +0.460833706093705,0.3237336951214521 +0.6729651880618447,0.4896139662340665 +0.1282648084979765,0.3202447983158838 +0.6625594822531307,0.49521121901682613 +0.12143204950196107,0.08932289873941329 +0.766028150912693,0.3045516044584069 +0.08423093740582055,0.0029165660080815448 +0.2423659845137579,0.43065794281074227 +0.3872018178350206,0.39936574561241334 +0.6651059362952189,0.7161334222277097 +0.11593652398364368,0.07307914673691102 +0.6486189090328733,0.4570506576833855 +0.22151955652937794,0.3710752608172132 +0.985112797374492,0.9989078198722885 +0.690424195336872,0.8307846601242163 +0.9671834952874493,0.754528968699314 +0.1951976793258302,0.13841768336195698 +0.7237239819159837,0.8967013705497651 +0.8008973529121395,0.8845756905181219 +0.030435749489007957,0.10080654953359935 +0.7477259430510319,0.5199404904215353 +0.14145919729878165,0.10642099067421862 +0.6050871899747245,0.88129819251588 +0.3624948158709077,0.2667350453652222 +0.2712653101754139,0.15992880413605276 +0.2610845240520894,0.7221906435436797 +0.18019820121545782,0.34470700294315293 +0.3388017857590956,0.250961095413218 +0.8547227693331559,0.7434448653754939 +0.8700769618101445,0.7843809849098331 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.79_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.79_size_100.csv new file mode 100644 index 0000000000..e473468931 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.79_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.08494291850213109,0.36543134664320165 +0.6052885465462892,0.6626914754264981 +0.6483396239898624,0.5443853259083176 +0.8492448675994663,0.9571028917517392 +0.024650711313204843,0.041996234101823515 +0.3228254263400371,0.48160141431274456 +0.7763466330882903,0.6689466979282828 +0.31960852282838437,0.7757058371448651 +0.7361318392365416,0.4601595086652631 +0.33131210768651076,0.43594883609093776 +0.4830893066656752,0.38549737543788637 +0.3942505882009485,0.19241566850901354 +0.7772980891242016,0.6279473572859262 +0.42669896793677453,0.2668103502629572 +0.5632156903591623,0.7351774822469984 +0.14350315022257065,0.4692764068300542 +0.22791025516093694,0.4765026726624441 +0.17539783603101355,0.09187244738916078 +0.6852082808137444,0.8827822994037297 +0.9874624173107683,0.907037905903763 +0.2535911905283599,0.49851358370643284 +0.17864899018668345,0.20720015677172643 +0.9004215097730245,0.9681668402991588 +0.8770381550683162,0.9492118544313359 +0.5463673259433084,0.4161492614047668 +0.17695449552588638,0.4460574727761508 +0.6597046121310882,0.21887002391523458 +0.053031296940314276,0.030040792854202247 +0.9851790267011287,0.8682081578442031 +0.6610575367547511,0.8110765069604626 +0.9424262496063582,0.9711744246570703 +0.26385629637048547,0.32046004351932184 +0.037925180632002564,0.08008719845249362 +0.17834871227820326,0.15891965494004262 +0.4328918088142817,0.5296589806674911 +0.4983667966881139,0.5262773312864466 +0.0010367251629022078,0.003433708105098854 +0.42480946550401266,0.6054183547411961 +0.6292161402551291,0.6686738152406886 +0.43968325646909134,0.3757259993456643 +0.8823049519937378,0.8163596984318988 +0.12352271208073723,0.27974434618905775 +0.21889649143095818,0.21973632768172585 +0.7553878668713281,0.8805463480419728 +0.8831354311947706,0.8949191513345329 +0.22964834546336937,0.14341744725091254 +0.9380772657515213,0.9572012410583648 +0.12988865888461,0.30577568483534406 +0.49213154626350264,0.7206256777594245 +0.4593725264568759,0.38593939100679736 +0.21218362076814212,0.19250418968047117 +0.7850189166935531,0.7085972742300978 +0.5581376418683853,0.45747797830614567 +0.8890821463024098,0.3032184246246263 +0.5275506335065271,0.496266728232991 +0.8324189955488464,0.7300186529966032 +0.9588327709659401,0.8214575062908082 +0.7099098502810492,0.34994197558663104 +0.9069935834331384,0.7011289970366879 +0.9977039903613446,0.9986440023873517 +0.8761984337062859,0.8923777120734233 +0.9456281111891894,0.9674723077644298 +0.11097013409407258,0.15541637263191244 +0.12561591790759774,0.18972939334903854 +0.4839538593275263,0.6983388610659671 +0.038869069803940004,0.35370118448256643 +0.5863333543750149,0.4268790405708049 +0.041590183541275305,0.24046985359075307 +0.12607381939730739,0.47527176865209264 +0.009208197195994416,0.1240889536479795 +0.6897353315399343,0.730328505045128 +0.4002508925027879,0.6239312891227673 +0.11098434868752255,0.16563332616075854 +0.44653658739260826,0.6815938154530453 +0.05175020378138184,0.16387017446859703 +0.3552804414605021,0.45464904791360305 +0.261300649732072,0.16077604357298958 +0.6017645849033659,0.9617139757145895 +0.6543356633638309,0.8729330034233749 +0.1195388237191441,0.21757206877942847 +0.2909772175826092,0.3265885989867696 +0.1789031661171262,0.3688550041714974 +0.322981898309201,0.31056477633242807 +0.03706683244072151,0.07621132045895151 +0.7081586630896521,0.6636392948911984 +0.9013252306700077,0.5355722058034287 +0.3197263410283886,0.737040980113418 +0.8353877848714422,0.8046256875600967 +0.6789922848497874,0.2065179038865559 +0.7145882724538952,0.8033345197586237 +0.529335802392272,0.2755834895917737 +0.9624071197719426,0.9414554943550376 +0.3899606428748682,0.3276335247056294 +0.6557384769021004,0.7745833044680874 +0.14015862807504076,0.07993846960209228 +0.32843810296089115,0.4548331047472669 +0.06156141660314496,0.06799320718588397 +0.20247781019409206,0.4129959258743275 +0.5885970980858829,0.43274713475516285 +0.20505302088759814,0.8249193707641431 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.7_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.7_size_100.csv new file mode 100644 index 0000000000..4e313458c1 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.7_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.40672715217239885,0.19548056249853218 +0.21917869335302875,0.5445909743947814 +0.1596926501575195,0.6451817817804772 +0.798821356471234,0.9781808435954326 +0.30950220390582583,0.5933112083467684 +0.2733004733590426,0.013004539326886055 +0.7476231017932063,0.4904945980621303 +0.23697141724446358,0.7178933393590395 +0.5597779282931524,0.9470416323573645 +0.8347051100813306,0.5074280595714236 +0.11237292232661572,0.0048867264105214026 +0.7540043554520846,0.66656900176588 +0.7759814618491655,0.8649326204404634 +0.354667086628231,0.2232446948128149 +0.4020910532749691,0.43152255613235135 +0.9724378144127664,0.9850968648002224 +0.07177118823708506,0.042547799588003477 +0.8540780155943686,0.6253451910324677 +0.5485104772526183,0.6724471308047497 +0.06383429966375687,0.06010968644024328 +0.8052592161663426,0.883226913970185 +0.21922178479366017,0.7490037781111771 +0.18471573236478006,0.04813569350999147 +0.8077249850884415,0.7284936744023952 +0.8248712538678501,0.9893635058441439 +0.05740005047996699,0.01862325904900386 +0.25378805871168086,0.176986113602567 +0.2084445570510957,0.3269739591264762 +0.9561763932844655,0.41474791337477057 +0.0520326630049166,0.14087693303569132 +0.11764605808118778,0.04857200711696069 +0.8697182383475677,0.31481644519010266 +0.20292759674965288,0.3404587611658745 +0.07818812323477964,0.09619721203673909 +0.7031809796046129,0.8150819086825035 +0.0833758958385048,0.1802711012714746 +0.3082736905233361,0.71626273280925 +0.07145902214806987,0.3248876153591227 +0.31339741679509203,0.23480683435610894 +0.010290140263893077,0.15210909217550356 +0.5020373374834817,0.7159408307684755 +0.4981843323721268,0.4209788137150579 +0.9454541561339266,0.9092635719292055 +0.35451182002327963,0.15450131662704447 +0.49605952692652644,0.17513410410871355 +0.5364091552109356,0.1880236063407945 +0.19699803811644445,0.06354853376985231 +0.02227650367423739,0.16060082158043532 +0.3061709041066582,0.18213838963891665 +0.397942916970911,0.40575585561914684 +0.40652950006825617,0.8969401768023132 +0.954840729287895,0.9172327061396897 +0.024290092537619268,0.06513561060955947 +0.16650485536945953,0.2547730381956984 +0.14358302365508951,0.33508731555373017 +0.009626069729813613,0.04335907010240031 +0.6031769215807368,0.31876947674784967 +0.3238796834488047,0.46708705331388367 +0.6588518238693618,0.8092370839787668 +0.12766182333598575,0.2521496368905699 +0.3700686257282516,0.5809605754962692 +0.9524812783560959,0.9441279916623698 +0.8266820323572701,0.17664017065134535 +0.6664976041918992,0.8465951346528745 +0.15147967410097996,0.32451573895015806 +0.9993380166622393,0.999400736584242 +0.06230345688007022,0.10770497833946169 +0.030071984079150682,0.4475528477508165 +0.9781120810184327,0.9991607889512093 +0.6628948423593961,0.5913764196189992 +0.6060220694515124,0.2284724685162619 +0.7856802701795023,0.7664196994735475 +0.8122459038763526,0.8943807974611409 +0.9669430639259663,0.9027370967492196 +0.7346574040023803,0.5266982004891289 +0.3088373716417776,0.2405609745402874 +0.14975699210879934,0.5188712905885314 +0.6569171022456147,0.7494504710577676 +0.03471073784697709,0.23552301974331985 +0.8381139489763784,0.6890425339698194 +0.5081771389012947,0.5060144957370978 +0.422922124840196,0.36265832878813054 +0.9932098277719621,0.7455633152813517 +0.6485840426344214,0.4455269994677888 +0.35424979375681864,0.24497026801265614 +0.2940643451075692,0.5212810016474327 +0.6992760862703857,0.3298401955217063 +0.02813897851785585,0.011657713185176388 +0.45355565572022283,0.6693227660463671 +0.9278723385124934,0.9189636682975217 +0.002066090679921917,0.025210455865999903 +0.9639835430510877,0.7329259994745209 +0.9057503971515477,0.5917232698886465 +0.354716018070683,0.5049895819825578 +0.04794340029955835,0.42663899179002696 +0.3227411577994052,0.5045195780713237 +0.4739511156191263,0.12029611231433945 +0.4011896267781896,0.31620576198755246 +0.4381518187181389,0.18541922074531336 +0.6719093250075413,0.6366998140388602 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.81_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.81_size_100.csv new file mode 100644 index 0000000000..5e7ea12bf1 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.81_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7924057073920041,0.9739825963174586 +0.46865445474982315,0.1218177892719371 +0.9842895046972697,0.9424356932882607 +0.8260675701075909,0.9209993761810813 +0.7387722311052081,0.36464313507848134 +0.5229432055296821,0.41653545232493905 +0.7453010400322514,0.7982154206122951 +0.3265393337526269,0.39585072176018615 +0.6909249508091568,0.7385888385742294 +0.5468684821606539,0.8106120927085987 +0.38982103821947334,0.6916870001750067 +0.4980901267396728,0.1392844274928134 +0.25609965843761207,0.19275267160744752 +0.3646159535916538,0.1757293915700247 +0.36838915782942794,0.3913737723212799 +0.9574488470212446,0.9531825816480288 +0.37791273066215003,0.3997505032205851 +0.19800127179772092,0.133291155723888 +0.9622170677736521,0.923855428921379 +0.8707087539866409,0.5458653059953766 +0.9371617013575537,0.9110818071902634 +0.1866572984537581,0.37390190332818396 +0.5571750419766259,0.6215894576753801 +0.8796023962227913,0.9260693598206506 +0.4218190912068642,0.3692016855856433 +0.5212754947011651,0.24834120603282528 +0.5567699599477537,0.38760728079337564 +0.8687536446216093,0.8021678923583513 +0.09716581651143225,0.22468494992442561 +0.15735472975258757,0.14908280912166838 +0.5976450950215223,0.5264355204689068 +0.32707869889187824,0.3293568013789551 +0.5387928077608515,0.6500234376883458 +0.6725965668785426,0.7114169749496198 +0.4854303797049938,0.29063952765932566 +0.45403266841269885,0.6784936967855819 +0.5381995274072461,0.6072391744149161 +0.22834023444035578,0.6783957093258811 +0.9300274515043617,0.9890344401966562 +0.5048612082247842,0.31282428780135685 +0.30654202691746146,0.42653173533984146 +0.6098872854458859,0.6325036084660924 +0.009543713727844905,0.0023503684441598116 +0.670231992076744,0.6539431533091977 +0.3411924369877519,0.5929834130405627 +0.2932954355732912,0.5031465197297971 +0.3585152296925105,0.3627489239202886 +0.4025289982820367,0.2818576339223069 +0.7544921769207122,0.6510436836589122 +0.5251880237781301,0.6960334921834329 +0.3538138715956872,0.5538149274252276 +0.1201256311127133,0.22525204419058126 +0.801814075155528,0.6503082614021835 +0.009839456949679248,0.09810132350820255 +0.8652420313329398,0.5680954030585365 +0.7936139267343536,0.8509107396252665 +0.7522121565766045,0.9343946348583999 +0.5772677409081501,0.19653157086740242 +0.14211311325289416,0.15794220813683274 +0.853046066774389,0.7884728539333914 +0.07144913370496231,0.3188363441020582 +0.7838226578997212,0.6365888594384022 +0.715027359926953,0.3292477739106215 +0.4953230422405115,0.48953986743688194 +0.22656732293561727,0.37826806241572963 +0.4170060310352727,0.3756973763748618 +0.7060016005344197,0.22992271261045694 +0.2002940549621539,0.5126224154352647 +0.7754367713358381,0.37095073496555 +0.3058198959657309,0.6680621073916987 +0.5252168292936176,0.6709931865311963 +0.11308520141242634,0.12110811637715291 +0.9667807137180724,0.9613706142279217 +0.8681876572641996,0.7250481189702893 +0.37497019274642085,0.32127044356371137 +0.9844869628353013,0.9182231007250328 +0.14714600985398613,0.1691050701858603 +0.6713220062952214,0.6249998632813697 +0.9114712912268077,0.8998462669301013 +0.3692441896799151,0.42245049463257117 +0.3587670198575732,0.4314891228477149 +0.13144144523360773,0.2831056626197986 +0.7237920489044797,0.8222490092026792 +0.21347616594586166,0.40302531572491707 +0.03395681480583912,0.0025857496410151004 +0.6521445932057605,0.6253900626050011 +0.2415078527871078,0.3674032058031026 +0.31434314888765946,0.1945758305543836 +0.7083492386426964,0.9392238847430365 +0.5099100786548234,0.2525657788370623 +0.6239173547963295,0.3236157214921964 +0.5177953347064741,0.30152535314337775 +0.38674585714732534,0.8842526766798441 +0.9741226436988881,0.9583398946984055 +0.4105258037905133,0.8456187139453561 +0.37974129589360084,0.2610476539575865 +0.6800656843431357,0.3039349914106354 +0.5371864329375216,0.8422892568936015 +0.5228812884251081,0.9303391051670372 +0.5537026350754354,0.31670216748191726 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.82_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.82_size_100.csv new file mode 100644 index 0000000000..f245578383 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.82_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6714275089829971,0.5218803452186035 +0.3410816610428712,0.38464395530784556 +0.30516004673107655,0.7997053769933904 +0.628225851198776,0.5051596971248128 +0.3004405210334712,0.16744165936761485 +0.17548686323010704,0.2822098520209073 +0.5941176745249385,0.7406716825905215 +0.6823039844358136,0.6238329777556453 +0.2957522319153413,0.42028800663387017 +0.13052379926868696,0.1699133918952599 +0.772545777240186,0.863456043156076 +0.4772391422389558,0.29799948378981217 +0.3420030432719493,0.5565844350965483 +0.4309147084138629,0.6479833592633921 +0.8506465805310577,0.7422968686351675 +0.32514341776843436,0.0749253214430955 +0.5887474792318907,0.6025658890285044 +0.9719748522912873,0.9744378938377555 +0.49698777881742573,0.2536233015489622 +0.20798548332633293,0.45462554221086937 +0.08699998883812476,0.04721677716230244 +0.8802882167252098,0.9771120461326426 +0.5002864953387097,0.3460123242095585 +0.8515905766236669,0.7407926903373314 +0.2900679676705855,0.17083439356287256 +0.2364856218484564,0.2673156672148237 +0.3273421109975494,0.11107069240318218 +0.9591581678860839,0.9804277867972592 +0.7837359598911589,0.8611632523992125 +0.02307352004879748,0.07244349973898978 +0.8842202615899426,0.8431631731929432 +0.2475166957311289,0.2561393356077322 +0.14919053860465475,0.16526368159753452 +0.5806798828660843,0.28176615855411424 +0.22646149030593837,0.3536299551406558 +0.8533192707272388,0.8265856188962484 +0.5701229772067163,0.757628118148425 +0.3849318346099325,0.4978128483408362 +0.541982246780896,0.24625437176521103 +0.5450605228106014,0.20151896096570987 +0.021748841302725697,0.012213388024959915 +0.9774975184900925,0.7255458273484789 +0.22355227297097213,0.3683669059988042 +0.09064457689119143,0.003658948344044677 +0.34959212605950385,0.7616534631675146 +0.5097968138024257,0.20599463149673158 +0.29030725573500715,0.4909768008025717 +0.11437384495845448,0.18349241865431415 +0.0666191211018966,0.07634409455455804 +0.6804781978768821,0.557179836442293 +0.012900702968805522,0.005724356849952816 +0.8605282796725335,0.8650067221042738 +0.8843240086412165,0.8837122193908352 +0.024553532348806528,0.03435081508912036 +0.6729876877635594,0.7925926094977029 +0.11954230997335713,0.15579565179388688 +0.30758996391968974,0.17493867778980604 +0.3949524959524212,0.7268329161149014 +0.23574211640081522,0.49365602399196945 +0.3546879569135851,0.6287752529200156 +0.35575099113082365,0.4713471032237402 +0.8480351739346665,0.9017085298057583 +0.41442799689343435,0.2491594765989386 +0.3276809512477673,0.16122368149420624 +0.9045242028963429,0.8143944968982558 +0.8266255017411861,0.5299852355005167 +0.2000107178828719,0.04415201579105049 +0.020008418623609914,0.036712848710071466 +0.6088145921800542,0.5104094603038356 +0.49016753084984,0.32039229863779095 +0.7104470541024047,0.28891333056340407 +0.28608515492810793,0.32795901220655577 +0.2069271406419585,0.26353884276800943 +0.43004749145742793,0.45247925084881885 +0.6152059833455613,0.6540782895886355 +0.0026486980846895936,0.0038933427858793834 +0.3960641490017258,0.09446419223645391 +0.37511782060820165,0.4020816727971197 +0.9135918193230732,0.7075334929027135 +0.9701178341009591,0.8467712971591026 +0.5819212266076299,0.5813607834264564 +0.6078221924343973,0.7548846652324375 +0.9924353537965973,0.9789587438635523 +0.6441548845647727,0.6080394323800068 +0.9814779098167195,0.8388986731688779 +0.44798584654604245,0.28922305916438973 +0.5965034627543514,0.6665744446479326 +0.4051003890526954,0.48097813243573906 +0.13717617558398454,0.6837298406145267 +0.9507672295894262,0.96366086561173 +0.3786784679977412,0.5943195376526196 +0.7780680838239379,0.8772431100852012 +0.07028113002397463,0.24455221693511653 +0.6108025727947534,0.659856110200696 +0.040646182873018355,0.06740514027513783 +0.3455145675225415,0.5460012927124767 +0.8835044355172401,0.7530853897571929 +0.3998622402450551,0.30885631674020675 +0.7269619385894692,0.49447331178609094 +0.5756160828351704,0.2778847641188803 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.83_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.83_size_100.csv new file mode 100644 index 0000000000..9b7de7c249 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.83_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.1275845089530337,0.4124024092844808 +0.6904203286537559,0.5118117183142734 +0.22057807881993197,0.08716073861214219 +0.5234388114513141,0.7913107507656906 +0.7550999273887843,0.608339117090102 +0.8405295099798848,0.6865048249560481 +0.9737399044612939,0.8474388072899568 +0.024513866151095076,0.04594333980592952 +0.0980520807660426,0.028490118394741026 +0.8680498273000524,0.9814805918044919 +0.828975580995887,0.722839002729468 +0.9807340807973306,0.8770005006396406 +0.993488328105994,0.9946309169577396 +0.6199354491257753,0.8450378686686982 +0.008144543680599359,0.06719146098357376 +0.8281611978372228,0.6244367826239735 +0.29517810430118807,0.3017568578412839 +0.7967596493088273,0.8139756317569544 +0.8064846300433256,0.6484661650468767 +0.4438838331474262,0.17446711364194134 +0.3320276888954291,0.42324744941918724 +0.8634586582577395,0.8524611788749923 +0.7459570632709617,0.9010774542622393 +0.5039001836235798,0.4300720798909401 +0.9813851563205321,0.8329358082730324 +0.2073611039237237,0.206891881051607 +0.22178484498143414,0.09836566475859149 +0.054526876157096726,0.06529464571525911 +0.7630438852487906,0.928652130256381 +0.8655459190482274,0.6480812590776616 +0.5601947882722549,0.5116824018978552 +0.7818787208677342,0.8367242371923792 +0.29241042456948596,0.335673932430175 +0.47039277249582845,0.6369290110037311 +0.645598428217388,0.7865670608699618 +0.2218069568949339,0.38159409951812995 +0.15137524271056352,0.20917546479382992 +0.43199480890523523,0.39281696042488756 +0.9336028499090915,0.6507838534922118 +0.17947016981695918,0.3302579289641989 +0.7743779620348441,0.6887770371076798 +0.38159779264696936,0.3742665679160372 +0.8412652450961322,0.9604996485638491 +0.563378623276097,0.6129509104284848 +0.9080602650428506,0.7869038465112169 +0.5001718472626168,0.29941285396124806 +0.8224391964047452,0.8407833036913193 +0.8863553944707745,0.7633916318494978 +0.8704233743886023,0.7248004206929362 +0.542308651453268,0.842957266613582 +0.4758256373563856,0.2554365235011964 +0.5605338754590655,0.22654139410277713 +0.8044273409188514,0.9814500552040418 +0.9680944122726104,0.9534556801826486 +0.19403914822717172,0.2762569073062402 +0.03369769368449005,0.03631021074484303 +0.7703806864510375,0.689594798684566 +0.09621320474515899,0.2916006551764887 +0.3903370165082797,0.7569983479444848 +0.29785162525625064,0.27972688163752285 +0.5457644733918641,0.3047686346222762 +0.15235889044787987,0.08488490397221427 +0.6372474948569783,0.43100578918408666 +0.537314483648602,0.44910190295567676 +0.3204365980154188,0.6262502654797646 +0.5122494611749765,0.3457235271442199 +0.38580586281957896,0.11417136748613382 +0.6495833956978466,0.6094168253392457 +0.9356196916691848,0.9298358114198273 +0.9613963799438938,0.9448036288236011 +0.7917046895778106,0.608169370908389 +0.4601331315477335,0.6744043820074014 +0.5347732414000567,0.6050432547291229 +0.2870592227375752,0.4686668361091071 +0.10356220228368146,0.048303088297577734 +0.9272418688368833,0.8138967226778602 +0.574435001664482,0.7923510427682727 +0.9382850068460019,0.8963411265678425 +0.438477818281925,0.5671419754184482 +0.4511755387156142,0.37991810525079794 +0.9104846382506895,0.8349756221657431 +0.47720814336068773,0.385744479545584 +0.12000216298453154,0.10594918189759933 +0.4403888105280549,0.20437151570931283 +0.5089147805817192,0.3406474609404988 +0.31597900258504974,0.09700493853626585 +0.078677167672977,0.1837997912362705 +0.13068339114532534,0.18086465360140846 +0.4026487450118551,0.2104554757297099 +0.0975876644277674,0.3381392533813422 +0.2241014139243791,0.22328406959544927 +0.7454326594982188,0.6823576769911361 +0.27345102396282694,0.022090962029034877 +0.9782849445211887,0.990028070521854 +0.16981593464009137,0.44505857936350035 +0.6862628914106681,0.37303389064840653 +0.35478486188074554,0.7347367689430762 +0.837048037486818,0.8540604248946105 +0.8971095577796377,0.7403017554523699 +0.8966530880160426,0.9184177253588085 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.84_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.84_size_100.csv new file mode 100644 index 0000000000..ccb5dd17b0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.84_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9290582918666064,0.817338202219349 +0.30858444572863253,0.3446265069591513 +0.43764710336171675,0.31870778442015096 +0.9137897864249216,0.8502943864943086 +0.5042540252611887,0.48190379409758194 +0.20689098045882454,0.17186485317688183 +0.3503699777526445,0.12323468828866707 +0.37539203237218666,0.37077022627945855 +0.8388752548672178,0.6453328616309713 +0.10775196533306275,0.3898336185153023 +0.23177151907206983,0.6400100089329344 +0.1642151884757715,0.17992467976194998 +0.008143507155445762,0.005639513063863955 +0.7626707004631555,0.7908907239079028 +0.3204445073048482,0.06072245720563213 +0.34106634454960894,0.3308266986250584 +0.8642685368060131,0.8005625037678457 +0.3270809636564153,0.49611123945325025 +0.3056238074751775,0.4418493548022156 +0.4531796903303915,0.7628891004196583 +0.5997390314717208,0.34638729511188127 +0.8870520583525069,0.9657570623624265 +0.5433010221288929,0.4809270176938189 +0.8048161235361151,0.756292297128689 +0.6818267157591684,0.5123883931283074 +0.12547425921274002,0.279284518112629 +0.33250245332181827,0.3196577912575872 +0.31379240231096456,0.43020473840938334 +0.8569349963669914,0.7440622203962179 +0.25678329180497966,0.11904080307404719 +0.47894887295002087,0.5562948838725063 +0.7567246075637906,0.8536286475324706 +0.7475070825142361,0.7428491385944594 +0.04979599383001354,0.13006029388869195 +0.9908985004711641,0.9316381416599415 +0.2754022145278159,0.29617244128492703 +0.505525304767058,0.21732703770537792 +0.3855437035629098,0.39373005854538434 +0.1706277061912559,0.2977120205566246 +0.6336233718869093,0.4722431568735203 +0.03861852560933021,0.06410409735110856 +0.8779768952950253,0.9204797337053947 +0.9950744415424517,0.9174247769826669 +0.3541698458281086,0.6086970929185902 +0.45003715271015743,0.6107681968383236 +0.2555954812885415,0.5725999438324879 +0.9126520841836063,0.8388168990911358 +0.7627547353167747,0.33926975721792063 +0.4814539189597169,0.49977129191415176 +0.697315704675287,0.8205138069787687 +0.3052682111129251,0.5924011511146868 +0.5580429778840786,0.6114380935037084 +0.926031546001673,0.8134284751627936 +0.09031106228170688,0.19823633917729006 +0.7565894625020592,0.8557148602093835 +0.03373601029915574,0.02728141234331455 +0.7441627543535234,0.2670071094986472 +0.5928674442322458,0.652057228674293 +0.5255492348261823,0.4302344970838813 +0.8243039173188644,0.7121066149990048 +0.42019416471963433,0.08373911146724283 +0.6911918996891536,0.41071368403048103 +0.5736318370619823,0.5675111165305631 +0.3075328319252436,0.58573016883045 +0.7717200322255362,0.9359946745399472 +0.8535198807417745,0.7844327349598496 +0.18459767774825103,0.4470389456426406 +0.4549684770505139,0.40280810952398016 +0.2890991328610073,0.463725568804772 +0.415273969130606,0.29598966557515993 +0.03746639463788792,0.1737336281960687 +0.012752764452367393,0.012004596109354504 +0.21002612373035134,0.3895675280348078 +0.08705041474736419,0.227156892086333 +0.42714587509192614,0.43157713106374607 +0.030506858916437563,0.1105995138583391 +0.689103250249835,0.6054276896406939 +0.14686738799172405,0.332886223818691 +0.9409317173440848,0.8360120480336946 +0.01104219238515125,0.0018268977257430707 +0.8349596097027983,0.6477569498147195 +0.9426272851986498,0.8855980272011275 +0.6198172078256164,0.09084328508161132 +0.22283622238487344,0.055127324274575784 +0.19519056903094473,0.009337716186277711 +0.41023241721088144,0.16811838813549768 +0.818438207839763,0.9020141347252544 +0.7543051665621339,0.8481674020413161 +0.7192939799498461,0.852007511008736 +0.08981210228844927,0.05536212971692844 +0.4130790734001468,0.7651401854010336 +0.4405847171357926,0.5109051511618224 +0.7502383874359773,0.8738590865985894 +0.5221249945275653,0.555482865849902 +0.7774286929737144,0.4277164041015994 +0.4885869942622848,0.3282300986238731 +0.6561201533893161,0.3173870385895721 +0.2601708499312737,0.42303740993179806 +0.005319174701330143,0.007138744094276894 +0.2536064800394735,0.25715373694937393 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.85_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.85_size_100.csv new file mode 100644 index 0000000000..9f7b0db2fd --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.85_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8153948377322959,0.9359120268772347 +0.4456537219824185,0.8321777232886023 +0.3571433424635809,0.25917807560911044 +0.18932892758327735,0.047632588126375885 +0.19439718028431818,0.13421855157990076 +0.36019986896077427,0.5520152090313564 +0.261931390633775,0.23767513252894418 +0.2643624873820988,0.2998265423048395 +0.9256393043057566,0.8852068979024255 +0.4300198328927842,0.4384621269978421 +0.4286034220406776,0.5273179419392221 +0.6402419487246802,0.9020996989713359 +0.3490653585339708,0.5218687058208441 +0.20476637843593892,0.11697181661392664 +0.30894527719499276,0.3115852709972402 +0.9867695937307787,0.8515839313607233 +0.16568278070179976,0.14320542660797164 +0.1031611441728345,0.22337813144973484 +0.5946186892728972,0.4903075952064313 +0.8087491255868406,0.7097705132581469 +0.26837791549127404,0.5327147313995704 +0.9701409112933455,0.9571710333223389 +0.09497426336333792,0.1643974788043568 +0.49602880261869475,0.412195784533408 +0.233147900124981,0.0897473660131376 +0.23751427812746523,0.1614979601502518 +0.8531936927847847,0.8400261428130064 +0.4964338587264432,0.5300991813877157 +0.5892017016768539,0.40873001319957347 +0.5260523232777624,0.46951469324529127 +0.24943705839281255,0.14291299799940743 +0.48700240172263953,0.16512263624889312 +0.4123779327503807,0.5121291669877936 +0.4960810402046204,0.6157264946533849 +0.9484255386300693,0.9662093899711492 +0.3390822580444782,0.34257372169857303 +0.3663479435343666,0.7026406213993668 +0.4580169515112086,0.8095611883039868 +0.7906465259658865,0.6188676797621675 +0.1676624768819439,0.12233180832315932 +0.13450246605052335,0.13392098117633128 +0.9106544742473631,0.9021496848700451 +0.28557557721450066,0.11496287618150347 +0.5033810392406877,0.5458506283424749 +0.7168400811571667,0.5423455041008565 +0.31050796555201055,0.18602717645419303 +0.4552188931300256,0.42098278770023234 +0.78580490481221,0.7479568675207215 +0.0895071907893098,0.2124015137566473 +0.9355114840540982,0.9163596938925822 +0.8135363778015972,0.5480917786795482 +0.32647213234858247,0.3510512864604791 +0.2228623631719741,0.38328981411526575 +0.9203882388211724,0.9145293334082543 +0.5966273104988595,0.6095280265909484 +0.543232016221824,0.4984422179332742 +0.5144381903304537,0.115260416982918 +0.10402914746574332,0.32459572702180745 +0.4677587194771309,0.6795387055344907 +0.3146292573387981,0.1663987173175458 +0.934275053774805,0.9608188660184972 +0.9161688300980573,0.9529314654455585 +0.242153846117101,0.09128825904611149 +0.04828077015197785,0.024740498730785376 +0.5094353989993562,0.3856584084591001 +0.7705361456477271,0.7382066087642105 +0.26736838161001125,0.33421195869660725 +0.1778682234262935,0.24602684197296393 +0.5491605332365669,0.38421154460576135 +0.8990681501489914,0.8012479486386772 +0.5276754288161964,0.2523645782774506 +0.29697984914611364,0.254408355219404 +0.38313053217674076,0.7743393964016991 +0.3082458230449405,0.18011420737673534 +0.4596287847257676,0.6864270635657868 +0.3080832600629535,0.31626326239259095 +0.6233837038201157,0.6342252098514731 +0.7061707314074397,0.6451207211469537 +0.1614546134984951,0.08402400996974613 +0.35239928106035956,0.7652123191195779 +0.09448262834190951,0.13807335985475921 +0.37164389007103094,0.460058849341633 +0.8777796282136701,0.7385934138490363 +0.4467508708329977,0.8157846438736411 +0.6103136736865098,0.6576934530043174 +0.23990095168662928,0.6304628354570869 +0.737689736339686,0.7331582982135372 +0.9490437629254699,0.9678582187746587 +0.1487071552990506,0.42043718999330887 +0.8088409278516957,0.8569255141421275 +0.0015583556715333957,0.02038528297549308 +0.08989432072981812,0.041260327367714456 +0.234669321220715,0.07457974210628415 +0.379129835867003,0.6038229540766049 +0.4378044698821034,0.4601272061868161 +0.4054136611204592,0.6910228141169699 +0.6132458302017044,0.7310519890860298 +0.4243010084066924,0.22306558645826507 +0.27072493708658574,0.6053237639689247 +0.15839159386739898,0.03302115012554846 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.86_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.86_size_100.csv new file mode 100644 index 0000000000..b53067dad0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.86_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.595069614015713,0.8372336862697936 +0.8925452474359892,0.9406518107223575 +0.48120233457380535,0.616434163752683 +0.4809104984553164,0.4959932405940592 +0.06819692010530021,0.1692175356140166 +0.12271139441436929,0.3582834219289288 +0.14613571388091562,0.08858945207455404 +0.7015960154569076,0.5190537176695569 +0.0810303500613424,0.057303311101086496 +0.39145030716667517,0.565056794163476 +0.6411841446565911,0.9415609528325859 +0.3036608228520655,0.6998797444744742 +0.0752777117909823,0.0763720810515105 +0.7363973109643709,0.41737772095566145 +0.5666480872581978,0.3025026666774591 +0.2576887648437952,0.06570068033792648 +0.6947445275732117,0.8456502671770587 +0.2853876176014918,0.447675974573875 +0.41954230336206655,0.7134636258570143 +0.8522465027086309,0.6481898092242993 +0.018778982899340657,0.14767930550160846 +0.4205581584485625,0.3901551441533079 +0.8898683342121889,0.6472715706279522 +0.8942948049643475,0.9002404825870749 +0.7094701556279693,0.8065983246441124 +0.9909923684569008,0.9851345267010279 +0.5905317129613478,0.7868450974672916 +0.2702686608728744,0.31883858011892524 +0.003412676370297185,0.029675457203556688 +0.007453804522922436,0.05583898083839173 +0.41474381294019,0.22423362883329861 +0.948945545850865,0.9750250738150139 +0.45572151135682093,0.3184409633517943 +0.7903706655236655,0.9521163730035209 +0.05727801679862493,0.02967850051215143 +0.8575427559481543,0.48235766576837136 +0.20415938013444074,0.18142713972971125 +0.9778921176710671,0.8900978376570308 +0.8371387985372991,0.8680691356817591 +0.08804241777439836,0.3045575911881051 +0.6506224616953592,0.66187984655438 +0.4276916240553592,0.5102519818788379 +0.11492571088081632,0.07054656668239889 +0.12467350649772635,0.09648239456818336 +0.69872699668033,0.9306118237888081 +0.6535795827446416,0.27558396182570777 +0.6435089369990812,0.5990856920718025 +0.2584450036046891,0.6109870061581074 +0.9529052620776426,0.7834066883540637 +0.8555094100088654,0.8954046236782363 +0.09559143818079263,0.05971044564473582 +0.26508308326657515,0.07413547495010742 +0.6222318775436294,0.7922924493494428 +0.16766206420534452,0.09323122050702048 +0.42230346925199147,0.5215114334881678 +0.6089770286329295,0.8368000270600959 +0.9543564876573625,0.9043460787267581 +0.11786255787301925,0.24104658782443883 +0.7464339769896712,0.6671948352369849 +0.27342523526429113,0.4328288973837281 +0.9176081662915972,0.9838996168503082 +0.04995402877416644,0.11022201090271982 +0.9782502165816267,0.9859856137681938 +0.6361828199995513,0.5541779351129984 +0.29854765136785655,0.1120907195275549 +0.730991472840198,0.6804290651534803 +0.9545702419313812,0.9257908724077294 +0.572064602721974,0.786917083830142 +0.024819032705201582,0.15299971367557996 +0.8927502201750563,0.9339598362450174 +0.08020338944141903,0.2738700749144687 +0.9543090900815718,0.9659860329531444 +0.6033345896869232,0.7539318673233697 +0.7983498608622174,0.8383393669810362 +0.26608476002910897,0.5546808949981249 +0.5476682857603287,0.47897788903529137 +0.5022679113258265,0.8743176271917814 +0.20692752124764846,0.1367146893653775 +0.4406774809490006,0.7118409072720747 +0.5077532417220953,0.49662509093833107 +0.12140244485748253,0.04650938601777649 +0.9356925513727173,0.7785859492558272 +0.9305048375879058,0.899902428645498 +0.10853581689780145,0.12171037374167509 +0.25489950854442034,0.16344344616470013 +0.7958949052912614,0.7716745057963945 +0.7844269440295122,0.8756640436335703 +0.5898165441394998,0.5322178179100564 +0.7074344118001701,0.637498390729786 +0.19479014715426624,0.3828501883517067 +0.10129452517161242,0.31290537573517674 +0.40554864062633456,0.3882750259061511 +0.8121309337285815,0.9140154753310767 +0.903796536549688,0.7990295584163034 +0.20314492535112993,0.2781977793482564 +0.8612018068237923,0.8825127761275126 +0.8986647410305634,0.937426110149193 +0.07118298345939467,0.04755675740249432 +0.6726573522408643,0.7983072601445489 +0.8096579220389357,0.5507408444165174 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.87_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.87_size_100.csv new file mode 100644 index 0000000000..66e7bb9bd6 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.87_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.14062265372085353,0.21130426744868902 +0.5013873946041225,0.5058675819158464 +0.9862679753755528,0.9605093803763962 +0.075284121167906,0.0596033496941592 +0.2504513632422978,0.1809584791932714 +0.8956726887789566,0.6599948685612587 +0.6886147513862224,0.8665933960167034 +0.9876810875123603,0.9911170434584435 +0.47448718287851266,0.6865650468522626 +0.015458193813030485,0.020234310904069797 +0.9151059754952151,0.795422953234509 +0.43138488973278244,0.3887720447025178 +0.1354900085807138,0.17944882037213106 +0.5960557791898313,0.5911921765853911 +0.5152451115196843,0.7107761268640252 +0.8122255917952405,0.9034228476509436 +0.6617978489456907,0.9069726969520036 +0.6528665622660219,0.7173337010327466 +0.6115990068796052,0.877569850231948 +0.7449398236200994,0.6551412131555803 +0.7533238390745082,0.636163926825497 +0.7685252110817787,0.3698193095494814 +0.5757448162778569,0.7907347301199698 +0.7289697353493599,0.5940528027921873 +0.07591705255150438,0.029523518655511227 +0.8718434342439196,0.9800449124975594 +0.8269424697054691,0.7980940930734439 +0.02595894016380418,0.1496789870999809 +0.27153851873028534,0.35910888869965085 +0.5990231753503934,0.49728389242319554 +0.37169061165433814,0.2583572899288465 +0.8740512807670692,0.855591688037526 +0.08283450187359309,0.10514465707567217 +0.016024990505735914,0.020824323380639942 +0.28462869512580746,0.10740272128976186 +0.504205766181727,0.5000460635550982 +0.309693059147508,0.11375739861830153 +0.12344986681768882,0.06646833071239311 +0.32583523127294,0.5717729101334441 +0.4580934518310674,0.554995162168743 +0.6469059974977098,0.6224201196284129 +0.4304271929776009,0.3492046629094443 +0.8810451129550514,0.8258873175410666 +0.34315734997575353,0.45390158219686083 +0.9459022457952293,0.9188287341352297 +0.3566234008152087,0.3960229143894584 +0.2979161336650765,0.21794502448469183 +0.22134333599040756,0.03690124300295572 +0.32231784844939304,0.4911400638880164 +0.499407118975575,0.8180585150264188 +0.7810346127853551,0.7411615872302567 +0.7471240168912784,0.9086219402339926 +0.5975816805380543,0.7323728066881079 +0.3938199339447487,0.7270153230793103 +0.5908031448380224,0.5338024622131856 +0.3090255696656856,0.4376111537399786 +0.9984481726629677,0.9951512949244878 +0.8529273696878675,0.87839779085802 +0.642283398512844,0.41874936293805143 +0.2163807525830711,0.3953550283509503 +0.9792406281303246,0.9652160972039983 +0.6042618215579016,0.7979755104491395 +0.7583236159820976,0.7635497403949981 +0.8055088643472336,0.6972770420162016 +0.5218527194542633,0.47629358344918 +0.5577500415147313,0.5848512645003473 +0.8410597333301952,0.8622561781876575 +0.8369001303147435,0.8252315910786014 +0.03696459192884716,0.05151690405677978 +0.9527443035986619,0.8399815236383837 +0.4628323813751509,0.867619499047124 +0.5114120628052334,0.639949252777648 +0.5501742651856953,0.639064516042105 +0.527607913686792,0.4309989248710272 +0.3164488542694691,0.09716284394646718 +0.5461432654370887,0.615132214127748 +0.29022858769715654,0.5134515525712238 +0.3706022028699366,0.2525189435137591 +0.7482484027044669,0.5410343304619737 +0.3262312859937237,0.2608011059417842 +0.9785854069285489,0.9472716595689095 +0.819895442405959,0.9907336403877867 +0.37641403552927133,0.2629671473879559 +0.8805711262148195,0.6857375699526118 +0.7529447670145739,0.7717099889878296 +0.5510932819816576,0.1854105069693825 +0.7960437439740677,0.864740336368309 +0.7790911256079973,0.6225705544453534 +0.6995425371681061,0.7677325490743321 +0.7541487688479653,0.523900710136751 +0.58301585344275,0.14402258233864457 +0.9985531281312958,0.9910826903191344 +0.33112705852466495,0.5244023016459061 +0.136517410499697,0.12160101555928154 +0.7270760888705496,0.38686458357902054 +0.35345920064343794,0.24040464170899895 +0.9700770942200934,0.9357905051514188 +0.7223219977437859,0.798004130694959 +0.045797422621020156,0.02330813337132076 +0.007154262827481994,0.0007074622659282714 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.88_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.88_size_100.csv new file mode 100644 index 0000000000..596e785607 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.88_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8518153454910236,0.7253072719646672 +0.6183422600413431,0.6550328420417935 +0.7922769597826056,0.8214255911344646 +0.5255345086259171,0.3865606564039317 +0.13623180738833573,0.17712537814556156 +0.1825188886463761,0.3429001676655246 +0.6794718696269908,0.5699784582568614 +0.5006411887263394,0.3715585402950048 +0.7168349068773294,0.6419376596062558 +0.001351409792770486,0.002605320782990861 +0.13758320399756113,0.2703203623757799 +0.4918605279308975,0.2646894009735732 +0.3612102099964444,0.13568104582084617 +0.7946355606758008,0.7799028306229345 +0.8463106435074255,0.7079287401715841 +0.33425730633482165,0.12637947953484102 +0.30380671104428175,0.562487704326339 +0.23338650753499712,0.10857142402171543 +0.46511308368957915,0.3050794205531449 +0.8200830045961046,0.934351871526528 +0.01764720404324549,0.03495699925348317 +0.17997955097899115,0.08641556383914561 +0.37692050060069626,0.7907831251993472 +0.3075877330542974,0.50955814048486 +0.9086582277035888,0.8949438235577729 +0.768008638455929,0.8620847571361436 +0.08334725024934952,0.17269668305316516 +0.09568040253014337,0.1939365585560064 +0.06677716694202707,0.10791139256270288 +0.42561084268539395,0.18724311923782994 +0.5320957426982331,0.5768142540903383 +0.32685080949778134,0.32944579759167936 +0.03861237418655683,0.10711986792692402 +0.7243489086514686,0.3795614445892287 +0.6202976995062732,0.4403831773800199 +0.7972083624810256,0.9098186840003057 +0.26616543900147793,0.09968427433582622 +0.1453820887340635,0.1854829275961989 +0.06453466774835259,0.04376950554938697 +0.7896046611039185,0.5819881329442081 +0.6010205278896523,0.6099827542840763 +0.09099324665684855,0.23570313924970937 +0.6583001353654853,0.806472288983307 +0.4942382965562475,0.5377509266263011 +0.43625582610820446,0.5291046276215672 +0.9683954370984394,0.9951471359934713 +0.4268556002172139,0.4594393316288029 +0.5618039745014942,0.3710339836068537 +0.08959309776805208,0.09266179225317012 +0.9867395884958772,0.9774396777289069 +0.6242641484788942,0.5677443020288052 +0.8573991124339014,0.6663519645982277 +0.14030096410933907,0.5937622045610084 +0.8079811789596887,0.8562182721308167 +0.6114659323153472,0.5896489848282258 +0.4825123979488002,0.6146187297077352 +0.547043192667895,0.7406760881744385 +0.4095006057570968,0.592582522522191 +0.9303744906226366,0.9025092917354844 +0.9117044375274428,0.8998348891171633 +0.9935760072351212,0.9875968607039216 +0.21542110963362865,0.37105936778977466 +0.9472904084086283,0.872487944072491 +0.10731819967225653,0.2450257157694471 +0.2595343465946498,0.3293369706355692 +0.42261051671839545,0.7640893172323969 +0.9925852510186602,0.9865234011973933 +0.6334621754647309,0.8679663046339139 +0.006461602488409213,0.000541457708567894 +0.14479584221525804,0.47309861401774533 +0.14061096094513903,0.572534489521468 +0.4478908379980927,0.3320376172320255 +0.3873230489233902,0.37469099494992064 +0.5126829656745446,0.5898970205289017 +0.6724959694660895,0.19803634195470465 +0.6965749066361206,0.5893030964176266 +0.9589114998217457,0.9451072057841383 +0.28579290501930565,0.5054000601768136 +0.10605940852667273,0.30504544756377744 +0.2942302335776874,0.3979767033799335 +0.6044986868942392,0.5796779950172692 +0.06136956918531328,0.06735932163007158 +0.042429027557709276,0.004998003291317055 +0.9128368663637763,0.8571427070981 +0.7626066057663433,0.837655399231964 +0.627266261690362,0.5832720306026699 +0.4895204728289849,0.48313580354929925 +0.5996295661273054,0.29810654887539334 +0.9503292394256284,0.9818920372950832 +0.5088417961679879,0.6465009906106989 +0.07553509600606634,0.013469293923450976 +0.2630218325440532,0.33052228043507376 +0.7750495954987999,0.8224771954831342 +0.18802968905130574,0.2623805977747916 +0.16624193121254993,0.45216943863512704 +0.07746837934290507,0.07063799636236512 +0.03639937201199639,0.029722293132749877 +0.6313723469561097,0.44784100582269065 +0.7820414013303778,0.9685011954686538 +0.3312202535425799,0.10578713594343142 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.89_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.89_size_100.csv new file mode 100644 index 0000000000..07db19b9ec --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.89_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.23307316943390594,0.2698452585001744 +0.6611182154662116,0.44293007489661246 +0.29662438895548765,0.2919937987157603 +0.9642820934711319,0.9608195467874883 +0.2558653540154211,0.34857131944214925 +0.693770338703583,0.7656884856491672 +0.9179338131193625,0.7076048067594877 +0.004811258577260058,0.010233074896805305 +0.6891444106938459,0.9566167794169722 +0.672881414079635,0.7719237631947009 +0.957745488816509,0.9891962977455613 +0.18871608070287554,0.17531868780533721 +0.5087570065245939,0.5035139894271934 +0.9417459789385654,0.9517030725781683 +0.7691261671275682,0.8500399029866634 +0.5777061515926628,0.7215739097189777 +0.8191032910143249,0.6428398406972556 +0.2248532034305763,0.0886326358822564 +0.5707798613910803,0.7946355856294096 +0.08008758156019613,0.12146292370914125 +0.3261665087270975,0.1730208153795374 +0.18071487629695931,0.11765740555786336 +0.13270367476025535,0.33336142340281244 +0.5668347802316359,0.5741370115221816 +0.05005657324699109,0.08984239675287004 +0.9665261215772685,0.9041496193237972 +0.42098374238046565,0.23641350050461402 +0.8150218835390949,0.779199312248275 +0.6936936075202246,0.5050355254889649 +0.7558124137464148,0.5635907363246238 +0.13320067641465327,0.08950492066150689 +0.9920559462553658,0.9736618953517935 +0.12376480589819311,0.02220198591265654 +0.1582505994602259,0.20735769978378987 +0.1854788081526108,0.1765662091680505 +0.5748548230075696,0.4443570127784726 +0.46203462680633434,0.5610195099538533 +0.6380749660611603,0.45747066225835076 +0.27921109093498925,0.4072947604266373 +0.8201949151179356,0.7886881515232858 +0.8673091121982323,0.8128193093477263 +0.2697559548751079,0.6415201360832303 +0.5248788268012587,0.38141737152090854 +0.768455996867756,0.8818160283349499 +0.5144843571973855,0.4837285040694917 +0.6659183097890278,0.5607468188977327 +0.025530722733646538,0.021135102974094155 +0.8825696178258537,0.8054478781091058 +0.04953392855903416,0.01837167467492118 +0.26461868295329527,0.2275590886030091 +0.9382275321695364,0.679652216519438 +0.4265640125504262,0.416701862404985 +0.014576839350909476,0.04927213408332609 +0.12188027234509002,0.12871670742652846 +0.55860861429359,0.6653921729260465 +0.08940209521530196,0.3890040870370175 +0.8626672961917526,0.5432905446051012 +0.6899645781465964,0.7886529977286086 +0.1594741372314395,0.3918064678041681 +0.048705204997854246,0.011414148898229337 +0.7968464935781131,0.858435579721252 +0.08103575570082333,0.0853734683470469 +0.1392675977681836,0.232050540663148 +0.012552836440519077,0.03554245137391521 +0.7816950307040251,0.6734415597076966 +0.18548811972292895,0.190996753871503 +0.8501608576665356,0.7544350439853214 +0.5677003188404461,0.5473815209582252 +0.7276972826677418,0.7004309210802665 +0.7622839246529387,0.9083128461369153 +0.24228562802260412,0.09923209284319945 +0.6091565355422438,0.35748041346302156 +0.9000505463578361,0.984430498175497 +0.916175138267241,0.8991827614741532 +0.7119174177595642,0.6278565513242285 +0.8445677022454205,0.9341414514261782 +0.4810136573448043,0.3332467329642065 +0.3547657163426112,0.11740115662436629 +0.32770722751325243,0.36017962985709484 +0.9737370277324665,0.981522909076505 +0.8248576244758263,0.8800431919842877 +0.3036788445235439,0.1671501030756541 +0.49767208946466723,0.4616449447883613 +0.2799556301074486,0.22153516999683953 +0.9211441439273835,0.9568226618056059 +0.3194962333368184,0.2775853456672891 +0.16680809176837286,0.18106678619117644 +0.23033354982923793,0.4283784893065645 +0.8406329822116145,0.7772920040070739 +0.07944154589890373,0.054610668377830074 +0.7789108120655546,0.6707799095332868 +0.396961031259868,0.33925667739961457 +0.48061967133147987,0.5306116452385267 +0.8596893679398225,0.758504914058271 +0.7084643289181894,0.7072611092796053 +0.702870328883549,0.6663944291494405 +0.6045460094255368,0.30233886022247614 +0.2089747656095135,0.38001297300057674 +0.09959176250349339,0.08862054912244477 +0.5409330238310174,0.42799274778735924 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.8_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.8_size_100.csv new file mode 100644 index 0000000000..8c1096d6b1 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.8_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.4876662189536075,0.3459316487824508 +0.683067500549564,0.6035146847672235 +0.11517911009151932,0.6912378372183012 +0.7999310108843792,0.7878733248048267 +0.23037429561898992,0.5123110003654998 +0.7906657408738236,0.7505799235278694 +0.001182874978551518,0.009855415457716177 +0.7501727389834842,0.804875770162542 +0.5975928833041754,0.8849673152238979 +0.8890882803651563,0.8937367527156701 +0.6613215090877624,0.5331325170738946 +0.948539524624074,0.9328302848909055 +0.6457947178786348,0.6813728799289794 +0.049090245592664394,0.05416604252891727 +0.5184178688701282,0.11956903684893355 +0.6046588742109509,0.5261041134551611 +0.7941780557894831,0.4840030138100395 +0.46520531778348795,0.47720789079364595 +0.8209990915103534,0.7196398609533581 +0.5717775832364146,0.14294150152636753 +0.049620798879366323,0.06966866527938514 +0.513242508675929,0.4411306953198939 +0.8644102935798466,0.7118888116801394 +0.49265168204039456,0.3925390138039946 +0.7829233642984479,0.47649958870956066 +0.7248397134734211,0.7570487780175081 +0.4085337283253445,0.6320625990438571 +0.0650036743177741,0.1209558906687816 +0.20582544862441754,0.2651328387049556 +0.32546017030980523,0.400402770259058 +0.1310776352500898,0.025173346265096708 +0.8184076677781762,0.2369513301479686 +0.532438042429551,0.6359341293723908 +0.45890610422385003,0.32307221302075834 +0.2764900587041348,0.3564168365433573 +0.5702309983807577,0.2594211825181657 +0.5125471555040003,0.44698790842286584 +0.7580734620426038,0.8265349105481452 +0.5861863040206028,0.2121935449228839 +0.5667952448528791,0.337627726872972 +0.5078247878569072,0.1132256881377226 +0.8082604266939171,0.3100982471859239 +0.5196585407932355,0.3828404361094488 +0.7317525413215719,0.7105692511706239 +0.7449175507641337,0.9170419312749514 +0.4952440955332261,0.5983457048987482 +0.6664346602644206,0.3631395650856676 +0.01090394019379759,0.221830978085592 +0.11714925404874654,0.11123623719247694 +0.6921045074741194,0.4571599092642791 +0.8367119994695775,0.6668824982663998 +0.5552747087258055,0.46081526289157093 +0.31986464279923243,0.46181975391524444 +0.5989762689914134,0.8429294087519301 +0.39778073388053714,0.6817880505228205 +0.3799412837507887,0.29659757020150807 +0.6088422780749747,0.5075986067415492 +0.8573321185560401,0.9242253122697126 +0.023776347118817487,0.058766736259575014 +0.06878290182031033,0.12162604077374728 +0.17487579485478655,0.28995225317346973 +0.1543620673675219,0.1260425701292513 +0.5149461876085168,0.8024704857949366 +0.3981248999460869,0.4815042724131 +0.632645889359883,0.3809507322190435 +0.9920058911395726,0.9916515804305137 +0.1117094687636796,0.10998089437448683 +0.003252112895135939,0.11043000857945529 +0.09793220430788746,0.21438515629878496 +0.4597585257097948,0.11910737669129307 +0.19723347346762926,0.11832458476186647 +0.6477702082619478,0.2933010917997247 +0.40110045824394824,0.22430811581200222 +0.7561454377289016,0.3942683888229727 +0.4683413777544907,0.5194548535831416 +0.33445557807519266,0.48733761615773136 +0.8980407801994689,0.723305845729368 +0.8429854499690768,0.7314247804577096 +0.2002286342626381,0.6593512684722532 +0.6458572413121576,0.3819856763318647 +0.7210846469636378,0.668345531334618 +0.4165909014469932,0.31456832116102545 +0.5153861341237285,0.8357625228647069 +0.04289811095786511,0.06914813477786508 +0.13666257946270655,0.07305782899253843 +0.9079559272173675,0.6614872632911951 +0.16664354473750348,0.01963451014406703 +0.07092142888838082,0.15466343709448443 +0.7839086744990491,0.7896886357272292 +0.984398711757209,0.7539283814225869 +0.79339772426071,0.859851978403745 +0.21519120880584713,0.2020536328708642 +0.12563613380304733,0.3106038747923157 +0.3199174752293097,0.6932826856233116 +0.07832618820986026,0.44712548066692726 +0.550774118460333,0.19151763580134917 +0.4762187246415933,0.598133744567291 +0.2881706886784907,0.445075816876948 +0.25400149359580093,0.6381571515556418 +0.6031449940160053,0.5204587568710258 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.91_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.91_size_100.csv new file mode 100644 index 0000000000..a2b1fabb46 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.91_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.5801226506422203,0.6961322355857285 +0.8360345337365573,0.8719669350577728 +0.44673094664855073,0.3386720138694921 +0.7948031682937202,0.9051213501494335 +0.3695498825977117,0.45364091887670877 +0.8627062148953435,0.7623186635940071 +0.43468623157004804,0.1976945580697851 +0.9276263293329379,0.9454518288756604 +0.30840866829299995,0.5873708949364933 +0.6023035222325266,0.4016424076328586 +0.9523649281629301,0.8782752121984914 +0.8069636106025967,0.9396214766586053 +0.3234295595466786,0.2580686302417202 +0.20189089657167558,0.31487927547562244 +0.2397700890109689,0.2701844720188318 +0.0662357149797641,0.06916205956987004 +0.43792942092755327,0.6964797611717105 +0.04701646512813673,0.11380465560693342 +0.3465924443282665,0.2568485097652198 +0.9417967885862368,0.9871243058100628 +0.3479044551087864,0.1308726249912333 +0.5716220988679728,0.7279488108015414 +0.26177192174626385,0.47175478016770056 +0.480807600739665,0.4313283011686046 +0.9212670734645891,0.9763198967299846 +0.3945380026632379,0.2241443916034616 +0.33971700854173503,0.4965261613603392 +0.2557363415649442,0.5084648154113143 +0.6648706955476267,0.7670053996071347 +0.8910038663125529,0.7906116805326118 +0.1870612273605231,0.14196846345753733 +0.03746835868002907,0.05112629445675204 +0.6494180516991173,0.7926517997010201 +0.17122172126573526,0.27610548715541683 +0.46405534847734675,0.6804376209762405 +0.4848635973548133,0.5029550216698102 +0.6334803712093766,0.6867788843726325 +0.34044900198496864,0.2835048963547153 +0.9055778216104093,0.7986361831010793 +0.8559181193612742,0.8939733907320973 +0.15131133926353246,0.3480422039407848 +0.800359066304247,0.7530727889439787 +0.05960582876742182,0.04172152894349618 +0.027980013787189062,0.059135374858813594 +0.7851515863933579,0.7850876701819045 +0.14404242805794276,0.2980013455244478 +0.9022775757170245,0.9358654817526209 +0.9831382791241501,0.9835734483277105 +0.08503303072646823,0.05880687229327258 +0.8764344471814116,0.8247795066134092 +0.30895962834952073,0.20715847253604008 +0.07303714170325237,0.061120567137521176 +0.23503630070977743,0.17537912942857148 +0.7074493737069948,0.7875309628571177 +0.2892421860441584,0.3897819338975735 +0.5722327560681226,0.6915481561423698 +0.11239982719482389,0.20396938137786458 +0.45225183517115375,0.3287866543514104 +0.7567079996004428,0.6882777560314753 +0.8845630396577067,0.9813314784134273 +0.6285527344258792,0.7462700754308877 +0.18770647115835903,0.42015590023416016 +0.6400443483372734,0.6978573933849979 +0.0997087579792088,0.32195625499440744 +0.4526974845854411,0.453565633692276 +0.6312222263513987,0.5873014852277889 +0.12926792247451285,0.1444662944574009 +0.13651539833359327,0.06975303843826142 +0.35520978445313367,0.36172298910441464 +0.6372567629260426,0.5807850103398782 +0.6817235069706962,0.6788097465030949 +0.8658506086405453,0.8046190727391911 +0.8548666781146117,0.858779795481939 +0.05963920198571704,0.06763105030068811 +0.4824992391817148,0.6534179918852933 +0.30661736670225015,0.2895299276389286 +0.9661125013785758,0.9792501543953683 +0.3251720557719283,0.4768762366074563 +0.031750554097666805,0.049316544038079224 +0.43820744751041085,0.5532886957890077 +0.5104559806037124,0.35737814891943054 +0.015042437816354837,0.00286760792565538 +0.3699671310037491,0.17740792505213782 +0.07436206909407539,0.3826440784997976 +0.2686128345840437,0.1671334247519708 +0.4259581578015601,0.4032586361482916 +0.14479136316851565,0.12029536764410598 +0.3133415344396817,0.33156335998800146 +0.858520876872106,0.7963657650136118 +0.13109811666740662,0.17425269879622474 +0.1338912192347405,0.1694693167888794 +0.9528075990997935,0.93303883969451 +0.8720834227862324,0.9271217788704067 +0.9409991839256389,0.9687019871651938 +0.501949168803754,0.2575538207599763 +0.37672288142759036,0.5149858589612677 +0.272241581075938,0.3181961860462488 +0.550492835157505,0.5782101917655987 +0.5757644350300446,0.6280136029382458 +0.7966923147885088,0.721433680228978 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.92_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.92_size_100.csv new file mode 100644 index 0000000000..b828374daf --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.92_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6959033042710722,0.704528257886105 +0.13435326565414568,0.23682272751306277 +0.8247166577941396,0.6877729803588857 +0.5053828038872232,0.5188110256129637 +0.20590058375818454,0.1705524616396109 +0.7495521020329325,0.6998323797288042 +0.41564661760268506,0.6457872672734797 +0.6531585706307217,0.8525969545696808 +0.5464450507818971,0.3128463511260834 +0.039828281356497075,0.0745776712470268 +0.27569794719312657,0.2673572417359683 +0.7744612219626178,0.9148767995065733 +0.6767655057977044,0.8471590547550865 +0.13235815305551735,0.4566399066234249 +0.19716519819817918,0.26447056724409324 +0.1834574500176977,0.20694032219369335 +0.9222251203183754,0.9724450808967087 +0.2712266523426875,0.5412612075797621 +0.13402204595441075,0.12144037625530374 +0.589237631220523,0.6054484227537898 +0.5595276519817852,0.6302356019192659 +0.3466236260822595,0.151629720538682 +0.41132662674769416,0.18691931483457203 +0.8397323221081767,0.7171444371585581 +0.6150672602349667,0.5308477452090687 +0.1293999459030516,0.11432216972552689 +0.07439545260243186,0.10342017433827838 +0.30992593794262446,0.49236783292209646 +0.04115395356437701,0.19821515276229867 +0.8420165118236951,0.801487684280101 +0.5424531398026378,0.7465366762992346 +0.031024722103063618,0.20451078203544504 +0.9248312162808655,0.7129520268593955 +0.48369193032793056,0.4829979884501399 +0.9036303761794772,0.8188632637009008 +0.7899858916408418,0.544713881510634 +0.5967034110435911,0.42274474208758783 +0.9616199161951242,0.8639541598605394 +0.9716506052190604,0.9542774616760871 +0.19895117686436053,0.3320914471539969 +0.5638933240020277,0.4740175208572873 +0.7857896301313736,0.53099929079223 +0.05431672025335821,0.039636126934510574 +0.3107570352528373,0.48038330698419296 +0.3582514860507763,0.3116775541979372 +0.26831766911417654,0.2327616342379793 +0.9446273355243209,0.9720683429464978 +0.883466602708316,0.8206550745819179 +0.8902746308845626,0.7671498209282549 +0.827601845014337,0.8948852257059418 +0.11748047158172448,0.2124020234006927 +0.045577408144527154,0.0314201538239105 +0.7036779862048403,0.5779891487047298 +0.8514036281061296,0.6748669164028422 +0.3897805200975609,0.19843667763233602 +0.5526717083425599,0.8470487049881789 +0.6310934972760269,0.8270565889564006 +0.2622532752804922,0.3366613595162035 +0.946415715372723,0.8514659180214245 +0.42256547345600315,0.45539957313198837 +0.656256119308343,0.5488188143310413 +0.4053840925995337,0.3075445959563596 +0.6380190019340979,0.5690904860150084 +0.3440677369266846,0.6212042372795807 +0.6038577496107381,0.8512342761471676 +0.9785722220317797,0.9663164905003849 +0.7420620857634062,0.9230134920408746 +0.701953599930178,0.6792898648013285 +0.1315880880846827,0.2785303333749938 +0.011062773262400016,0.044751779406838554 +0.5637936521064663,0.5642282809572094 +0.12439850608631042,0.1206287132104148 +0.22033135386379488,0.26193166663385115 +0.33607825005900704,0.4819743505750429 +0.5065411511366372,0.5484723888452098 +0.7804584288521736,0.7110875057933473 +0.8107246947758504,0.8451580951988662 +0.29375858989537174,0.15899495033145117 +0.8269141708232144,0.7914548375711015 +0.5346912061011919,0.4975674515297689 +0.8189895853854031,0.7776200257553213 +0.607409988405108,0.8052188192356491 +0.7636247702168832,0.5995751271072436 +0.24809117656529084,0.36665671034395864 +0.10293914824165351,0.14884007923376447 +0.9847150834403023,0.922950525799481 +0.2556668084503204,0.6923799427623042 +0.07866139283959805,0.036902450418451305 +0.5769920321248637,0.5943336157872885 +0.0033267595969550534,0.005579557445202277 +0.44228646087766366,0.43689309736272186 +0.5247357876735839,0.4960208383203025 +0.3511499200824243,0.49506085630737506 +0.673673481061057,0.44664819786601817 +0.17141813045885856,0.050724809320623676 +0.47259493570598154,0.6386407298554636 +0.7661025002739827,0.8725044967620684 +0.5876107102074689,0.5592023319148605 +0.6878978480278781,0.831687116200176 +0.11594498467597325,0.17519120292242213 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.93_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.93_size_100.csv new file mode 100644 index 0000000000..4704864e80 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.93_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.4711590049949572,0.3094976351930327 +0.3909325725745382,0.48044509102052746 +0.760955894952802,0.5000404362345486 +0.23437111893688328,0.09262648650476596 +0.4179081443313223,0.3686737019272025 +0.6274425573457703,0.6467492524674879 +0.9908769276855619,0.9889279558261381 +0.38555028001937763,0.6704343682596533 +0.624812614871265,0.45042226666747076 +0.3325981418047379,0.3954909534013599 +0.49035919018661633,0.2934712061095772 +0.8860576623235379,0.8861668741787967 +0.399288878986253,0.33174380437355117 +0.55028273373173,0.3926712453635939 +0.5863480259639119,0.5924954191079288 +0.378469260466194,0.6702481975916545 +0.7749950782251018,0.7112363390350798 +0.6708795264351575,0.3398851570138708 +0.031501053775244925,0.011235125825153902 +0.08979501114043492,0.13392854324012288 +0.4250928432421215,0.5344185284147674 +0.08398766691429155,0.10832796288882163 +0.3062373951674706,0.3637340798600443 +0.4177701361421262,0.3338385569404048 +0.8303123511680621,0.8553798611854766 +0.37057588906358263,0.06350616029348594 +0.8576902310826058,0.8409229234257085 +0.4919289731783345,0.8057976806443414 +0.9127374525246883,0.9468828162250402 +0.21704165207988912,0.09796478746981258 +0.004354552382291543,0.012486723489722795 +0.9966383155259978,0.9835417838137224 +0.38229657431325614,0.23664000800036628 +0.7893657050455583,0.8601064796612599 +0.48914201904214727,0.5811970316538623 +0.8854280033583752,0.8558698282443628 +0.5823661675027373,0.6148604992241498 +0.6916234354025248,0.8045765890345402 +0.020335860117665305,0.021818349464537923 +0.178372076248284,0.4553855893775635 +0.39416452522281364,0.5823129154435864 +0.8008672322987535,0.887996466929261 +0.7121821591339867,0.8620961463889983 +0.6704321506621251,0.19614901639161636 +0.6825102071610092,0.7525268397169018 +0.44262374465382204,0.5056976858313716 +0.5552210979881667,0.4202176105786722 +0.758472786555701,0.7873693331063424 +0.3106830641478876,0.2458766997428231 +0.5523831206340875,0.5405941122412414 +0.7271360135677506,0.5196393127482648 +0.27315607045868356,0.4969855143802066 +0.10128282476516809,0.06372488352548888 +0.23752738015460928,0.3547174232630815 +0.6561387120758881,0.4947870631150662 +0.7960820843772352,0.7533654889738169 +0.12590468507263264,0.13741041878719962 +0.5461270110374643,0.49408505641179373 +0.9385863611488356,0.9188392502773154 +0.11396912053073471,0.18037016146252854 +0.663596273528387,0.7010463275851853 +0.7902920678645518,0.8941128038195936 +0.5479388416163542,0.7905614875800626 +0.3949620280782421,0.4163032853844127 +0.3927489941001636,0.5485332093562325 +0.027103218987968858,0.029425553460646625 +0.15567504594773202,0.23510738456978636 +0.220288530678454,0.4335606602762372 +0.8650362321075367,0.9308166100456977 +0.3261684413732636,0.38062469831471996 +0.88385104885698,0.8174057005045836 +0.9489220701668515,0.9228596764882149 +0.35294513155553087,0.4021583675992762 +0.14988454128352963,0.18105512712104233 +0.06487009163598345,0.054741572360454016 +0.4373865349062034,0.7299483254657544 +0.19285563715357223,0.3468982182755599 +0.2950128624974162,0.4250524588150869 +0.6688928713281834,0.833105038246312 +0.38722216747964344,0.2500573088166935 +0.22642476059065075,0.32194787660500734 +0.7142050020041445,0.8144668442518519 +0.7484469413429837,0.6949930484842435 +0.31599119692886635,0.2486553462571519 +0.9657312015172801,0.9791581228183582 +0.26180293414550015,0.21018642130209553 +0.2897789521931685,0.3223543478387505 +0.9457773896043756,0.7184308305310569 +0.7682980189040238,0.5078604385149892 +0.7699053504197576,0.726977968410286 +0.5637636529008383,0.7821710923052603 +0.24247285382255673,0.21290176998160126 +0.9494610474316438,0.9621468151821 +0.662953500532648,0.4281159081249304 +0.12563838209411415,0.23242096091587966 +0.9440818297870451,0.9190651521998813 +0.8849280666638374,0.7734278055783814 +0.7898501249615313,0.5698085245557655 +0.42383178519535214,0.4704210139260255 +0.8110261241409551,0.9456558472049036 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.94_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.94_size_100.csv new file mode 100644 index 0000000000..830dcad669 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.94_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.6066840674044217,0.684787041924322 +0.9170320903018963,0.852295505089069 +0.713131223977695,0.8132558629878834 +0.25653216071242185,0.24438005819274167 +0.3583248850818963,0.33821013899742913 +0.9913547147530481,0.9803838209905974 +0.8697939480967014,0.7683191542414256 +0.06268389623206883,0.09735755598576012 +0.02290225319092487,0.09505494164321693 +0.7045832736531267,0.6854171873393531 +0.7549476933565634,0.7909537487880852 +0.9721263073223169,0.9825449050764083 +0.4873458275508109,0.629256133811461 +0.2534604841897442,0.33179662204269633 +0.7547338102490556,0.7622022308608767 +0.3002530371067875,0.2608254087842319 +0.46851169831026196,0.3956965258701109 +0.8464796580457539,0.8108571206356507 +0.5463242417723678,0.30664160266246 +0.5503166132392746,0.47151074268153753 +0.4498857964842313,0.6490429975161872 +0.07743509897612422,0.05813261242727796 +0.8038466235832694,0.8180585645854841 +0.025074722585933906,0.05174034586682197 +0.8765522254242432,0.898340615553767 +0.9569477247111667,0.8838312893192415 +0.5180637355164263,0.5078755788476729 +0.9409815021982606,0.9653145217410138 +0.5833252434205421,0.6785255518064407 +0.31930718256197643,0.18549870917207073 +0.35312388565237074,0.22934906460960863 +0.38380744179756254,0.4392962078172093 +0.5102788857959559,0.5994738291585027 +0.29087813623311576,0.3898135362767581 +0.07204710199675612,0.15652509202234738 +0.11214991162377269,0.010510817236220382 +0.7106935914547678,0.8473734133879796 +0.9468719015052021,0.8677450774419884 +0.26706934439165775,0.33156568630091277 +0.9725362865105526,0.9077902720754571 +0.08159956606881769,0.03934251568330949 +0.21672216521428933,0.2784966812863067 +0.0658148407686317,0.06285407505453672 +0.32231490116849215,0.22766561335831492 +0.03163984090013361,0.016882726887062105 +0.4405698257981888,0.5700018242076256 +0.4581081638125366,0.47838479058921046 +0.9485748878526905,0.9721255603825028 +0.9250042019515721,0.8973955335064137 +0.06620302322661109,0.07041271875802863 +0.2793579564354032,0.2619588659516091 +0.18277149115628605,0.19851023596905765 +0.23253441224418891,0.19246268348979562 +0.9060709146715413,0.8080287288100598 +0.3138083258964356,0.48952076450009546 +0.5983917904014522,0.5898043237057116 +0.16201116096617624,0.32444159945117546 +0.08464324233176457,0.09441660533550839 +0.5201250567219236,0.5004920820369384 +0.02155800455705348,0.02783922678340034 +0.2825054447198194,0.22806896471901422 +0.4805122087908591,0.37387856832725497 +0.16531863591935242,0.13683965179355279 +0.4059045298526949,0.5039614550136339 +0.22198993645195386,0.27711204923176225 +0.5839708088362137,0.8367931659228132 +0.713204161249455,0.7823802916850229 +0.9998511569883359,0.9992204526330024 +0.3227689049096581,0.13587653831493968 +0.2702342168577524,0.2877127175491746 +0.6589776074028999,0.7052347617146001 +0.16878387591128025,0.08310275967860592 +0.2369170978235129,0.26154183685285015 +0.283888210719377,0.44382733785879774 +0.706645642612479,0.8737213148988865 +0.13783209758881776,0.07655936082535969 +0.47841392776280567,0.5899161437409369 +0.36150511322724366,0.5504986348813122 +0.39374056037591576,0.43005831421964247 +0.9254348297927139,0.934511283480967 +0.7850543669907744,0.7826980184750303 +0.8237088037388107,0.8650895599965981 +0.2909946050505028,0.09854958039882594 +0.5885899212728961,0.732887258817337 +0.45021040652190003,0.424809200865169 +0.003329097242023682,0.009196142846490118 +0.6951529760874766,0.7415693929590182 +0.006476950410687632,0.004253974715846209 +0.5144831212657446,0.3862114587179193 +0.5631921374990806,0.5677130485079501 +0.9566402621162151,0.8989468547419381 +0.21106694371613338,0.31780501349348733 +0.47444476746200503,0.5026993787602947 +0.07296899322008676,0.04201121274199615 +0.9854240172754737,0.947300245216635 +0.25069529804069235,0.3427865087416505 +0.8017784988507746,0.854224136063156 +0.264960048061082,0.08067102537573184 +0.6909687431570686,0.7794763103169899 +0.7906599615253603,0.8795180475968578 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.95_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.95_size_100.csv new file mode 100644 index 0000000000..cde6448890 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.95_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.2950327151864649,0.17397055637616843 +0.5129261234427096,0.4954993294919013 +0.9406457048314716,0.93491603251623 +0.6744510652764479,0.649419577837042 +0.12718129386690447,0.08677890877635341 +0.07853767433869041,0.3476845213846639 +0.3601578762257278,0.46496198204677697 +0.6034593708921656,0.5284907107628753 +0.24583506004040084,0.2502574731515481 +0.6548595207145358,0.6036180827530989 +0.7729936579704113,0.579714029143149 +0.8833645266856505,0.8453259257662833 +0.5174577626903245,0.5140475342819109 +0.5270316480984146,0.640667210528599 +0.2823644875374541,0.4575040131521919 +0.4239732201046307,0.4312711985522302 +0.4387169199893751,0.4261758604062838 +0.9922656333917892,0.9983502497716028 +0.9970520535595029,0.9980306232716165 +0.42388782626118604,0.3162757310978671 +0.5529507622007013,0.6073956499983181 +0.5182377064567661,0.48501703678412594 +0.30064513493409784,0.42496828004224824 +0.6387252627176683,0.754451213410475 +0.6682923632822495,0.5681514723093304 +0.9123486527075676,0.8008129140849877 +0.3506806393640691,0.2769585677574684 +0.15804598077425447,0.1789614164568047 +0.4633836561177237,0.3556147522453258 +0.3018385605023868,0.23605466045302237 +0.20193261646858213,0.21987782388263755 +0.5786724192090692,0.3436368573606742 +0.7842627060877454,0.688483398695787 +0.021830780602199007,0.0494873004956235 +0.2525073793212932,0.24004466461330481 +0.5928249433512444,0.7646972369887629 +0.21014778536372408,0.13271025212400972 +0.2719180589381991,0.34521406382338565 +0.880635985988818,0.9323453758804512 +0.7465474728405783,0.6527149971988007 +0.2875758182132652,0.3450213542368802 +0.36891594186754517,0.2690841399960173 +0.8751429385338758,0.8561847293338305 +0.4428278220810893,0.5975906099876662 +0.9286495497209596,0.909115444780568 +0.29561101413705726,0.46607522002296053 +0.36449174234755555,0.4750286789142616 +0.4391084594303831,0.44520008756596385 +0.44646111492390905,0.32839732105775515 +0.3458824148586578,0.41033871072159567 +0.7583070580801269,0.7099799184270492 +0.9506946395202154,0.9564146304681918 +0.7467816065249443,0.636090533332202 +0.2427438484600592,0.34511780783694923 +0.2851260986656775,0.5438484018182524 +0.013870865481249384,0.01126823685321321 +0.753131135441283,0.7709166844964004 +0.2923294919125953,0.3954572552081702 +0.4250577764863729,0.4732068445091901 +0.20181578882136209,0.4193100125134143 +0.3168119236056762,0.09055943801247207 +0.25206981213497837,0.31111796723664065 +0.5347056461194507,0.4286038427991675 +0.3716695732714079,0.2812168912018399 +0.7944072740003629,0.8874561101353884 +0.17983416672980795,0.20292454287899103 +0.5634958414003602,0.6210251889145578 +0.1881975698731107,0.3084242106043448 +0.06576991058599668,0.08363157804440513 +0.39476005886245036,0.6333166383658095 +0.05426564489630903,0.15283792852546363 +0.9719184636842444,0.9232694726712678 +0.1643996983010727,0.2614761894108468 +0.3645295102660133,0.40985101486437964 +0.47420216483158983,0.39675505791146287 +0.17960350521820645,0.2200757347064285 +0.8717672228736606,0.7156865065394302 +0.259631499439697,0.07962599349273752 +0.08291526710974478,0.18779975508864344 +0.12283657748539345,0.14330639434466858 +0.6167152795736117,0.5644875210235551 +0.8588155876321915,0.8139868339218541 +0.0318118772648992,0.021156917895132854 +0.18214809483939554,0.3361124869393616 +0.5479906686782738,0.5045604378965783 +0.9865249319494841,0.9800678621164619 +0.96533694384046,0.9811563955933702 +0.30207967355974563,0.26881637105691136 +0.7966844748885615,0.8350576801942031 +0.3447629609564703,0.2864919897075061 +0.7315862963838591,0.7246470030191852 +0.2969533509772525,0.3905493230225122 +0.4150920997939137,0.20795055880613617 +0.6913941605741579,0.7550437716814707 +0.135772088114803,0.150729396086063 +0.30426482359984197,0.35037630157629834 +0.8661674866126321,0.9415974700031207 +0.17416781361182987,0.09337710211193773 +0.02838373501486713,0.019084095224719544 +0.9904747340129026,0.9682370638326893 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.96_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.96_size_100.csv new file mode 100644 index 0000000000..886d0bc2ec --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.96_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.3302336660059967,0.42361640608613726 +0.370145493131505,0.21826420716887052 +0.14656335566762596,0.16805311892466251 +0.13883974309938912,0.1794285130803676 +0.6644500775373842,0.7079335426228432 +0.9574460355356831,0.964884443286627 +0.7842430791363819,0.8809678292430506 +0.06357675955878839,0.044317098910482966 +0.716553687928231,0.6124389121267141 +0.8344117901641375,0.8668368902429158 +0.6299372823443741,0.8206642478646399 +0.4968495363478196,0.3580169145195607 +0.8459525430055805,0.8671607718816859 +0.01601354177121206,0.020416516931876794 +0.3362347779769189,0.16854763771508513 +0.6413217519415935,0.7478583545339597 +0.4536749717525569,0.7177664572199821 +0.7826835042562139,0.7673262830864416 +0.7183800355308417,0.6248440455615427 +0.6312717013774727,0.6033229040581836 +0.3331120966231981,0.4161295690008071 +0.1559067557527405,0.1506331449769453 +0.9639596685060501,0.9866036852729811 +0.7521456730578984,0.8662700402266094 +0.19699935445790584,0.19605874739962503 +0.3676758166358034,0.3167662581100025 +0.5971540779275998,0.5815415329227414 +0.5758654589409722,0.5002480786318897 +0.421616334749107,0.4900642030714585 +0.7058829301474975,0.720186949431294 +0.20998614836844948,0.20735955188449157 +0.3175329208150087,0.1691164692743548 +0.7398140933114884,0.7110236207029693 +0.2786424847179239,0.35299306351884463 +0.3264361144443726,0.47724894264776835 +0.704681761218924,0.7419031959523686 +0.3114912280826625,0.08083278039925823 +0.5190598983590485,0.45746069013079266 +0.43513280183540304,0.4477374223758275 +0.6506549839952068,0.6821576773761846 +0.9303237221519843,0.8980228893900661 +0.9564267546318915,0.923132306374693 +0.6193665873146255,0.49530656066051243 +0.9205906829887596,0.9359364017146197 +0.08097074390654785,0.1222219982994372 +0.7312075796573994,0.7465002389206457 +0.3395817228638587,0.4113717980923127 +0.3575567438123606,0.4459539080130848 +0.16257224570537243,0.1525010508334977 +0.19406700164689783,0.4907044420482872 +0.26318058337482797,0.3273396635675454 +0.4205029589625593,0.36947675775725886 +0.012723387266445063,0.008682039690510401 +0.2926628344847608,0.2352923644782337 +0.0014279462266539866,0.0021693649691176264 +0.794672267595764,0.7240046714030212 +0.21227847140497208,0.2944313401966759 +0.4189197834316408,0.27636674597261285 +0.7587617001257023,0.6320977440450842 +0.23991709369984787,0.1427544599792938 +0.807907769236978,0.6644904022910415 +0.5771838113716962,0.46574823988288144 +0.24471940640685502,0.11652600207313207 +0.8964717202267292,0.9298269113719381 +0.24622857374093043,0.11483980722212939 +0.4635095024479884,0.5163978885665018 +0.029286474230101334,0.022827286295145743 +0.2876877203605003,0.39140587772249025 +0.23194415871382512,0.21344608447804342 +0.3171015935207929,0.3497365793996272 +0.554872501859923,0.5577052551989469 +0.555919933688558,0.3082131091904382 +0.3386281289513161,0.25984199288796184 +0.577805531862065,0.6033545134690875 +0.4902012481829655,0.4484767579864767 +0.7464533477049902,0.5424454015970734 +0.5398857830106815,0.34425844386284365 +0.3309274754628698,0.4494973485469262 +0.22734180380029784,0.13084380593060158 +0.08208360507906948,0.15323332011703433 +0.9156147510247001,0.8515933441342751 +0.3831993491564778,0.30963849687239864 +0.9741089336010886,0.9393708381916603 +0.7029859246592473,0.6575492215732416 +0.5239997127242637,0.5425327305614673 +0.6359330100620975,0.7899954130336446 +0.6622280333997452,0.46285057646305533 +0.5024553253046392,0.5352037515199091 +0.18700314415855895,0.3073838614043656 +0.7274089733289941,0.7661670632965731 +0.8001167822942962,0.7646682381789531 +0.10676411253598272,0.16029938169505226 +0.4249668980796437,0.2061391469693553 +0.3068612039628968,0.3107717667539659 +0.25714144729145194,0.15313783205212889 +0.9013076068737218,0.9462662025940329 +0.629870787842012,0.576238041185205 +0.6404799174227306,0.591315877784278 +0.5608682433193563,0.3932168528119315 +0.8187041862053615,0.7430378261579962 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.97_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.97_size_100.csv new file mode 100644 index 0000000000..3d2e3879b5 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.97_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.7399927448184244,0.6792545235216203 +0.7875543709163283,0.8641094495835426 +0.1270376155032949,0.07301104070075776 +0.5319872675009468,0.511177703766121 +0.4715985882038294,0.5179869552626183 +0.054418046713308854,0.12765891799218448 +0.6689900054559801,0.7411739080301286 +0.9608092558783465,0.9309614272178419 +0.017075319846755477,0.007845547953107102 +0.9276165945041646,0.9539152663345637 +0.25367920647795317,0.377184790878061 +0.9778137063013767,0.9789836583302703 +0.325830664127882,0.24118304675482377 +0.8961636287453443,0.8530109170848066 +0.6225949691121834,0.49061393047861995 +0.5425874858215843,0.6422030966337603 +0.9297875543250794,0.9518446651209307 +0.042331955918984976,0.012001988015589327 +0.292884068318059,0.31124239144538346 +0.5292564818485428,0.6826134289472721 +0.31407605366036007,0.39296128996488056 +0.0837138277850138,0.087080593847297 +0.7342397756971973,0.6935178534566692 +0.11279780835482012,0.15840302424338343 +0.37175088020550084,0.31319383240187093 +0.6848273488055288,0.7280909342514775 +0.46472928294980653,0.5145161681618678 +0.6052337697581759,0.4982925741794077 +0.20090867265578732,0.14951424986962536 +0.0956624891807869,0.16710877179322642 +0.7856247497636568,0.7998346972486334 +0.4557333198277841,0.642607023247586 +0.5831197747803738,0.5853670857873036 +0.9724072484536348,0.9597629503336069 +0.6236226187107597,0.44465495833207486 +0.9364074326669447,0.973515496458446 +0.012063288065929378,0.010505577504112185 +0.8403562752226443,0.9056938369934069 +0.5995281645405472,0.5809125325297071 +0.876764295305864,0.8329023666976108 +0.830447127600846,0.9146447378539673 +0.7931666105184328,0.8517950545824138 +0.426608891058198,0.43725850713664915 +0.8560846158306905,0.8931983116867096 +0.2475509482652078,0.2468433863135583 +0.4711894386941161,0.4932162151398813 +0.8047309708686776,0.8134291500053252 +0.6802958068176356,0.723826651377989 +0.7019136399387217,0.6321929013685805 +0.060314290533339365,0.06736030094356826 +0.9864437649174055,0.9771552078581377 +0.37195549703931596,0.3396721109843718 +0.7698211630014022,0.813808196986223 +0.9118736800388942,0.8627005745674903 +0.935707037210518,0.9272457231891403 +0.46723810244256025,0.6376423989675467 +0.6443038809245379,0.7251288889534163 +0.6435737412385274,0.6964842820882833 +0.06411604992863029,0.08377079783396901 +0.15306484846666002,0.14917057954099294 +0.8913341141539497,0.9428329450283601 +0.5319218945449653,0.6379090267158034 +0.7338994725713682,0.8362129067266156 +0.6829441925733751,0.6447097003899127 +0.8241967784892416,0.8496435317021204 +0.04937848412876278,0.02681361834676471 +0.7384152500047847,0.7755004461616658 +0.6183517956352984,0.5837783114442713 +0.9993421980437811,0.9992595611709105 +0.9252037017324923,0.9435098059894884 +0.32089288248915193,0.3912758969519913 +0.6737525955691789,0.5939988263476208 +0.5626722483782279,0.6426935908554272 +0.5304944067117625,0.44310858581911045 +0.7597828110227575,0.7031745422021614 +0.14548115010933033,0.17110671296750884 +0.10366757220357709,0.10702224605405691 +0.6961029764290368,0.6810214563631791 +0.2073218428856049,0.2643630727009457 +0.09313085170836527,0.06979944422312345 +0.0888507749392845,0.049820154995099564 +0.743707642176464,0.7157050120956394 +0.9350625291146005,0.9359384885620028 +0.26111846179631887,0.3107515280342519 +0.4879796719125882,0.5069869697520214 +0.7097116306008155,0.6797693469053694 +0.4920648564414919,0.584015627957501 +0.9190115677617336,0.8863942699177642 +0.8252158342646201,0.8474642482913556 +0.46798091326824975,0.3528669403552927 +0.9542536319896068,0.9745601772682614 +0.11968980299909321,0.132032014599951 +0.43091702435358537,0.43509229719400333 +0.9684347093352244,0.9587126840399036 +0.20531051362914982,0.25175622188485813 +0.8069875779061478,0.7302156795899901 +0.49687049947543216,0.4098628201681141 +0.17904708178166273,0.2063391276563376 +0.5232232918067279,0.578035007417564 +0.32684742446693604,0.27779223405822717 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.98_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.98_size_100.csv new file mode 100644 index 0000000000..50e82d2076 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.98_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.054182649435415065,0.06326059657513305 +0.7413947903895877,0.7678013936180358 +0.2450422680707186,0.2436290590778865 +0.3247513540638106,0.28028172781733773 +0.43542760631561783,0.40716357080503296 +0.4850080899999243,0.4177313916444044 +0.21508939723175335,0.3054662248738057 +0.9622543242156306,0.9626901445129044 +0.8946867529277603,0.904709377080088 +0.05548771464729907,0.10025313009672632 +0.0836426792233636,0.10610082006736671 +0.8337722901012148,0.8199254723610427 +0.41240725612919527,0.473993002607882 +0.6086112572298931,0.6094465907353714 +0.7877505916001454,0.7797132587938285 +0.23014078426783346,0.3351712798253191 +0.37027775279577224,0.4805884180307678 +0.8361800808125142,0.8141083052408985 +0.7307582180517903,0.6725044059623886 +0.12650660201047575,0.19986984686137427 +0.9655882110800067,0.9441943528388168 +0.863685055366672,0.8054301373644439 +0.1660779577924376,0.1828076129723129 +0.006026769293907441,0.0036859748708863993 +0.6566027866554361,0.6818256347727059 +0.3345795787695648,0.29687451445780777 +0.7410392236315043,0.7953073603273393 +0.9383066738471931,0.9145821285150637 +0.8655834757955552,0.832125671042703 +0.4973696046582631,0.4894044599609998 +0.9488071239000696,0.9660861943549452 +0.5671882856907561,0.4917521923573512 +0.005892442321184133,0.003654762984992843 +0.11876622056286074,0.14622053115843509 +0.1805250808420465,0.25501664520521283 +0.2814387998827237,0.3101334299412353 +0.9963440538784148,0.993195668739147 +0.3879591347368154,0.3971646532894045 +0.6812493164589352,0.6960115971621113 +0.8521603340730466,0.8697820524312976 +0.7911243884494409,0.7877021116164885 +0.42903411198354524,0.4347055611402342 +0.5941296540101598,0.522191700108102 +0.17439887902227025,0.1118250291409763 +0.7835600785981491,0.7321375927107954 +0.6973237245613987,0.8150145694888293 +0.42027596439633874,0.3550937290751276 +0.6262957404756244,0.4675499552161426 +0.5405504799894144,0.5714243294855401 +0.8656035898443367,0.8342249030036708 +0.567524364349558,0.5541698926072048 +0.45128330318804843,0.3495791716213499 +0.30455282060458455,0.27253147836716884 +0.3790024347575125,0.4714974861052107 +0.7570221201025902,0.7246198079067759 +0.6820789218966207,0.6600965012770013 +0.3045217616413183,0.26429679097146946 +0.11987341456917427,0.2073926223680454 +0.9172526579342721,0.8622664337923742 +0.611344930374632,0.429807981512445 +0.9539245065297739,0.9242786819486477 +0.3005607893645594,0.3502296873874218 +0.03930483028715859,0.03140286953084809 +0.7935657176568032,0.8420381528203134 +0.33937279487277794,0.3910876666217651 +0.353150090000626,0.4935116897685716 +0.34094986432060403,0.35585663656501454 +0.9691705391072093,0.9865624345789916 +0.024350967994031913,0.023140096269646138 +0.18544768793209498,0.1572589348184394 +0.37571676851503366,0.19686345310805176 +0.9311694166723219,0.9089762317679453 +0.1969780401165806,0.19430489202460466 +0.8599566816211619,0.820915103050678 +0.21539689959020114,0.3173745377947689 +0.017595720957435,0.02412308120397133 +0.23261821160471952,0.3841823865949299 +0.563290302370597,0.5158147866057915 +0.8310674657686509,0.7945864330053991 +0.5435672320842205,0.4597054312390837 +0.40292317771601305,0.4218700665553894 +0.45565742312381585,0.573896015884479 +0.09183099338081518,0.1125846540817253 +0.026787322974676564,0.01788670363567857 +0.449877759931564,0.41689141409735775 +0.5615121974282778,0.597171496529229 +0.18812061628635945,0.15588035406351325 +0.6901541337261076,0.768732847599446 +0.38399583320685937,0.4353682693343748 +0.47141900723882324,0.46629332502938536 +0.7189073642791296,0.5847060622779032 +0.41663592997001275,0.2873765056983863 +0.650990349731631,0.657566461030517 +0.03174964340400255,0.019470862730795402 +0.08213153221501801,0.11053664122279805 +0.2035156701279055,0.1836946707354653 +0.06806896501888215,0.1066068831052423 +0.3721437252245251,0.4111950324964977 +0.747178608265929,0.6776500626507762 +0.033510517535313644,0.02566973594369476 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.99_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.99_size_100.csv new file mode 100644 index 0000000000..1b086f22d8 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.99_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.9728890937110117,0.9810505047927213 +0.38143225886797183,0.3464611262231755 +0.16046814935057185,0.16842059943331017 +0.00866704487317893,0.004940294388205313 +0.034253981521097154,0.023640154008885528 +0.17093338027262162,0.21238769558945075 +0.7213452643580217,0.7297285916110993 +0.530203960812847,0.5364930302094202 +0.23520244218804875,0.17103927880417213 +0.329575560811047,0.28410688044630444 +0.5598786828789499,0.57785418852412 +0.9371506332968977,0.935322065105598 +0.18801390159967007,0.23434329188745529 +0.08090391312299339,0.1281239254089091 +0.826695783160219,0.8072147503941733 +0.0012586461311597796,0.0029570083054615837 +0.47194257160870734,0.5265072510014712 +0.5181500207759923,0.43252867704924197 +0.7285459926519898,0.7102205014784245 +0.18117424533271737,0.18051106749056062 +0.34732719260678824,0.32454402868961696 +0.78761887686812,0.7695458971340792 +0.18571462767482605,0.260651713111657 +0.845993807820081,0.8654743450280276 +0.5920727075822086,0.5580211767729275 +0.1669747925679138,0.16141101708156147 +0.34303057293597183,0.48400144870880724 +0.8275147774821623,0.7861448310837024 +0.85883449484045,0.8688678313085754 +0.4271485986802308,0.5760082918373703 +0.4823160850493331,0.3768926908235831 +0.5483950663534717,0.5039722068910715 +0.7349561978016962,0.7596100791918468 +0.6406711099039974,0.6817569524925887 +0.37044688722055497,0.37696337570677874 +0.7013389158121063,0.6510391256320167 +0.7928969250984137,0.6809810587583476 +0.3345126696675924,0.3371913621228546 +0.3723991524240211,0.39547389293232954 +0.4136353921230973,0.4116265050691575 +0.6573029076005501,0.6384875206086923 +0.9799155324050663,0.9731488244196271 +0.11368562044862557,0.07609830174947563 +0.6454510447447923,0.6463652115108072 +0.6262710759980316,0.6619784398946579 +0.6443161622238927,0.6960431348180314 +0.9211608540147391,0.9028934762442553 +0.7619168821664474,0.7158096931143463 +0.6426792448356808,0.6079052151917858 +0.38031174458581674,0.3614291499774217 +0.14168553216908086,0.15436019080067132 +0.47316179716203444,0.5280046853723945 +0.33394542198678767,0.27166135340846975 +0.7477433637410725,0.6419427871376242 +0.011525940731096473,0.017334032165794766 +0.6371337942393566,0.5651138294755558 +0.21213534476122609,0.22350716688150984 +0.21457164279002833,0.2179409365369389 +0.10432272011706967,0.14462253712293238 +0.8282720888585043,0.8010593095396756 +0.09258481183302614,0.0748928324219767 +0.10811691072038693,0.13069404247221783 +0.37816413178355235,0.31928425987762543 +0.33667968320203945,0.289748704344766 +0.8084980260411919,0.8530460795268939 +0.8697883732720413,0.9138714407263975 +0.47891545264347146,0.3953644938932165 +0.16708812177064436,0.17651544651659712 +0.7915765177161415,0.7554694760308878 +0.23366864160091305,0.3004257490611259 +0.1045891727102568,0.10341100613773752 +0.2847143735130727,0.15705814299526494 +0.9350663382285761,0.9391693540279755 +0.007950774827212403,0.0138378331779766 +0.5603505095412418,0.587042143448034 +0.41753064961731323,0.44807242807552156 +0.6721283173904254,0.6381737486174288 +0.28080888101872414,0.24960370447258384 +0.3071199090215301,0.3594957333104669 +0.7447311568781473,0.7727052019494695 +0.3008353720832332,0.32491294456284214 +0.5895727704702765,0.5986994402138961 +0.05630976146048017,0.05448293904250534 +0.1609033580231623,0.14723390893220095 +0.26820901612795855,0.29385003405236193 +0.09443039415691562,0.07952198881938527 +0.8842965302413763,0.8676094545974131 +0.8156064418011492,0.7469761195454985 +0.3884496517636846,0.3801588496097237 +0.48310838047915816,0.39861065971023857 +0.4622590086500802,0.47595516813437644 +0.4904368365721139,0.5800388330224682 +0.031047724693113232,0.023875866733481244 +0.6687776589081199,0.7439585192013461 +0.9300306783966615,0.8951811854540668 +0.6607169178370821,0.729047146643123 +0.10497882264705466,0.09938221772186767 +0.4418081167662141,0.3984594728942196 +0.7434791806518359,0.8003196062045708 +0.3335803691872552,0.36690423846258585 diff --git a/public/tutorial/assets/datasets/size_100/dataset_0.9_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_0.9_size_100.csv new file mode 100644 index 0000000000..a3e914e22a --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_0.9_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.024619028106071528,0.026972304459601526 +0.548489637086543,0.4965374450428865 +0.30936572777389376,0.36506764499330485 +0.2316353279618224,0.16890629596007128 +0.9470387145591447,0.8892076018711887 +0.19202952297647558,0.4694577652726712 +0.1720904171335617,0.10219500879198085 +0.7093662838641845,0.7808411489647049 +0.32114482949160605,0.2584345968734824 +0.829750285194814,0.7842687897112963 +0.6290087509054101,0.35490928156836843 +0.4170222409960047,0.20687079835237182 +0.1591416850296391,0.23282426229942188 +0.7066946858284929,0.8895832141300233 +0.9522846389848931,0.9568517930218426 +0.7142845747112129,0.5183752567822199 +0.2710088318637307,0.33904244932981464 +0.015995667699418403,0.035483784493728854 +0.5622662902278467,0.3757762968269811 +0.6347181645343548,0.5843330717447245 +0.44830950532102964,0.5371988139551057 +0.8088692384657971,0.8268075489234393 +0.592060684501846,0.500386587823254 +0.11753160439222271,0.27211873287841215 +0.6148222510282686,0.44632426879908055 +0.16007582264886006,0.1363421225279855 +0.3580094700617418,0.3802312488629049 +0.06487698300795575,0.031122941503144763 +0.5943243163572317,0.7108796199818324 +0.18956871341618436,0.19508583583463518 +0.743408483009329,0.8401710972138241 +0.472309661171017,0.38861596981836133 +0.5474502813582129,0.3123419045532626 +0.15222582457993444,0.09135390445804731 +0.7468483123933027,0.6205564499801913 +0.20682716580006277,0.21739486312441936 +0.06730740673708135,0.07311362797031795 +0.9653562104767706,0.9444735960975257 +0.9734650449273253,0.9910503152176074 +0.643674407319701,0.7053394360745817 +0.05739089216536952,0.06285907904659671 +0.6101497984114587,0.6347694362079487 +0.46527850313934194,0.5993147094837227 +0.6391141818272508,0.7488307272669112 +0.11721634735930953,0.18605267567526396 +0.22375945474280945,0.3838982833308811 +0.6114467743973188,0.5641060057753866 +0.14788425425145785,0.30618169516617844 +0.006162134765448468,0.00881951046078433 +0.9923786429883314,0.9261076677358354 +0.7935159007216102,0.5513545559460374 +0.17416318493923838,0.44088564778507794 +0.7720902333756448,0.8326448748239862 +0.5943590042457151,0.6540215354617773 +0.990577267559794,0.99835016385988 +0.16115424048457527,0.3719050487741268 +0.37423356724558354,0.3558757612419942 +0.6236612305068389,0.8830483431065581 +0.6314318113999,0.6106783721476775 +0.07313709734366669,0.05429715409236402 +0.582930131330097,0.18636572406153235 +0.9334006651267022,0.9185725408271143 +0.3343153499649866,0.4172945996680938 +0.7964424773587528,0.8006458049037016 +0.5226196577968978,0.6023965628896861 +0.5398109714721249,0.47973451989101595 +0.040735911931618296,0.07745886061565749 +0.13038156199592693,0.07754331525242486 +0.022000015094990166,0.003406533140044188 +0.22630359373463443,0.3262436634989993 +0.7614206719679852,0.704526485420406 +0.9447241476018172,0.9631994489928015 +0.008268418232767916,0.021072216295760504 +0.878541951578884,0.9576249098221046 +0.628572659157838,0.6159251117961411 +0.38552475866211355,0.3165539272669615 +0.9363969880049736,0.9440635416698722 +0.7631930447824988,0.9091021374649884 +0.6601173747949053,0.4569340605149438 +0.8917526247752369,0.626625815774426 +0.5947030637086993,0.6036640327772509 +0.0011853774567648356,0.025665198136671896 +0.3003117880072594,0.3753863115186852 +0.7152622804874912,0.5296427346746883 +0.5923219953847878,0.5923429956673266 +0.1407259001246764,0.3274047448875995 +0.9439730121924712,0.9707528016677343 +0.4604619386594907,0.4753631159513814 +0.7890746557225751,0.7322134883548901 +0.8714379738934591,0.8206689929938189 +0.035871563971681786,0.049875926083724875 +0.898442598430832,0.9440530116143793 +0.04607740053753018,0.015702458898030625 +0.7468744977486186,0.5106755813684751 +0.015443223873604195,0.008879003083929415 +0.6744739755353324,0.668527825614261 +0.2545421099299745,0.12175393758674324 +0.6618339844558757,0.6983460320202514 +0.9291070473263571,0.8847741368349186 +0.6629810404107305,0.6496118612616951 diff --git a/public/tutorial/assets/datasets/size_100/dataset_1.0_size_100.csv b/public/tutorial/assets/datasets/size_100/dataset_1.0_size_100.csv new file mode 100644 index 0000000000..6505d40ef0 --- /dev/null +++ b/public/tutorial/assets/datasets/size_100/dataset_1.0_size_100.csv @@ -0,0 +1,101 @@ +X,Y +0.8938202195148669,0.8938202195148669 +0.28148752366489194,0.28148752366489194 +0.06888909050126557,0.06888909050126557 +0.9588404557380484,0.9588404557380484 +0.5463729508052045,0.5463729508052045 +0.8185682116402866,0.8185682116402866 +0.12039704718555294,0.12039704718555294 +0.023932353954903562,0.023932353954903562 +0.7604925125558692,0.7604925125558692 +0.2443979138879777,0.2443979138879777 +0.47781423934341605,0.47781423934341605 +0.47186877044803155,0.47186877044803155 +0.8021930242782386,0.8021930242782386 +0.608789984227162,0.608789984227162 +0.04738839353556845,0.04738839353556845 +0.45943094340313684,0.45943094340313684 +0.08158215545192787,0.08158215545192787 +0.24757844631523518,0.24757844631523518 +0.727004394668601,0.727004394668601 +0.8803980692129695,0.8803980692129695 +0.08093462029625742,0.08093462029625742 +0.6928652509276829,0.6928652509276829 +0.40527312919225145,0.40527312919225145 +0.8001574616405039,0.8001574616405039 +0.28483642817093885,0.28483642817093885 +0.5022429688133826,0.5022429688133826 +0.4638516702441293,0.4638516702441293 +0.2919700326868016,0.2919700326868016 +0.8779322078007689,0.8779322078007689 +0.8299203601477523,0.8299203601477523 +0.7342917607834463,0.7342917607834463 +0.8042660925623581,0.8042660925623581 +0.5900035534373622,0.5900035534373622 +0.8526090811249666,0.8526090811249666 +0.4133981014007716,0.4133981014007716 +0.9672882233903785,0.9672882233903785 +0.0355442865800194,0.0355442865800194 +0.7588383646336692,0.7588383646336692 +0.5504656369892861,0.5504656369892861 +0.5790619288568324,0.5790619288568324 +0.5037947926665125,0.5037947926665125 +0.6111150024614518,0.6111150024614518 +0.5907458868304032,0.5907458868304032 +0.4749440837000145,0.4749440837000145 +0.19307512744227062,0.19307512744227062 +0.037515428422798536,0.037515428422798536 +0.8153781696796358,0.8153781696796358 +0.4927695533644354,0.4927695533644354 +0.146558817378862,0.146558817378862 +0.8024957470651635,0.8024957470651635 +0.11814684557207594,0.11814684557207594 +0.9168990332387333,0.9168990332387333 +0.7200733351446454,0.7200733351446454 +0.049987499139489855,0.049987499139489855 +0.1038443464240657,0.1038443464240657 +0.25794842052880873,0.25794842052880873 +0.601658322956925,0.601658322956925 +0.8115166117347338,0.8115166117347338 +0.8708583652854983,0.8708583652854983 +0.11293885850085938,0.11293885850085938 +0.5419526939339523,0.5419526939339523 +0.3525348617793437,0.3525348617793437 +0.6966178860358838,0.6966178860358838 +0.4348703616094374,0.4348703616094374 +0.5147797184441835,0.5147797184441835 +0.5696659382865397,0.5696659382865397 +0.4951291041601512,0.4951291041601512 +0.6954892208116767,0.6954892208116767 +0.41802084217043434,0.41802084217043434 +0.16043667787472582,0.16043667787472582 +0.3532808450637791,0.3532808450637791 +0.8198763822548427,0.8198763822548427 +0.5092135613796933,0.5092135613796933 +0.9926800940683445,0.9926800940683445 +0.5871078921138565,0.5871078921138565 +0.30890517348485236,0.30890517348485236 +0.6519979875950723,0.6519979875950723 +0.7217670367133606,0.7217670367133606 +0.6977948273254757,0.6977948273254757 +0.008360596436432721,0.008360596436432721 +0.98462314070206,0.98462314070206 +0.8227053982897983,0.8227053982897983 +0.715499782683484,0.715499782683484 +0.7990513405991098,0.7990513405991098 +0.2367703453834153,0.2367703453834153 +0.28384873943840294,0.28384873943840294 +0.3987627510246179,0.3987627510246179 +0.2955369908526113,0.2955369908526113 +0.4651339140017807,0.4651339140017807 +0.91670251228573,0.91670251228573 +0.2417013438423376,0.2417013438423376 +0.27145209397596637,0.27145209397596637 +0.8109346408019504,0.8109346408019504 +0.7124409467129735,0.7124409467129735 +0.716514573823071,0.716514573823071 +0.9662521449261361,0.9662521449261361 +0.4153622645819608,0.4153622645819608 +0.9088353653442476,0.9088353653442476 +0.5162795404619676,0.5162795404619676 +0.19523354280577815,0.19523354280577815 diff --git a/public/tutorial/replication-config.json b/public/tutorial/replication-config.json new file mode 100644 index 0000000000..9b58894e43 --- /dev/null +++ b/public/tutorial/replication-config.json @@ -0,0 +1,32 @@ +{ + "$schema": "https://raw.githubusercontent.com/revisit-studies/study/main/src/parser/StudyConfigSchema.json", + "studyMetadata": { + "title": "Scatter Plot JND Study", + "version": "pilot", + "authors": ["The reVISit Team"], + "date": "2025-11-02", + "description": "This is a reVISit variation study of JND(Just Noticeable Difference) Scatter Plot experiment.", + "organizations": ["University of Utah", "WPI", "University of Toronto"] + }, + "uiConfig": { + "contactEmail": "contact@revisit.dev", + "helpTextPath": "ScatterJND-study/assets/help.md", + "logoPath": "revisitAssets/revisitLogoSquare.svg", + "withProgressBar": true, + "autoDownloadStudy": false, + "withSidebar": false, + "urlParticipantIdParam": "PROLIFIC_PID", + "studyEndMsg": "**Thank you for completing the study. You may click this link and return to Prolific**: [https://app.prolific.com/submissions/complete?cc=C1E35XG4](https://app.prolific.com/submissions/complete?cc=C1E35XG4)", + "participantNameField": "introduction.prolificId" + }, + "baseComponents": { + + }, + "components": { + + }, + "sequence": { + "order": "fixed", + "components": [] + } +} \ No newline at end of file diff --git a/src/analysis/individualStudy/summary/ResponseStats.tsx b/src/analysis/individualStudy/summary/ResponseStats.tsx index fb7b448eae..8ba31c394c 100644 --- a/src/analysis/individualStudy/summary/ResponseStats.tsx +++ b/src/analysis/individualStudy/summary/ResponseStats.tsx @@ -30,7 +30,7 @@ export function ResponseStats({ visibleParticipants, studyConfig }: { visiblePar data.push({ component: stat.name, type: response.type, - question: response.prompt, + question: response.prompt || '', options: getResponseOptions(response), correctness: correctnessStr, }); diff --git a/src/analysis/individualStudy/summary/SummaryView.tsx b/src/analysis/individualStudy/summary/SummaryView.tsx index 140469f5a1..98bb0b47e4 100644 --- a/src/analysis/individualStudy/summary/SummaryView.tsx +++ b/src/analysis/individualStudy/summary/SummaryView.tsx @@ -51,7 +51,7 @@ export function SummaryView({ visibleParticipants, studyConfig }: { data.push({ component: stat.name, type: response.type, - question: response.prompt, + question: response.prompt || '', options: getResponseOptions(response), correctness: correctnessStr, }); diff --git a/src/components/ConfigSwitcher.tsx b/src/components/ConfigSwitcher.tsx index de18e1697a..84d8280632 100644 --- a/src/components/ConfigSwitcher.tsx +++ b/src/components/ConfigSwitcher.tsx @@ -19,13 +19,22 @@ import { REVISIT_MODE } from '../storage/engines/types'; import { useAuth } from '../store/hooks/useAuth'; import { isCloudStorageEngine } from '../storage/engines/utils'; -function StudyCard({ configName, config, url }: { configName: string; config: ParsedConfig; url: string }) { +function StudyCard({ + configName, + config, + url, + modes, +}: { + configName: string; + config: ParsedConfig; + url: string; + modes: Record | null; +}) { const { storageEngine } = useStorageEngine(); const [studyStatusAndTiming, setStudyStatusAndTiming] = useState<{ completed: number; rejected: number; inProgress: number; minTime: Timestamp | number | null; maxTime: Timestamp | number | null } | null>(null); useEffect(() => { if (!storageEngine) return; - storageEngine.getParticipantsStatusCounts(configName).then((status) => { setStudyStatusAndTiming(status); }); @@ -48,15 +57,6 @@ function StudyCard({ configName, config, url }: { configName: string; config: Pa }; }, [studyStatusAndTiming]); - const [modes, setModes] = useState | null>(null); - useEffect(() => { - if (!storageEngine) return; - - storageEngine.getModes(configName).then((m) => { - setModes(m); - }); - }, [configName, storageEngine]); - const currentMode = useMemo(() => { if (!modes) return 'Unknown'; @@ -193,15 +193,22 @@ function StudyCard({ configName, config, url }: { configName: string; config: Pa ); } -function StudyCards({ configNames, studyConfigs }: { configNames: string[]; studyConfigs: Record | null> }) { +function StudyCards({ + configNames, + studyConfigs, + modesByConfig, +}: { + configNames: string[]; + studyConfigs: Record | null>; + modesByConfig: Record | null>; +}) { return configNames.map((configName) => { const config = studyConfigs[configName]; if (!config) { return null; } const url = sanitizeStringForUrl(configName); - - return ; + return ; }); } @@ -216,20 +223,27 @@ export function ConfigSwitcher({ const { configsList } = globalConfig; const [studyVisibility, setStudyVisibility] = useState>({}); + const [modesByConfig, setModesByConfig] = useState | null>>({}); + useEffect(() => { - async function getVisibilities() { + async function getVisibilitiesAndModes() { const visibility: Record = {}; + const modesMap: Record | null> = {}; await Promise.all( configsList.map(async (configName) => { if (storageEngine && isCloudStorageEngine(storageEngine)) { const modes = await storageEngine.getModes(configName); visibility[configName] = modes.analyticsInterfacePubliclyAccessible; + modesMap[configName] = modes; + } else { + modesMap[configName] = null; } }), ); setStudyVisibility(visibility); + setModesByConfig(modesMap); } - getVisibilities(); + getVisibilitiesAndModes(); }, [configsList, storageEngine]); const { user } = useAuth(); @@ -271,33 +285,33 @@ export function ConfigSwitcher({ {others.length > 0 && ( - + )} These studies show off individual features of the reVISit platform. - + These are full studies that demonstrate the capabilities of the reVISit platform. - + These studies are designed to help you learn how to use the reVISit platform. - + These studies exist for testing purposes. - + Here you can see an example of every library that we publish. - + diff --git a/src/components/interface/AlertModal.tsx b/src/components/interface/AlertModal.tsx index fb593747a9..da26329a3f 100644 --- a/src/components/interface/AlertModal.tsx +++ b/src/components/interface/AlertModal.tsx @@ -11,7 +11,7 @@ export function AlertModal() { const storeDispatch = useStoreDispatch(); const [opened, setOpened] = useState(alertModal.show); - const close = useCallback(() => storeDispatch(setAlertModal({ ...alertModal, show: false })), [alertModal, setAlertModal, storeDispatch]); + const close = useCallback(() => storeDispatch(setAlertModal({ ...alertModal, show: false, title: '' })), [alertModal, setAlertModal, storeDispatch]); useEffect(() => setOpened(alertModal.show), [alertModal.show]); @@ -20,7 +20,7 @@ export function AlertModal() { } onClose={close} styles={{ root: { backgroundColor: 'unset' } }} diff --git a/src/components/interface/AppHeader.tsx b/src/components/interface/AppHeader.tsx index 9e4ddaec6a..9d5de62220 100644 --- a/src/components/interface/AppHeader.tsx +++ b/src/components/interface/AppHeader.tsx @@ -121,6 +121,18 @@ export function AppHeader({ studyNavigatorEnabled, dataCollectionEnabled }: { st } }, [answers, flatSequence, studyConfig, currentStep, storageEngine, dataCollectionEnabled, funcIndex]); + // Check if we have issues connecting to the database, if so show alert modal + const { setAlertModal } = useStoreActions(); + const [firstMount, setFirstMount] = useState(true); + if (storageEngineFailedToConnect && firstMount) { + storeDispatch(setAlertModal({ + show: true, + message: `You may be behind a firewall blocking access, or the server collecting data may be down. Study data will not be saved. If you're taking the study you will not be compensated for your efforts. You are welcome to look around. If you are attempting to participate in the study, please email ${studyConfig.uiConfig.contactEmail} for assistance.`, + title: 'Failed to connect to the storage engine', + })); + setFirstMount(false); + } + return ( diff --git a/src/components/response/ResponseBlock.tsx b/src/components/response/ResponseBlock.tsx index a7986dcd96..bac709bf92 100644 --- a/src/components/response/ResponseBlock.tsx +++ b/src/components/response/ResponseBlock.tsx @@ -75,7 +75,7 @@ export function ResponseBlock({ const responses = useMemo(() => allResponses.filter((r) => (r.location ? r.location === location : location === 'belowStimulus')), [allResponses, location]); const responsesWithDefaults = useMemo(() => responses.map((response) => { - if (response.type !== 'textOnly') { + if (response.type !== 'textOnly' && response.type !== 'divider') { return { ...response, required: response.required === undefined ? true : response.required, @@ -85,7 +85,7 @@ export function ResponseBlock({ }), [responses]); const allResponsesWithDefaults = useMemo(() => allResponses.map((response) => { - if (response.type !== 'textOnly') { + if (response.type !== 'textOnly' && response.type !== 'divider') { return { ...response, required: response.required === undefined ? true : response.required, diff --git a/src/components/response/ResponseSwitcher.tsx b/src/components/response/ResponseSwitcher.tsx index e545995c78..6c4adecb1f 100644 --- a/src/components/response/ResponseSwitcher.tsx +++ b/src/components/response/ResponseSwitcher.tsx @@ -254,7 +254,7 @@ export function ResponseSwitcher({ onChange={(event) => { dontKnowCheckbox?.onChange(event.currentTarget.checked); form.onChange(fieldInitialValue); }} /> )} - {responseDividers && } + {(response.type === 'divider' || responseDividers) && } ); } diff --git a/src/controllers/ComponentController.tsx b/src/controllers/ComponentController.tsx index 76dfc3a99e..994439f200 100644 --- a/src/controllers/ComponentController.tsx +++ b/src/controllers/ComponentController.tsx @@ -94,6 +94,7 @@ export function ComponentController() { storeDispatch(setAlertModal({ show: true, message: `There was an issue connecting to the ${import.meta.env.VITE_STORAGE_ENGINE} database. This could be caused by a network issue or your adblocker. If you are using an adblocker, please disable it for this website and refresh.`, + title: 'Failed to connect to the storage engine', })); } }, [setAlertModal, storageEngine, storeDispatch]); diff --git a/src/parser/LibraryConfigSchema.json b/src/parser/LibraryConfigSchema.json index 573c9406ea..9a09cca381 100644 --- a/src/parser/LibraryConfigSchema.json +++ b/src/parser/LibraryConfigSchema.json @@ -245,6 +245,10 @@ "additionalProperties": false, "description": "The ButtonsResponse interface is used to define the properties of a buttons response. ButtonsResponses render as a list of buttons that the participant can click. When a button is clicked, the value of the button is stored in the data file. Participants can cycle through the options using the arrow keys.\n\nExample: ```js { \"id\": \"buttonsResponse\", \"type\": \"buttons\", \"prompt\": \"Click a button\", \"location\": \"belowStimulus\", \"options\": [ \"Option 1\", \"Option 2\", \"Option 3\" ] } ``` In this example, the participant can click one of the buttons labeled \"Option 1\", \"Option 2\", or \"Option 3\".", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -338,6 +342,10 @@ "additionalProperties": false, "description": "The CheckboxResponse interface is used to define the properties of a checkbox response. CheckboxResponses render as a checkbox input with user specified options.\n\n```js { \"id\": \"q7\", \"prompt\": \"Checkbox example (not required)\", \"location\": \"aboveStimulus\", \"type\": \"checkbox\", \"options\": [\"Option 1\", \"Option 2\", \"Option 3\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -569,10 +577,75 @@ ], "type": "object" }, + "DividerResponse": { + "additionalProperties": false, + "properties": { + "hidden": { + "not": {} + }, + "id": { + "description": "The id of the response. This is used to identify the response in the data file.", + "type": "string" + }, + "infoText": { + "not": {} + }, + "location": { + "$ref": "#/definitions/ConfigResponseBlockLocation", + "description": "Controls the response location. These might be the same for all responses, or differ across responses. Defaults to `belowStimulus`" + }, + "paramCapture": { + "not": {} + }, + "prompt": { + "not": {} + }, + "required": { + "not": {} + }, + "requiredLabel": { + "not": {} + }, + "requiredValue": { + "not": {} + }, + "secondaryText": { + "not": {} + }, + "style": { + "$ref": "#/definitions/Styles", + "description": "You can set styles here, using React CSSProperties, for example: `{\"width\": 100}` or `{\"width\": \"50%\"}`" + }, + "stylesheetPath": { + "description": "The path to the external stylesheet file.", + "type": "string" + }, + "type": { + "const": "divider", + "type": "string" + }, + "withDivider": { + "description": "Renders the response with a trailing divider. If present, will override the divider setting in the components or uiConfig.", + "type": "boolean" + }, + "withDontKnow": { + "not": {} + } + }, + "required": [ + "id", + "type" + ], + "type": "object" + }, "DropdownResponse": { "additionalProperties": false, "description": "The DropdownResponse interface is used to define the properties of a dropdown response. DropdownResponses render as a select input with user specified options.\n\nExample: ```js { \"id\": \"q-color\", \"prompt\": \"What is your favorite color?\", \"location\": \"aboveStimulus\", \"type\": \"dropdown\", \"placeholder\": \"Please choose your favorite color\", \"options\": [\"Red\", \"Blue\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -590,11 +663,11 @@ "description": "Controls the response location. These might be the same for all responses, or differ across responses. Defaults to `belowStimulus`" }, "maxSelections": { - "description": "The maximum number of selections that are required.", + "description": "The maximum number of selections that are required. This will make the dropdown a multiselect dropdown.", "type": "number" }, "minSelections": { - "description": "The minimum number of selections that are required.", + "description": "The minimum number of selections that are required. This will make the dropdown a multiselect dropdown.", "type": "number" }, "options": { @@ -1246,6 +1319,10 @@ "additionalProperties": false, "description": "The LikertResponse interface is used to define the properties of a likert response. LikertResponses render as radio buttons with a user specified number of options, which can be controlled through the numItems. For example, numItems: 5 will render 5 radio buttons, and numItems: 7 will render 7 radio buttons. LikertResponses can also have a description, and left and right labels. The left and right labels are used to label the left and right ends of the likert scale with values such as 'Strongly Disagree' and 'Strongly Agree'.\n\nExample for a five-point Likert Scale:\n\n```js { \"id\": \"q-satisfaction\", \"prompt\": \"Rate your satisfaction from 1 (not enjoyable) to 5 (very enjoyable).\", \"location\": \"aboveStimulus\", \"type\": \"likert\", \"leftLabel\": \"Not Enjoyable\", \"rightLabel\": \"Very Enjoyable\", \"numItems\": 5, \"start\": 1, \"spacing\": 1 } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1338,6 +1415,10 @@ "additionalProperties": false, "description": "The LongTextResponse interface is used to define the properties of a long text response. LongTextResponses render as a text area that accepts any text and can optionally have a placeholder. ```js { \"id\": \"q-name\", \"prompt\": \"What is your first name?\", \"location\": \"aboveStimulus\", \"type\": \"longText\", \"placeholder\": \"Please enter your first name\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1591,6 +1672,10 @@ ], "description": "The answer options (columns). We provide some shortcuts for a likelihood scale (ranging from highly unlikely to highly likely) and a satisfaction scale (ranging from highly unsatisfied to highly satisfied) with either 5 or 7 options to choose from." }, + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1701,6 +1786,10 @@ "additionalProperties": false, "description": "The NumericalResponse interface is used to define the properties of a numerical response. NumericalResponses render as a text input that only accepts numbers, and can optionally have a min and max value, or a placeholder.\n\nExample: ```js { \"id\": \"q-numerical\", \"prompt\": \"Numerical example\", \"location\": \"aboveStimulus\", \"type\": \"numerical\", \"placeholder\": \"Enter your age, range from 0 - 120\", \"max\": 120, \"min\": 0 } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1930,6 +2019,10 @@ "additionalProperties": false, "description": "The RadioResponse interface is used to define the properties of a radio response. Radios have only one allowable selection. RadioResponses render as a radio input with user specified options, and optionally left and right labels.\n\nExample: ```js { \"id\": \"q-radio\", \"prompt\": \"Radio button example\", \"location\": \"aboveStimulus\", \"type\": \"radio\", \"options\": [\"Option 1\", \"Option 2\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2068,6 +2161,10 @@ "additionalProperties": false, "description": "The RankingResponse interface is used to define the properties of a ranking widget response. RankingResponses render as a ranking widget with user specified options.\n\nThere are three types of ranking widgets: Ranking Sublist: The participant is asked to rank a subset of items from a larger list. Ranking Categorical: The participant is asked to rank items within categories: HIGH, MEDIUM, and LOW. Ranking Pairwise: The participant is asked to rank items by comparing them in pairs.\n\n```js { \"id\": \"ranking-sublist\", \"type\": \"ranking-sublist\", \"prompt\": \"Rank your top 2 favorite fruits from the list below\", \"location\": \"belowStimulus\", \"options\": [\"Apple\", \"Banana\", \"Orange\", \"Strawberry\", \"Grapes\"], \"numItems\": 2 }, { \"id\": \"ranking-categorical\", \"type\": \"ranking-categorical\", \"prompt\": \"Sort these hobbies into the categories of HIGH, MEDIUM, and LOW based on your level of interest.\", \"location\": \"belowStimulus\", \"options\": [\"Drawing\", \"Singing\", \"Hiking\", \"Dancing\", \"Photography\"] }, { \"id\": \"ranking-pairwise\", \"type\": \"ranking-pairwise\", \"prompt\": \"Which meal would you prefer\", \"location\": \"belowStimulus\", \"options\": [\"Pizza\", \"Sushi\", \"Burger\", \"Pasta\", \"Salad\", \"Tacos\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2318,6 +2415,10 @@ "additionalProperties": false, "description": "The ReactiveResponse interface is used to define the properties of a reactive response. ReactiveResponses render as a list, that is connected to a WebsiteComponent, VegaComponent, or ReactComponent. When data is sent from the components, it is displayed in the list.\n\n```js { \"id\": \"reactiveResponse\", \"prompt\": \"Answer clicked in the stimulus\", \"location\": \"aboveStimulus\", \"type\": \"reactive\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2464,6 +2565,9 @@ }, { "$ref": "#/definitions/TextOnlyResponse" + }, + { + "$ref": "#/definitions/DividerResponse" } ] }, @@ -2471,6 +2575,10 @@ "additionalProperties": false, "description": "The ShortTextResponse interface is used to define the properties of a short text response. ShortTextResponses render as a text input that accepts any text and can optionally have a placeholder.\n\n```js { \"id\": \"q-short-text\", \"prompt\": \"Short text example\", \"location\": \"aboveStimulus\", \"type\": \"shortText\", \"placeholder\": \"Enter your answer here\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2566,6 +2674,10 @@ "additionalProperties": false, "description": "The SliderResponse interface is used to define the properties of a slider response. SliderResponses render as a slider input with user specified steps. For example, you could have steps of 0, 50, and 100.\n\nExample: ```js { \"id\": \"q-slider\", \"prompt\": \"How are you feeling?\", \"location\": \"aboveStimulus\", \"type\": \"slider\", \"options\": [ { \"label\": \"Bad\", \"value\": 0 }, { \"label\": \"OK\", \"value\": 50 }, { \"label\": \"Good\", \"value\": 100 } ] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2848,6 +2960,10 @@ "additionalProperties": false, "description": "The TextOnlyResponse interface is used to define the properties of a text only response. TextOnlyResponses render as a block of text that is displayed to the user. This can be used to display instructions or other information. It does not accept any input from the user.\n\nExample: ```js { \"id\": \"textOnlyResponse\", \"type\": \"textOnly\", \"prompt\": \"This is a text only response, it accepts markdown so you can **bold** or _italicize_ text.\", \"location\": \"belowStimulus\", \"restartEnumeration\": true } ```\n\nIn this example, the text only response is displayed below the stimulus and the enumeration of the questions is restarted.", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "not": {} }, diff --git a/src/parser/StudyConfigSchema.json b/src/parser/StudyConfigSchema.json index 0100975c71..a684e58ee7 100644 --- a/src/parser/StudyConfigSchema.json +++ b/src/parser/StudyConfigSchema.json @@ -245,6 +245,10 @@ "additionalProperties": false, "description": "The ButtonsResponse interface is used to define the properties of a buttons response. ButtonsResponses render as a list of buttons that the participant can click. When a button is clicked, the value of the button is stored in the data file. Participants can cycle through the options using the arrow keys.\n\nExample: ```js { \"id\": \"buttonsResponse\", \"type\": \"buttons\", \"prompt\": \"Click a button\", \"location\": \"belowStimulus\", \"options\": [ \"Option 1\", \"Option 2\", \"Option 3\" ] } ``` In this example, the participant can click one of the buttons labeled \"Option 1\", \"Option 2\", or \"Option 3\".", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -338,6 +342,10 @@ "additionalProperties": false, "description": "The CheckboxResponse interface is used to define the properties of a checkbox response. CheckboxResponses render as a checkbox input with user specified options.\n\n```js { \"id\": \"q7\", \"prompt\": \"Checkbox example (not required)\", \"location\": \"aboveStimulus\", \"type\": \"checkbox\", \"options\": [\"Option 1\", \"Option 2\", \"Option 3\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -569,10 +577,75 @@ ], "type": "object" }, + "DividerResponse": { + "additionalProperties": false, + "properties": { + "hidden": { + "not": {} + }, + "id": { + "description": "The id of the response. This is used to identify the response in the data file.", + "type": "string" + }, + "infoText": { + "not": {} + }, + "location": { + "$ref": "#/definitions/ConfigResponseBlockLocation", + "description": "Controls the response location. These might be the same for all responses, or differ across responses. Defaults to `belowStimulus`" + }, + "paramCapture": { + "not": {} + }, + "prompt": { + "not": {} + }, + "required": { + "not": {} + }, + "requiredLabel": { + "not": {} + }, + "requiredValue": { + "not": {} + }, + "secondaryText": { + "not": {} + }, + "style": { + "$ref": "#/definitions/Styles", + "description": "You can set styles here, using React CSSProperties, for example: `{\"width\": 100}` or `{\"width\": \"50%\"}`" + }, + "stylesheetPath": { + "description": "The path to the external stylesheet file.", + "type": "string" + }, + "type": { + "const": "divider", + "type": "string" + }, + "withDivider": { + "description": "Renders the response with a trailing divider. If present, will override the divider setting in the components or uiConfig.", + "type": "boolean" + }, + "withDontKnow": { + "not": {} + } + }, + "required": [ + "id", + "type" + ], + "type": "object" + }, "DropdownResponse": { "additionalProperties": false, "description": "The DropdownResponse interface is used to define the properties of a dropdown response. DropdownResponses render as a select input with user specified options.\n\nExample: ```js { \"id\": \"q-color\", \"prompt\": \"What is your favorite color?\", \"location\": \"aboveStimulus\", \"type\": \"dropdown\", \"placeholder\": \"Please choose your favorite color\", \"options\": [\"Red\", \"Blue\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -590,11 +663,11 @@ "description": "Controls the response location. These might be the same for all responses, or differ across responses. Defaults to `belowStimulus`" }, "maxSelections": { - "description": "The maximum number of selections that are required.", + "description": "The maximum number of selections that are required. This will make the dropdown a multiselect dropdown.", "type": "number" }, "minSelections": { - "description": "The minimum number of selections that are required.", + "description": "The minimum number of selections that are required. This will make the dropdown a multiselect dropdown.", "type": "number" }, "options": { @@ -1176,6 +1249,10 @@ "additionalProperties": false, "description": "The LikertResponse interface is used to define the properties of a likert response. LikertResponses render as radio buttons with a user specified number of options, which can be controlled through the numItems. For example, numItems: 5 will render 5 radio buttons, and numItems: 7 will render 7 radio buttons. LikertResponses can also have a description, and left and right labels. The left and right labels are used to label the left and right ends of the likert scale with values such as 'Strongly Disagree' and 'Strongly Agree'.\n\nExample for a five-point Likert Scale:\n\n```js { \"id\": \"q-satisfaction\", \"prompt\": \"Rate your satisfaction from 1 (not enjoyable) to 5 (very enjoyable).\", \"location\": \"aboveStimulus\", \"type\": \"likert\", \"leftLabel\": \"Not Enjoyable\", \"rightLabel\": \"Very Enjoyable\", \"numItems\": 5, \"start\": 1, \"spacing\": 1 } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1268,6 +1345,10 @@ "additionalProperties": false, "description": "The LongTextResponse interface is used to define the properties of a long text response. LongTextResponses render as a text area that accepts any text and can optionally have a placeholder. ```js { \"id\": \"q-name\", \"prompt\": \"What is your first name?\", \"location\": \"aboveStimulus\", \"type\": \"longText\", \"placeholder\": \"Please enter your first name\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1521,6 +1602,10 @@ ], "description": "The answer options (columns). We provide some shortcuts for a likelihood scale (ranging from highly unlikely to highly likely) and a satisfaction scale (ranging from highly unsatisfied to highly satisfied) with either 5 or 7 options to choose from." }, + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1631,6 +1716,10 @@ "additionalProperties": false, "description": "The NumericalResponse interface is used to define the properties of a numerical response. NumericalResponses render as a text input that only accepts numbers, and can optionally have a min and max value, or a placeholder.\n\nExample: ```js { \"id\": \"q-numerical\", \"prompt\": \"Numerical example\", \"location\": \"aboveStimulus\", \"type\": \"numerical\", \"placeholder\": \"Enter your age, range from 0 - 120\", \"max\": 120, \"min\": 0 } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1860,6 +1949,10 @@ "additionalProperties": false, "description": "The RadioResponse interface is used to define the properties of a radio response. Radios have only one allowable selection. RadioResponses render as a radio input with user specified options, and optionally left and right labels.\n\nExample: ```js { \"id\": \"q-radio\", \"prompt\": \"Radio button example\", \"location\": \"aboveStimulus\", \"type\": \"radio\", \"options\": [\"Option 1\", \"Option 2\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -1998,6 +2091,10 @@ "additionalProperties": false, "description": "The RankingResponse interface is used to define the properties of a ranking widget response. RankingResponses render as a ranking widget with user specified options.\n\nThere are three types of ranking widgets: Ranking Sublist: The participant is asked to rank a subset of items from a larger list. Ranking Categorical: The participant is asked to rank items within categories: HIGH, MEDIUM, and LOW. Ranking Pairwise: The participant is asked to rank items by comparing them in pairs.\n\n```js { \"id\": \"ranking-sublist\", \"type\": \"ranking-sublist\", \"prompt\": \"Rank your top 2 favorite fruits from the list below\", \"location\": \"belowStimulus\", \"options\": [\"Apple\", \"Banana\", \"Orange\", \"Strawberry\", \"Grapes\"], \"numItems\": 2 }, { \"id\": \"ranking-categorical\", \"type\": \"ranking-categorical\", \"prompt\": \"Sort these hobbies into the categories of HIGH, MEDIUM, and LOW based on your level of interest.\", \"location\": \"belowStimulus\", \"options\": [\"Drawing\", \"Singing\", \"Hiking\", \"Dancing\", \"Photography\"] }, { \"id\": \"ranking-pairwise\", \"type\": \"ranking-pairwise\", \"prompt\": \"Which meal would you prefer\", \"location\": \"belowStimulus\", \"options\": [\"Pizza\", \"Sushi\", \"Burger\", \"Pasta\", \"Salad\", \"Tacos\"] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2248,6 +2345,10 @@ "additionalProperties": false, "description": "The ReactiveResponse interface is used to define the properties of a reactive response. ReactiveResponses render as a list, that is connected to a WebsiteComponent, VegaComponent, or ReactComponent. When data is sent from the components, it is displayed in the list.\n\n```js { \"id\": \"reactiveResponse\", \"prompt\": \"Answer clicked in the stimulus\", \"location\": \"aboveStimulus\", \"type\": \"reactive\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2394,6 +2495,9 @@ }, { "$ref": "#/definitions/TextOnlyResponse" + }, + { + "$ref": "#/definitions/DividerResponse" } ] }, @@ -2401,6 +2505,10 @@ "additionalProperties": false, "description": "The ShortTextResponse interface is used to define the properties of a short text response. ShortTextResponses render as a text input that accepts any text and can optionally have a placeholder.\n\n```js { \"id\": \"q-short-text\", \"prompt\": \"Short text example\", \"location\": \"aboveStimulus\", \"type\": \"shortText\", \"placeholder\": \"Enter your answer here\" } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2496,6 +2604,10 @@ "additionalProperties": false, "description": "The SliderResponse interface is used to define the properties of a slider response. SliderResponses render as a slider input with user specified steps. For example, you could have steps of 0, 50, and 100.\n\nExample: ```js { \"id\": \"q-slider\", \"prompt\": \"How are you feeling?\", \"location\": \"aboveStimulus\", \"type\": \"slider\", \"options\": [ { \"label\": \"Bad\", \"value\": 0 }, { \"label\": \"OK\", \"value\": 50 }, { \"label\": \"Good\", \"value\": 100 } ] } ```", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "description": "Controls whether the response is hidden.", "type": "boolean" @@ -2885,6 +2997,10 @@ "additionalProperties": false, "description": "The TextOnlyResponse interface is used to define the properties of a text only response. TextOnlyResponses render as a block of text that is displayed to the user. This can be used to display instructions or other information. It does not accept any input from the user.\n\nExample: ```js { \"id\": \"textOnlyResponse\", \"type\": \"textOnly\", \"prompt\": \"This is a text only response, it accepts markdown so you can **bold** or _italicize_ text.\", \"location\": \"belowStimulus\", \"restartEnumeration\": true } ```\n\nIn this example, the text only response is displayed below the stimulus and the enumeration of the questions is restarted.", "properties": { + "excludeFromRandomization": { + "description": "Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false.", + "type": "boolean" + }, "hidden": { "not": {} }, diff --git a/src/parser/types.ts b/src/parser/types.ts index d14af73845..7df570153d 100644 --- a/src/parser/types.ts +++ b/src/parser/types.ts @@ -266,8 +266,10 @@ export interface BaseResponse { withDontKnow?: boolean; /** The path to the external stylesheet file. */ stylesheetPath?: string; - /** You can set styles here, using React CSSProperties, for example: `{"width": 100}` or `{"width": "50%"}` */ + /** You can set styles here, using React CSSProperties, for example: `{"width": 100}` or `{"width": "50%"}` */ style?: Styles; + /** Exclude response from randomization. If present, will override the responseOrder randomization setting in the components. Defaults to false. */ + excludeFromRandomization?: boolean; } /** @@ -692,7 +694,36 @@ export interface TextOnlyResponse extends Omit { + type: 'divider'; + + prompt?: undefined; + infoText?: undefined; + secondaryText?: undefined; + required?: undefined; + requiredValue?: undefined; + requiredLabel?: undefined; + paramCapture?: undefined; + hidden?: undefined; + withDontKnow?: undefined; +} + +export type Response = NumericalResponse | ShortTextResponse | LongTextResponse | LikertResponse | DropdownResponse | SliderResponse | RadioResponse | CheckboxResponse | RankingResponse | ReactiveResponse | MatrixResponse | ButtonsResponse | TextOnlyResponse | DividerResponse; /** * The Answer interface is used to define the properties of an answer. Answers are used to define the correct answer for a task. These are generally used in training tasks or if skip logic is required based on the answer. diff --git a/src/public/libraries/virtual-chinrest/assets/ViewingDistanceCalibration.tsx b/src/public/libraries/virtual-chinrest/assets/ViewingDistanceCalibration.tsx index a5dc622062..0c07a55a5e 100644 --- a/src/public/libraries/virtual-chinrest/assets/ViewingDistanceCalibration.tsx +++ b/src/public/libraries/virtual-chinrest/assets/ViewingDistanceCalibration.tsx @@ -171,14 +171,14 @@ export default function ViewingDistanceCalibration({ parameters, setAnswer }: St - Put your left hand on the + Put your left hand on the  space bar . Cover your right eye with your right hand. Using your left eye, focus on the black square. Keep your focus on the black square. - The + The  red ball {' '} will disappear as it moves from right to left. diff --git a/src/public/tutorial/assets/_answers/replication/JNDDynamic.tsx b/src/public/tutorial/assets/_answers/replication/JNDDynamic.tsx new file mode 100644 index 0000000000..cf7c998e1c --- /dev/null +++ b/src/public/tutorial/assets/_answers/replication/JNDDynamic.tsx @@ -0,0 +1,47 @@ +import { JumpFunctionParameters, JumpFunctionReturnVal, StoredAnswer } from '../../../../../store/types'; + +const findLatestTrial = (allDynamicAnswers: StoredAnswer[]) => { + const trials = allDynamicAnswers + .sort((a, b) => parseInt(a.trialOrder.split('_').at(-1) || '0', 10) - parseInt(b.trialOrder.split('_').at(-1) || '0', 10)); + + return trials.at(-1)!; +}; + +export default function func({ answers }: JumpFunctionParameters<{ r1: number, r2: number, counter: number }>): JumpFunctionReturnVal { + const allDynamicAnswers = Object.values(answers) + .filter((answer) => answer.componentName === 'trial'); + + // First trial + if (allDynamicAnswers.length === 0) { + return { + component: 'trial', + parameters: { + r1: 0.1, + r2: 0.9, + }, + correctAnswer: [{ id: 'buttonsResponse', answer: 'right' }], + }; + } + + if (allDynamicAnswers.length === 9) { + return { component: null }; + } + + const latestTrial = findLatestTrial(allDynamicAnswers); + + const right = latestTrial.parameters.r2 === 0.9; + + const approachingValue = right ? latestTrial.parameters.r1 + 0.1 : latestTrial.parameters.r2 + 0.1; + + const r1 = right ? 0.9 : approachingValue; + const r2 = right ? approachingValue : 0.9; + + return { + component: 'trial', + parameters: { + r1, + r2, + }, + correctAnswer: [{ id: 'buttonsResponse', answer: right ? 'left' : 'right' }], + }; +} diff --git a/src/public/tutorial/assets/_answers/replication/Scatter.tsx b/src/public/tutorial/assets/_answers/replication/Scatter.tsx new file mode 100644 index 0000000000..2835ba4782 --- /dev/null +++ b/src/public/tutorial/assets/_answers/replication/Scatter.tsx @@ -0,0 +1,114 @@ +/* eslint-disable react-hooks/exhaustive-deps */ +/** + * Authors: WPI Data Visualization Team + * Modified by: The ReVISit Team + * Description: + * This file loads a pre-generated dataset and renders a Scatter Plot using D3. + */ + +import { scaleLinear } from 'd3-scale'; +import { axisLeft, axisBottom } from 'd3-axis'; +import { + useCallback, useEffect, useRef, useState, +} from 'react'; +import { select } from 'd3-selection'; +import { PREFIX } from '../../../../../utils/Prefix'; + +const width = 300; +const height = 300; + +export function Scatter({ r, datasetName } : { r: number, datasetName: string }) { + const d3Container = useRef(null); + const [data, setData] = useState<[number, number][]>([]); + const [isHover, setIsHover] = useState(false); + + const margin = { + left: 0, top: 20, right: 20, bottom: 20, + }; + const innerHeight = height - margin.bottom; + const innerWidth = width - margin.left - margin.right; + + useEffect(() => { + const fetchData = async () => { + try { + const filePath = `${PREFIX}tutorial/assets/datasets/size_100/${datasetName}`; + + const response = await fetch(filePath); + + if (!response.ok) { + throw new Error(`Failed to fetch dataset: ${filePath}`); + } + + const text = await response.text(); + const rows = text.trim().split('\n').slice(1); + + const parsedData = rows.map((row) => { + const [x, y] = row.split(',').map(Number); + return [x, y] as [number, number]; + }); + + setData(parsedData); + } catch (error) { + console.error('Error loading dataset:', error); + } + }; + + fetchData(); + }, [r]); + + const createChart = useCallback(() => { + if (data.length === 0) return; + + const xScale = scaleLinear().domain([0, 1]).range([0, innerWidth]); + const yScale = scaleLinear().domain([0, 1]).range([innerHeight, 0]); + + const xAxis = axisBottom(xScale).tickSize(0).tickFormat(() => ''); + const yAxis = axisLeft(yScale).tickSize(0).tickFormat(() => ''); + + const svg = select(d3Container.current).attr('width', width).attr('height', height); + svg.selectAll('*').remove(); + + svg.append('g') + .attr('transform', `translate(${margin.left}, ${height - margin.bottom + 19})`) + .call(xAxis); + + svg.append('g') + .attr('transform', `translate(${margin.left}, ${margin.top})`) + .call(yAxis); + + svg.selectAll('.dot') + .data(data) + .enter() + .append('circle') + .attr('class', 'dot') + .attr('r', 2) + .attr('cx', (d) => xScale(d[0]) + margin.left) + .attr('cy', (d) => yScale(d[1]) + margin.top) + .style('fill', 'black'); + }, [data, innerWidth, innerHeight, margin.left, margin.top]); + + useEffect(() => { + createChart(); + }, [createChart]); + + return ( + setIsHover(true)} + onMouseLeave={() => setIsHover(false)} + > + + + + ); +} diff --git a/src/public/tutorial/assets/_answers/replication/ScatterWrapper.tsx b/src/public/tutorial/assets/_answers/replication/ScatterWrapper.tsx new file mode 100644 index 0000000000..2c4e8990e4 --- /dev/null +++ b/src/public/tutorial/assets/_answers/replication/ScatterWrapper.tsx @@ -0,0 +1,46 @@ +/** + * Authors: The ReVISit team + * Description: + * This file is the wrapper component for the Scatter plots + */ + +import { + Center, Group, Stack, Text, +} from '@mantine/core'; +import { Scatter } from './Scatter'; +import { StimulusParams } from '../../../../../store/types'; + +/** + * Holds 2 Scatter Plots + * @param param0 - r1 is the correlation value for 1, r2 is the correlation value for 2, + * onClick is a function that determines the functionality when a graph is clicked. + * @returns 2 Scatter Plots + */ +export default function ScatterWrapper({ parameters }: StimulusParams<{ r1: number; r2: number }>) { + const { r1, r2 } = parameters; + const r1DatasetName = `dataset_${r1.toFixed(1)}_size_100.csv`; + const r2DatasetName = `dataset_${r2.toFixed(1)}_size_100.csv`; + + return ( + + + Please select the visualization that appears to have a larger correlation. + + + You can either click the buttons or use the‚ left and right keys. + +
+ + + + +
+
+ ); +} diff --git a/src/public/tutorial/assets/replication/JNDDynamic.tsx b/src/public/tutorial/assets/replication/JNDDynamic.tsx new file mode 100644 index 0000000000..015fa764c7 --- /dev/null +++ b/src/public/tutorial/assets/replication/JNDDynamic.tsx @@ -0,0 +1 @@ +// Placeholder for tutorial dynamic replication sequence diff --git a/src/public/tutorial/assets/replication/Scatter.tsx b/src/public/tutorial/assets/replication/Scatter.tsx new file mode 100644 index 0000000000..6628f4ce1e --- /dev/null +++ b/src/public/tutorial/assets/replication/Scatter.tsx @@ -0,0 +1,114 @@ +/* eslint-disable react-hooks/exhaustive-deps */ +/** + * Authors: WPI Data Visualization Team + * Modified by: The ReVISit Team + * Description: + * This file loads a pre-generated dataset and renders a Scatter Plot using D3. + */ + +import { scaleLinear } from 'd3-scale'; +import { axisLeft, axisBottom } from 'd3-axis'; +import { + useCallback, useEffect, useRef, useState, +} from 'react'; +import { select } from 'd3-selection'; +import { PREFIX } from '../../../../utils/Prefix'; + +const width = 300; +const height = 300; + +export function Scatter({ r, datasetName } : { r: number, datasetName: string }) { + const d3Container = useRef(null); + const [data, setData] = useState<[number, number][]>([]); + const [isHover, setIsHover] = useState(false); + + const margin = { + left: 0, top: 20, right: 20, bottom: 20, + }; + const innerHeight = height - margin.bottom; + const innerWidth = width - margin.left - margin.right; + + useEffect(() => { + const fetchData = async () => { + try { + const filePath = `${PREFIX}tutorial/assets/datasets/size_100/${datasetName}`; + + const response = await fetch(filePath); + + if (!response.ok) { + throw new Error(`Failed to fetch dataset: ${filePath}`); + } + + const text = await response.text(); + const rows = text.trim().split('\n').slice(1); + + const parsedData = rows.map((row) => { + const [x, y] = row.split(',').map(Number); + return [x, y] as [number, number]; + }); + + setData(parsedData); + } catch (error) { + console.error('Error loading dataset:', error); + } + }; + + fetchData(); + }, [r]); + + const createChart = useCallback(() => { + if (data.length === 0) return; + + const xScale = scaleLinear().domain([0, 1]).range([0, innerWidth]); + const yScale = scaleLinear().domain([0, 1]).range([innerHeight, 0]); + + const xAxis = axisBottom(xScale).tickSize(0).tickFormat(() => ''); + const yAxis = axisLeft(yScale).tickSize(0).tickFormat(() => ''); + + const svg = select(d3Container.current).attr('width', width).attr('height', height); + svg.selectAll('*').remove(); + + svg.append('g') + .attr('transform', `translate(${margin.left}, ${height - margin.bottom + 19})`) + .call(xAxis); + + svg.append('g') + .attr('transform', `translate(${margin.left}, ${margin.top})`) + .call(yAxis); + + svg.selectAll('.dot') + .data(data) + .enter() + .append('circle') + .attr('class', 'dot') + .attr('r', 2) + .attr('cx', (d) => xScale(d[0]) + margin.left) + .attr('cy', (d) => yScale(d[1]) + margin.top) + .style('fill', 'black'); + }, [data, innerWidth, innerHeight, margin.left, margin.top]); + + useEffect(() => { + createChart(); + }, [createChart]); + + return ( + setIsHover(true)} + onMouseLeave={() => setIsHover(false)} + > + + + + ); +} diff --git a/src/public/tutorial/assets/replication/ScatterWrapper.tsx b/src/public/tutorial/assets/replication/ScatterWrapper.tsx new file mode 100644 index 0000000000..41d8448321 --- /dev/null +++ b/src/public/tutorial/assets/replication/ScatterWrapper.tsx @@ -0,0 +1 @@ +// Placeholder for the ScatterWrapper component diff --git a/src/storage/engines/SupabaseStorageEngine.ts b/src/storage/engines/SupabaseStorageEngine.ts index 127eed2ede..95405a68e5 100644 --- a/src/storage/engines/SupabaseStorageEngine.ts +++ b/src/storage/engines/SupabaseStorageEngine.ts @@ -727,6 +727,7 @@ export class SupabaseStorageEngine extends CloudStorageEngine { unsubscribe(callback: (cloudUser: StoredUser | null) => Promise) { let lastUid: string | null = null; + let count = 0; const { data: listener } = this.supabase.auth.onAuthStateChange(async (_event, session) => { const user = session?.user @@ -736,8 +737,15 @@ export class SupabaseStorageEngine extends CloudStorageEngine { } as StoredUser) : null; - // Only invoke callback if the user actually changed const uid = user?.uid ?? null; + // If first time and no user, just call back with null + if (user === null && count === 0) { + count += 1; + callback(null); + return; + } + + // Only invoke callback if the user actually changed if (uid === lastUid) return; lastUid = uid; diff --git a/src/store/hooks/useAuth.tsx b/src/store/hooks/useAuth.tsx index 6af987fec0..217a10a574 100644 --- a/src/store/hooks/useAuth.tsx +++ b/src/store/hooks/useAuth.tsx @@ -138,11 +138,12 @@ export function AuthProvider({ children } : { children: ReactNode }) { // Determine authentication listener based on storageEngine and authEnabled variable const determineAuthentication = async () => { if (storageEngine && isCloudStorageEngine(storageEngine)) { - const authInfo = await storageEngine?.getUserManagementData('authentication'); + const authInfo = await storageEngine.getUserManagementData('authentication'); if (authInfo?.isEnabled) { - storageEngine?.unsubscribe(handleAuthStateChanged); + storageEngine.unsubscribe(handleAuthStateChanged); + } else { + setUser(nonAuthUser); } - setUser(nonAuthUser); } else if (storageEngine) { setUser(nonAuthUser); } diff --git a/src/store/store.tsx b/src/store/store.tsx index 9ebe9faff7..b2f6b3d89f 100644 --- a/src/store/store.tsx +++ b/src/store/store.tsx @@ -111,7 +111,7 @@ export async function studyStoreCreator( config, showStudyBrowser: true, showHelpText: false, - alertModal: { show: false, message: '' }, + alertModal: { show: false, message: '', title: '' }, trialValidation: Object.keys(answers).length > 0 ? allValid : emptyValidation, reactiveAnswers: {}, metadata, @@ -205,7 +205,7 @@ export async function studyStoreCreator( toggleShowHelpText: (state) => { state.showHelpText = !state.showHelpText; }, - setAlertModal: (state, action: PayloadAction<{ show: boolean; message: string }>) => { + setAlertModal: (state, action: PayloadAction<{ show: boolean; message: string; title: string }>) => { state.alertModal = action.payload; }, setReactiveAnswers: (state, action: PayloadAction>>) => { diff --git a/src/store/types.ts b/src/store/types.ts index 4cc57495f7..cc03b2150c 100644 --- a/src/store/types.ts +++ b/src/store/types.ts @@ -166,7 +166,7 @@ export interface StoreState { config: StudyConfig; showStudyBrowser: boolean; showHelpText: boolean; - alertModal: { show: boolean, message: string }; + alertModal: { show: boolean, message: string, title: string }; trialValidation: TrialValidation; reactiveAnswers: Record>; metadata: ParticipantMetadata; diff --git a/src/utils/handleResponseRandomization.ts b/src/utils/handleResponseRandomization.ts index c364f1e55c..f07ab4d379 100644 --- a/src/utils/handleResponseRandomization.ts +++ b/src/utils/handleResponseRandomization.ts @@ -4,12 +4,14 @@ export function randomizeForm(componentConfig: IndividualComponent) { const response = componentConfig.response.map((r) => r.id); if (componentConfig.responseOrder === 'random') { - return { - response: [...response] - .map((value) => ({ value, sort: Math.random() })) - .sort((a, b) => a.sort - b.sort) - .map(({ value }) => value), - }; + const fixedIndices = componentConfig.response.flatMap((r, i) => (r.excludeFromRandomization ? [i] : [])); + const shuffled = componentConfig.response + .filter((r) => !r.excludeFromRandomization) + .map((r) => r.id) + .map((value) => ({ value, sort: Math.random() })) + .sort((a, b) => a.sort - b.sort) + .map(({ value }) => value); + return { response: componentConfig.response.map((r, i) => (fixedIndices.includes(i) ? r.id : shuffled.shift()!)) }; } return { response }; diff --git a/src/utils/useDisableBrowserBack.tsx b/src/utils/useDisableBrowserBack.tsx index 847273d245..735425caef 100644 --- a/src/utils/useDisableBrowserBack.tsx +++ b/src/utils/useDisableBrowserBack.tsx @@ -14,7 +14,7 @@ export function useDisableBrowserBack() { window.history.pushState(null, '', window.location.href); window.onpopstate = () => { window.history.pushState(null, '', window.location.href); - storeDispatch(setAlertModal({ show: true, message: 'Using the browser\'s back button is prohibited during the study.' })); + storeDispatch(setAlertModal({ show: true, message: 'Using the browser\'s back button is prohibited during the study.', title: 'Prohibited' })); }; } }, [currentStep, setAlertModal, storeDispatch]); diff --git a/yarn.lock b/yarn.lock index c1867d138d..8befb48aae 100644 --- a/yarn.lock +++ b/yarn.lock @@ -284,135 +284,135 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz#5e13fac887f08c44f76b0ccaf3370eb00fec9bb6" integrity sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg== -"@esbuild/aix-ppc64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz#2ae33300598132cc4cf580dbbb28d30fed3c5c49" - integrity sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg== - -"@esbuild/android-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz#927708b3db5d739d6cb7709136924cc81bec9b03" - integrity sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ== - -"@esbuild/android-arm@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.11.tgz#571f94e7f4068957ec4c2cfb907deae3d01b55ae" - integrity sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg== - -"@esbuild/android-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.11.tgz#8a3bf5cae6c560c7ececa3150b2bde76e0fb81e6" - integrity sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g== - -"@esbuild/darwin-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz#0a678c4ac4bf8717e67481e1a797e6c152f93c84" - integrity sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w== - -"@esbuild/darwin-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz#70f5e925a30c8309f1294d407a5e5e002e0315fe" - integrity sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ== - -"@esbuild/freebsd-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz#4ec1db687c5b2b78b44148025da9632397553e8a" - integrity sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA== - -"@esbuild/freebsd-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz#4c81abd1b142f1e9acfef8c5153d438ca53f44bb" - integrity sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw== - -"@esbuild/linux-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz#69517a111acfc2b93aa0fb5eaeb834c0202ccda5" - integrity sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA== - -"@esbuild/linux-arm@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz#58dac26eae2dba0fac5405052b9002dac088d38f" - integrity sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw== - -"@esbuild/linux-ia32@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz#b89d4efe9bdad46ba944f0f3b8ddd40834268c2b" - integrity sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw== - -"@esbuild/linux-loong64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz#11f603cb60ad14392c3f5c94d64b3cc8b630fbeb" - integrity sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw== - -"@esbuild/linux-mips64el@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz#b7d447ff0676b8ab247d69dac40a5cf08e5eeaf5" - integrity sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ== - -"@esbuild/linux-ppc64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz#b3a28ed7cc252a61b07ff7c8fd8a984ffd3a2f74" - integrity sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw== - -"@esbuild/linux-riscv64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz#ce75b08f7d871a75edcf4d2125f50b21dc9dc273" - integrity sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww== - -"@esbuild/linux-s390x@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz#cd08f6c73b6b6ff9ccdaabbd3ff6ad3dca99c263" - integrity sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw== - -"@esbuild/linux-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz#3c3718af31a95d8946ebd3c32bb1e699bdf74910" - integrity sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ== - -"@esbuild/netbsd-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz#b4c767082401e3a4e8595fe53c47cd7f097c8077" - integrity sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg== - -"@esbuild/netbsd-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz#f2a930458ed2941d1f11ebc34b9c7d61f7a4d034" - integrity sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A== - -"@esbuild/openbsd-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz#b4ae93c75aec48bc1e8a0154957a05f0641f2dad" - integrity sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg== - -"@esbuild/openbsd-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz#b42863959c8dcf9b01581522e40012d2c70045e2" - integrity sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw== - -"@esbuild/openharmony-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz#b2e717141c8fdf6bddd4010f0912e6b39e1640f1" - integrity sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ== - -"@esbuild/sunos-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz#9fbea1febe8778927804828883ec0f6dd80eb244" - integrity sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA== - -"@esbuild/win32-arm64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz#501539cedb24468336073383989a7323005a8935" - integrity sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q== - -"@esbuild/win32-ia32@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz#8ac7229aa82cef8f16ffb58f1176a973a7a15343" - integrity sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA== - -"@esbuild/win32-x64@0.25.11": - version "0.25.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz#5ecda6f3fe138b7e456f4e429edde33c823f392f" - integrity sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA== +"@esbuild/aix-ppc64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz#80fcbe36130e58b7670511e888b8e88a259ed76c" + integrity sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA== + +"@esbuild/android-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz#8aa4965f8d0a7982dc21734bf6601323a66da752" + integrity sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg== + +"@esbuild/android-arm@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz#300712101f7f50f1d2627a162e6e09b109b6767a" + integrity sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg== + +"@esbuild/android-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz#87dfb27161202bdc958ef48bb61b09c758faee16" + integrity sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg== + +"@esbuild/darwin-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz#79197898ec1ff745d21c071e1c7cc3c802f0c1fd" + integrity sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg== + +"@esbuild/darwin-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz#146400a8562133f45c4d2eadcf37ddd09718079e" + integrity sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA== + +"@esbuild/freebsd-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz#1c5f9ba7206e158fd2b24c59fa2d2c8bb47ca0fe" + integrity sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg== + +"@esbuild/freebsd-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz#ea631f4a36beaac4b9279fa0fcc6ca29eaeeb2b3" + integrity sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ== + +"@esbuild/linux-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz#e1066bce58394f1b1141deec8557a5f0a22f5977" + integrity sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ== + +"@esbuild/linux-arm@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz#452cd66b20932d08bdc53a8b61c0e30baf4348b9" + integrity sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw== + +"@esbuild/linux-ia32@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz#b24f8acc45bcf54192c7f2f3be1b53e6551eafe0" + integrity sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA== + +"@esbuild/linux-loong64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz#f9cfffa7fc8322571fbc4c8b3268caf15bd81ad0" + integrity sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng== + +"@esbuild/linux-mips64el@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz#575a14bd74644ffab891adc7d7e60d275296f2cd" + integrity sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw== + +"@esbuild/linux-ppc64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz#75b99c70a95fbd5f7739d7692befe60601591869" + integrity sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA== + +"@esbuild/linux-riscv64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz#2e3259440321a44e79ddf7535c325057da875cd6" + integrity sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w== + +"@esbuild/linux-s390x@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz#17676cabbfe5928da5b2a0d6df5d58cd08db2663" + integrity sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg== + +"@esbuild/linux-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz#0583775685ca82066d04c3507f09524d3cd7a306" + integrity sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw== + +"@esbuild/netbsd-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz#f04c4049cb2e252fe96b16fed90f70746b13f4a4" + integrity sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg== + +"@esbuild/netbsd-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz#77da0d0a0d826d7c921eea3d40292548b258a076" + integrity sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ== + +"@esbuild/openbsd-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz#6296f5867aedef28a81b22ab2009c786a952dccd" + integrity sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A== + +"@esbuild/openbsd-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz#f8d23303360e27b16cf065b23bbff43c14142679" + integrity sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw== + +"@esbuild/openharmony-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz#49e0b768744a3924be0d7fd97dd6ce9b2923d88d" + integrity sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg== + +"@esbuild/sunos-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz#a6ed7d6778d67e528c81fb165b23f4911b9b13d6" + integrity sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w== + +"@esbuild/win32-arm64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz#9ac14c378e1b653af17d08e7d3ce34caef587323" + integrity sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg== + +"@esbuild/win32-ia32@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz#918942dcbbb35cc14fca39afb91b5e6a3d127267" + integrity sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ== + +"@esbuild/win32-x64@0.25.12": + version "0.25.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz#9bdad8176be7811ad148d1f8772359041f46c6c5" + integrity sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA== "@eslint-community/eslint-utils@^4.7.0", "@eslint-community/eslint-utils@^4.8.0": version "4.9.0" @@ -422,16 +422,16 @@ eslint-visitor-keys "^3.4.3" "@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.12.1": - version "4.12.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" - integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== + version "4.12.2" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz#bccdf615bcf7b6e8db830ec0b8d21c9a25de597b" + integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew== "@eslint/compat@^1.3.2": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@eslint/compat/-/compat-1.4.0.tgz#6d6b2f198ddfecda3d4cbd5a6e9324fca54f2dfb" - integrity sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@eslint/compat/-/compat-1.4.1.tgz#81eaabb3e0b080350582c1a8092a2d355fabf03e" + integrity sha512-cfO82V9zxxGBxcQDr1lfaYB7wykTa0b00mGa36FrJl7iTFd0Z2cHfEYuxcBRP/iNijCsWsEkA+jzT8hGYmv33w== dependencies: - "@eslint/core" "^0.16.0" + "@eslint/core" "^0.17.0" "@eslint/config-array@^0.21.1": version "0.21.1" @@ -442,17 +442,17 @@ debug "^4.3.1" minimatch "^3.1.2" -"@eslint/config-helpers@^0.4.1": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.4.1.tgz#7d173a1a35fe256f0989a0fdd8d911ebbbf50037" - integrity sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw== +"@eslint/config-helpers@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.4.2.tgz#1bd006ceeb7e2e55b2b773ab318d300e1a66aeda" + integrity sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw== dependencies: - "@eslint/core" "^0.16.0" + "@eslint/core" "^0.17.0" -"@eslint/core@^0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.16.0.tgz#490254f275ba9667ddbab344f4f0a6b7a7bd7209" - integrity sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q== +"@eslint/core@^0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.17.0.tgz#77225820413d9617509da9342190a2019e78761c" + integrity sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ== dependencies: "@types/json-schema" "^7.0.15" @@ -471,22 +471,22 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@9.38.0", "@eslint/js@^9.36.0": - version "9.38.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.38.0.tgz#f7aa9c7577577f53302c1d795643589d7709ebd1" - integrity sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A== +"@eslint/js@9.39.1", "@eslint/js@^9.36.0": + version "9.39.1" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.39.1.tgz#0dd59c3a9f40e3f1882975c321470969243e0164" + integrity sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw== "@eslint/object-schema@^2.1.7": version "2.1.7" resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.7.tgz#6e2126a1347e86a4dedf8706ec67ff8e107ebbad" integrity sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA== -"@eslint/plugin-kit@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz#f6a245b42886abf6fc9c7ab7744a932250335ab2" - integrity sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A== +"@eslint/plugin-kit@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz#9779e3fd9b7ee33571a57435cf4335a1794a6cb2" + integrity sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA== dependencies: - "@eslint/core" "^0.16.0" + "@eslint/core" "^0.17.0" levn "^0.4.1" "@firebase/ai@1.4.1": @@ -1552,21 +1552,21 @@ reselect "^4.1.8" "@reduxjs/toolkit@^2.9.0": - version "2.9.1" - resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.9.1.tgz#5a917eb5258492a44a0ae21bd28dd5e6a8124dfe" - integrity sha512-sETJ3qO72y7L7WiR5K54UFLT3jRzAtqeBPVO15xC3bGA6kDqCH8m/v7BKCPH4czydXzz/1lPEGLvew7GjOO3Qw== + version "2.10.1" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.10.1.tgz#b3b9da21335eea409d3498544bcaf83b481a0195" + integrity sha512-/U17EXQ9Do9Yx4DlNGU6eVNfZvFJfYpUtRRdLf19PbPjdWBxNlxGZXywQZ1p1Nz8nMkWplTI7iD/23m07nolDA== dependencies: "@standard-schema/spec" "^1.0.0" "@standard-schema/utils" "^0.3.0" - immer "^10.0.3" + immer "^10.2.0" redux "^5.0.1" redux-thunk "^3.1.0" reselect "^5.1.0" -"@rolldown/pluginutils@1.0.0-beta.35": - version "1.0.0-beta.35" - resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.35.tgz#1a477e7742b154b67519d40e4fc17485de338e7a" - integrity sha512-slYrCpoxJUqzFDDNlvrOYRazQUNRvWPjXA17dAOISY3rDMxX6k8K4cj2H+hEYMHF81HO3uNd5rHVigAWRM5dSg== +"@rolldown/pluginutils@1.0.0-beta.47": + version "1.0.0-beta.47" + resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz#c282c4a8c39f3d6d2f1086aae09a34e6241f7a50" + integrity sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw== "@rollup/pluginutils@^5.0.2": version "5.3.0" @@ -1577,115 +1577,115 @@ estree-walker "^2.0.2" picomatch "^4.0.2" -"@rollup/rollup-android-arm-eabi@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz#0f44a2f8668ed87b040b6fe659358ac9239da4db" - integrity sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ== - -"@rollup/rollup-android-arm64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz#25b9a01deef6518a948431564c987bcb205274f5" - integrity sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA== - -"@rollup/rollup-darwin-arm64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz#8a102869c88f3780c7d5e6776afd3f19084ecd7f" - integrity sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA== - -"@rollup/rollup-darwin-x64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz#8e526417cd6f54daf1d0c04cf361160216581956" - integrity sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA== - -"@rollup/rollup-freebsd-arm64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz#0e7027054493f3409b1f219a3eac5efd128ef899" - integrity sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA== - -"@rollup/rollup-freebsd-x64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz#72b204a920139e9ec3d331bd9cfd9a0c248ccb10" - integrity sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz#ab1b522ebe5b7e06c99504cc38f6cd8b808ba41c" - integrity sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ== - -"@rollup/rollup-linux-arm-musleabihf@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz#f8cc30b638f1ee7e3d18eac24af47ea29d9beb00" - integrity sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ== - -"@rollup/rollup-linux-arm64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz#7af37a9e85f25db59dc8214172907b7e146c12cc" - integrity sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg== - -"@rollup/rollup-linux-arm64-musl@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz#a623eb0d3617c03b7a73716eb85c6e37b776f7e0" - integrity sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q== - -"@rollup/rollup-linux-loong64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz#76ea038b549c5c6c5f0d062942627c4066642ee2" - integrity sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA== - -"@rollup/rollup-linux-ppc64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz#d9a4c3f0a3492bc78f6fdfe8131ac61c7359ccd5" - integrity sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw== - -"@rollup/rollup-linux-riscv64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz#87ab033eebd1a9a1dd7b60509f6333ec1f82d994" - integrity sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw== - -"@rollup/rollup-linux-riscv64-musl@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz#bda3eb67e1c993c1ba12bc9c2f694e7703958d9f" - integrity sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg== - -"@rollup/rollup-linux-s390x-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz#f7bc10fbe096ab44694233dc42a2291ed5453d4b" - integrity sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ== - -"@rollup/rollup-linux-x64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz#a151cb1234cc9b2cf5e8cfc02aa91436b8f9e278" - integrity sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q== - -"@rollup/rollup-linux-x64-musl@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz#7859e196501cc3b3062d45d2776cfb4d2f3a9350" - integrity sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg== - -"@rollup/rollup-openharmony-arm64@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz#85d0df7233734df31e547c1e647d2a5300b3bf30" - integrity sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw== - -"@rollup/rollup-win32-arm64-msvc@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz#e62357d00458db17277b88adbf690bb855cac937" - integrity sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w== - -"@rollup/rollup-win32-ia32-msvc@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz#fc7cd40f44834a703c1f1c3fe8bcc27ce476cd50" - integrity sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg== - -"@rollup/rollup-win32-x64-gnu@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz#1a22acfc93c64a64a48c42672e857ee51774d0d3" - integrity sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ== - -"@rollup/rollup-win32-x64-msvc@4.52.5": - version "4.52.5" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz#1657f56326bbe0ac80eedc9f9c18fc1ddd24e107" - integrity sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg== +"@rollup/rollup-android-arm-eabi@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz#7131f3d364805067fd5596302aad9ebef1434b32" + integrity sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA== + +"@rollup/rollup-android-arm64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz#7ede14d7fcf7c57821a2731c04b29ccc03145d82" + integrity sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g== + +"@rollup/rollup-darwin-arm64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz#d59bf9ed582b38838e86a17f91720c17db6575b9" + integrity sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ== + +"@rollup/rollup-darwin-x64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz#a76278d9b9da9f84ea7909a14d93b915d5bbe01e" + integrity sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw== + +"@rollup/rollup-freebsd-arm64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz#1a94821a1f565b9eaa74187632d482e4c59a1707" + integrity sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA== + +"@rollup/rollup-freebsd-x64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz#aad2274680106b2b6549b1e35e5d3a7a9f1f16af" + integrity sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA== + +"@rollup/rollup-linux-arm-gnueabihf@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz#100fe4306399ffeec47318a3c9b8c0e5e8b07ddb" + integrity sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg== + +"@rollup/rollup-linux-arm-musleabihf@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz#b84634952604b950e18fa11fddebde898c5928d8" + integrity sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q== + +"@rollup/rollup-linux-arm64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz#dad6f2fb41c2485f29a98e40e9bd78253255dbf3" + integrity sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA== + +"@rollup/rollup-linux-arm64-musl@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz#0f3f77c8ce9fbf982f8a8378b70a73dc6704a706" + integrity sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ== + +"@rollup/rollup-linux-loong64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz#870bb94e9dad28bb3124ba49bd733deaa6aa2635" + integrity sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ== + +"@rollup/rollup-linux-ppc64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz#188427d11abefc6c9926e3870b3e032170f5577c" + integrity sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g== + +"@rollup/rollup-linux-riscv64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz#9dec6eadbbb5abd3b76fe624dc4f006913ff4a7f" + integrity sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA== + +"@rollup/rollup-linux-riscv64-musl@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz#b26ba1c80b6f104dc5bd83ed83181fc0411a0c38" + integrity sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ== + +"@rollup/rollup-linux-s390x-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz#dc83647189b68ad8d56a956a6fcaa4ee9c728190" + integrity sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w== + +"@rollup/rollup-linux-x64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz#42c3b8c94e9de37bd103cb2e26fb715118ef6459" + integrity sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw== + +"@rollup/rollup-linux-x64-musl@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz#d0e216ee1ea16bfafe35681b899b6a05258988e5" + integrity sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA== + +"@rollup/rollup-openharmony-arm64@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz#3acd0157cb8976f659442bfd8a99aca46f8a2931" + integrity sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A== + +"@rollup/rollup-win32-arm64-msvc@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz#3eb9e7d4d0e1d2e0850c4ee9aa2d0ddf89a8effa" + integrity sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA== + +"@rollup/rollup-win32-ia32-msvc@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz#d69280bc6680fe19e0956e965811946d542f6365" + integrity sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg== + +"@rollup/rollup-win32-x64-gnu@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz#d182ce91e342bad9cbb8b284cf33ac542b126ead" + integrity sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw== + +"@rollup/rollup-win32-x64-msvc@4.53.2": + version "4.53.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz#d9ab606437fd072b2cb7df7e54bcdc7f1ccbe8b4" + integrity sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA== "@rtsao/scc@^1.1.0": version "1.1.0" @@ -1874,74 +1874,74 @@ "@supabase/realtime-js" "2.15.5" "@supabase/storage-js" "2.12.1" -"@swc/core-darwin-arm64@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.13.5.tgz#7638c073946f9297753ed9a2eb198d07b2336a24" - integrity sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ== - -"@swc/core-darwin-x64@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.13.5.tgz#18061167378f0fb285e17818494bc6c89dd07551" - integrity sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng== - -"@swc/core-linux-arm-gnueabihf@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.13.5.tgz#4c8062bd598049b5b9b0beb762e075e76b4c23c3" - integrity sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ== - -"@swc/core-linux-arm64-gnu@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.13.5.tgz#7222d321197ea9304e387933e87d775849fc1ae6" - integrity sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw== - -"@swc/core-linux-arm64-musl@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.13.5.tgz#51e7958deaf37edc212bd9dc0ea1476f151d2bea" - integrity sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ== - -"@swc/core-linux-x64-gnu@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.13.5.tgz#3476beab93ab03e92844d955ca9d9289aa4a5993" - integrity sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA== - -"@swc/core-linux-x64-musl@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.13.5.tgz#f4934b1e77e2a297909bb3ab977836205c36e5e0" - integrity sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q== - -"@swc/core-win32-arm64-msvc@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.13.5.tgz#5084c107435cfc82d4d901bfb388dc319d38a236" - integrity sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw== - -"@swc/core-win32-ia32-msvc@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.13.5.tgz#f8b2e28bc51b30467e316ed736a130c1324b9880" - integrity sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw== - -"@swc/core-win32-x64-msvc@1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.13.5.tgz#13883cf3c63bf11b787e28dcdf75ca0cc49efa83" - integrity sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q== +"@swc/core-darwin-arm64@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.1.tgz#3e47fd61aec6ec3ede76c0e7eff8b206b9bcd727" + integrity sha512-vEPrVxegWIjKEz+1VCVuKRY89jhokhSmQ/YXBWLnmLj9cI08G61RTZJvdsIcjYUjjTu7NgZlYVK+b2y0fbh11g== + +"@swc/core-darwin-x64@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.15.1.tgz#7e4b866057208abb4629fb2e95a4eb901ce330e6" + integrity sha512-z9QguKxE3aldvwKHHDg5OlKehasbJBF1lacn5CnN6SlrHbdwokXHFA3nIoO3Bh1Tw7bCgFtdIR4jKlTTn3kBZA== + +"@swc/core-linux-arm-gnueabihf@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.1.tgz#0bcb201e5acf9966c72739bcbd3934a43e12bfd9" + integrity sha512-yS2FHA8E4YeiPG9YeYk/6mKiCWuXR5RdYlCmtlGzKcjWbI4GXUVe7+p9C0M6myRt3zdj3M1knmJxk52MQA9EZQ== + +"@swc/core-linux-arm64-gnu@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.1.tgz#cf10e46b5a4c66d6f4efcb3f640ad4d6f62460c2" + integrity sha512-IFrjDu7+5Y61jLsUqBVXlXutDoPBX10eEeNTjW6C1yzm+cSTE7ayiKXMIFri4gEZ4VpXS6MUgkwjxtDpIXTh+w== + +"@swc/core-linux-arm64-musl@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.1.tgz#7d4688f7f9f2aa7196b8d7e1661ebdd206bbd758" + integrity sha512-fKzP9mRQGbhc5QhJPIsqKNNX/jyWrZgBxmo3Nz1SPaepfCUc7RFmtcJQI5q8xAun3XabXjh90wqcY/OVyg2+Kg== + +"@swc/core-linux-x64-gnu@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.1.tgz#028fdb1e419d6bc1d422fb27e95928d0b9d7b782" + integrity sha512-ZLjMi138uTJxb+1wzo4cB8mIbJbAsSLWRNeHc1g1pMvkERPWOGlem+LEYkkzaFzCNv1J8aKcL653Vtw8INHQeg== + +"@swc/core-linux-x64-musl@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.1.tgz#7d9e481293dd2542a0479d7ae4929f6f57c7ed2a" + integrity sha512-jvSI1IdsIYey5kOITzyajjofXOOySVitmLxb45OPUjoNojql4sDojvlW5zoHXXFePdA6qAX4Y6KbzAOV3T3ctA== + +"@swc/core-win32-arm64-msvc@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.1.tgz#5b17333f912942c22e4e619e2cc9450649f402f2" + integrity sha512-X/FcDtNrDdY9r4FcXHt9QxUqC/2FbQdvZobCKHlHe8vTSKhUHOilWl5EBtkFVfsEs4D5/yAri9e3bJbwyBhhBw== + +"@swc/core-win32-ia32-msvc@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.1.tgz#d8eaa08300093ffef28f5f33c0f72d9e30ba8bfb" + integrity sha512-vfheiWBux8PpC87oy1cshcqzgH7alWYpnVq5jWe7xuVkjqjGGDbBUKuS84eJCdsWcVaB5EXIWLKt+11W3/BOwA== + +"@swc/core-win32-x64-msvc@1.15.1": + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.1.tgz#ae48e151b5230abc3015af4063c8f7a7a79b5f48" + integrity sha512-n3Ppn0LSov/IdlANq+8kxHqENuJRX5XtwQqPgQsgwKIcFq22u17NKfDs9vL5PwRsEHY6Xd67pnOqQX0h4AvbuQ== "@swc/core@^1.13.5": - version "1.13.5" - resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.13.5.tgz#93874b831d3bd121560e6fcd688972b7fc7baa26" - integrity sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ== + version "1.15.1" + resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.15.1.tgz#57eec6c405518875b30062861e6f4a93292b51b5" + integrity sha512-s9GN3M2jA32k+StvuS9uGe4ztf5KVGBdlJMMC6LR6Ah23Lq/CWKVcC3WeQi8qaAcLd+DiddoNCNMUWymLv+wWQ== dependencies: "@swc/counter" "^0.1.3" - "@swc/types" "^0.1.24" + "@swc/types" "^0.1.25" optionalDependencies: - "@swc/core-darwin-arm64" "1.13.5" - "@swc/core-darwin-x64" "1.13.5" - "@swc/core-linux-arm-gnueabihf" "1.13.5" - "@swc/core-linux-arm64-gnu" "1.13.5" - "@swc/core-linux-arm64-musl" "1.13.5" - "@swc/core-linux-x64-gnu" "1.13.5" - "@swc/core-linux-x64-musl" "1.13.5" - "@swc/core-win32-arm64-msvc" "1.13.5" - "@swc/core-win32-ia32-msvc" "1.13.5" - "@swc/core-win32-x64-msvc" "1.13.5" + "@swc/core-darwin-arm64" "1.15.1" + "@swc/core-darwin-x64" "1.15.1" + "@swc/core-linux-arm-gnueabihf" "1.15.1" + "@swc/core-linux-arm64-gnu" "1.15.1" + "@swc/core-linux-arm64-musl" "1.15.1" + "@swc/core-linux-x64-gnu" "1.15.1" + "@swc/core-linux-x64-musl" "1.15.1" + "@swc/core-win32-arm64-msvc" "1.15.1" + "@swc/core-win32-ia32-msvc" "1.15.1" + "@swc/core-win32-x64-msvc" "1.15.1" "@swc/counter@^0.1.3": version "0.1.3" @@ -1955,7 +1955,7 @@ dependencies: tslib "^2.8.0" -"@swc/types@^0.1.24": +"@swc/types@^0.1.25": version "0.1.25" resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.25.tgz#b517b2a60feb37dd933e542d93093719e4cf1078" integrity sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g== @@ -2416,9 +2416,9 @@ undici-types "~6.21.0" "@types/node@^24.5.2": - version "24.9.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-24.9.1.tgz#b7360b3c789089e57e192695a855aa4f6981a53c" - integrity sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg== + version "24.10.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.10.1.tgz#91e92182c93db8bd6224fca031e2370cef9a8f01" + integrity sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ== dependencies: undici-types "~7.16.0" @@ -2438,9 +2438,9 @@ integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw== "@types/react-dom@^19.1.9": - version "19.2.2" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.2.2.tgz#a4cc874797b7ddc9cb180ef0d5dc23f596fc2332" - integrity sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw== + version "19.2.3" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.2.3.tgz#c1e305d15a52a3e508d54dca770d202cb63abf2c" + integrity sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ== "@types/react-transition-group@^4.4.12": version "4.4.12" @@ -2455,9 +2455,9 @@ csstype "^3.0.2" "@types/react@^19.1.13": - version "19.2.2" - resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.2.tgz#ba123a75d4c2a51158697160a4ea2ff70aa6bf36" - integrity sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA== + version "19.2.3" + resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.3.tgz#264e4304219ff8be9e1cb4ee923c3bc6d8587089" + integrity sha512-k5dJVszUiNr1DSe8Cs+knKR6IrqhqdhpUwzqhkS8ecQTSf3THNtbfIp/umqHMpX2bv+9dkx3fwDv/86LcSfvSg== dependencies: csstype "^3.0.2" @@ -2496,78 +2496,78 @@ "@types/node" "*" "@typescript-eslint/eslint-plugin@^8.44.0": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.2.tgz#dc4ab93ee3d7e6c8e38820a0d6c7c93c7183e2dc" - integrity sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w== + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.4.tgz#005dc4eebcb27462f20de3afe888065f65cec100" + integrity sha512-R48VhmTJqplNyDxCyqqVkFSZIx1qX6PzwqgcXn1olLrzxcSBDlOsbtcnQuQhNtnNiJ4Xe5gREI1foajYaYU2Vg== dependencies: "@eslint-community/regexpp" "^4.10.0" - "@typescript-eslint/scope-manager" "8.46.2" - "@typescript-eslint/type-utils" "8.46.2" - "@typescript-eslint/utils" "8.46.2" - "@typescript-eslint/visitor-keys" "8.46.2" + "@typescript-eslint/scope-manager" "8.46.4" + "@typescript-eslint/type-utils" "8.46.4" + "@typescript-eslint/utils" "8.46.4" + "@typescript-eslint/visitor-keys" "8.46.4" graphemer "^1.4.0" ignore "^7.0.0" natural-compare "^1.4.0" ts-api-utils "^2.1.0" "@typescript-eslint/parser@^8.44.0": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.46.2.tgz#dd938d45d581ac8ffa9d8a418a50282b306f7ebf" - integrity sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g== - dependencies: - "@typescript-eslint/scope-manager" "8.46.2" - "@typescript-eslint/types" "8.46.2" - "@typescript-eslint/typescript-estree" "8.46.2" - "@typescript-eslint/visitor-keys" "8.46.2" + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.46.4.tgz#1a5bfd48be57bc07eec64e090ac46e89f47ade31" + integrity sha512-tK3GPFWbirvNgsNKto+UmB/cRtn6TZfyw0D6IKrW55n6Vbs7KJoZtI//kpTKzE/DUmmnAFD8/Ca46s7Obs92/w== + dependencies: + "@typescript-eslint/scope-manager" "8.46.4" + "@typescript-eslint/types" "8.46.4" + "@typescript-eslint/typescript-estree" "8.46.4" + "@typescript-eslint/visitor-keys" "8.46.4" debug "^4.3.4" -"@typescript-eslint/project-service@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.46.2.tgz#ab2f02a0de4da6a7eeb885af5e059be57819d608" - integrity sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg== +"@typescript-eslint/project-service@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.46.4.tgz#fa9872673b51fb57e5d5da034edbe17424ddd185" + integrity sha512-nPiRSKuvtTN+no/2N1kt2tUh/HoFzeEgOm9fQ6XQk4/ApGqjx0zFIIaLJ6wooR1HIoozvj2j6vTi/1fgAz7UYQ== dependencies: - "@typescript-eslint/tsconfig-utils" "^8.46.2" - "@typescript-eslint/types" "^8.46.2" + "@typescript-eslint/tsconfig-utils" "^8.46.4" + "@typescript-eslint/types" "^8.46.4" debug "^4.3.4" -"@typescript-eslint/scope-manager@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.2.tgz#7d37df2493c404450589acb3b5d0c69cc0670a88" - integrity sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA== +"@typescript-eslint/scope-manager@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.4.tgz#78c9b4856c0094def64ffa53ea955b46bec13304" + integrity sha512-tMDbLGXb1wC+McN1M6QeDx7P7c0UWO5z9CXqp7J8E+xGcJuUuevWKxuG8j41FoweS3+L41SkyKKkia16jpX7CA== dependencies: - "@typescript-eslint/types" "8.46.2" - "@typescript-eslint/visitor-keys" "8.46.2" + "@typescript-eslint/types" "8.46.4" + "@typescript-eslint/visitor-keys" "8.46.4" -"@typescript-eslint/tsconfig-utils@8.46.2", "@typescript-eslint/tsconfig-utils@^8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.2.tgz#d110451cb93bbd189865206ea37ef677c196828c" - integrity sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag== +"@typescript-eslint/tsconfig-utils@8.46.4", "@typescript-eslint/tsconfig-utils@^8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.4.tgz#989a338093b6b91b0552f1f51331d89ec6980382" + integrity sha512-+/XqaZPIAk6Cjg7NWgSGe27X4zMGqrFqZ8atJsX3CWxH/jACqWnrWI68h7nHQld0y+k9eTTjb9r+KU4twLoo9A== -"@typescript-eslint/type-utils@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.46.2.tgz#802d027864e6fb752e65425ed09f3e089fb4d384" - integrity sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA== +"@typescript-eslint/type-utils@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.46.4.tgz#ae71b428a3c138b5084affe47893c129949171e0" + integrity sha512-V4QC8h3fdT5Wro6vANk6eojqfbv5bpwHuMsBcJUJkqs2z5XnYhJzyz9Y02eUmF9u3PgXEUiOt4w4KHR3P+z0PQ== dependencies: - "@typescript-eslint/types" "8.46.2" - "@typescript-eslint/typescript-estree" "8.46.2" - "@typescript-eslint/utils" "8.46.2" + "@typescript-eslint/types" "8.46.4" + "@typescript-eslint/typescript-estree" "8.46.4" + "@typescript-eslint/utils" "8.46.4" debug "^4.3.4" ts-api-utils "^2.1.0" -"@typescript-eslint/types@8.46.2", "@typescript-eslint/types@^8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.2.tgz#2bad7348511b31e6e42579820e62b73145635763" - integrity sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ== +"@typescript-eslint/types@8.46.4", "@typescript-eslint/types@^8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.4.tgz#38022bfda051be80e4120eeefcd2b6e3e630a69b" + integrity sha512-USjyxm3gQEePdUwJBFjjGNG18xY9A2grDVGuk7/9AkjIF1L+ZrVnwR5VAU5JXtUnBL/Nwt3H31KlRDaksnM7/w== -"@typescript-eslint/typescript-estree@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.2.tgz#ab547a27e4222bb6a3281cb7e98705272e2c7d08" - integrity sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ== +"@typescript-eslint/typescript-estree@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.4.tgz#6a9eeab0da45bf400f22c818e0f47102a980ceaa" + integrity sha512-7oV2qEOr1d4NWNmpXLR35LvCfOkTNymY9oyW+lUHkmCno7aOmIf/hMaydnJBUTBMRCOGZh8YjkFOc8dadEoNGA== dependencies: - "@typescript-eslint/project-service" "8.46.2" - "@typescript-eslint/tsconfig-utils" "8.46.2" - "@typescript-eslint/types" "8.46.2" - "@typescript-eslint/visitor-keys" "8.46.2" + "@typescript-eslint/project-service" "8.46.4" + "@typescript-eslint/tsconfig-utils" "8.46.4" + "@typescript-eslint/types" "8.46.4" + "@typescript-eslint/visitor-keys" "8.46.4" debug "^4.3.4" fast-glob "^3.3.2" is-glob "^4.0.3" @@ -2575,22 +2575,22 @@ semver "^7.6.0" ts-api-utils "^2.1.0" -"@typescript-eslint/utils@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.46.2.tgz#b313d33d67f9918583af205bd7bcebf20f231732" - integrity sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg== +"@typescript-eslint/utils@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.46.4.tgz#ea7878ddd625948cad4424dc2752b1be236556f5" + integrity sha512-AbSv11fklGXV6T28dp2Me04Uw90R2iJ30g2bgLz529Koehrmkbs1r7paFqr1vPCZi7hHwYxYtxfyQMRC8QaVSg== dependencies: "@eslint-community/eslint-utils" "^4.7.0" - "@typescript-eslint/scope-manager" "8.46.2" - "@typescript-eslint/types" "8.46.2" - "@typescript-eslint/typescript-estree" "8.46.2" + "@typescript-eslint/scope-manager" "8.46.4" + "@typescript-eslint/types" "8.46.4" + "@typescript-eslint/typescript-estree" "8.46.4" -"@typescript-eslint/visitor-keys@8.46.2": - version "8.46.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.2.tgz#803fa298948c39acf810af21bdce6f8babfa9738" - integrity sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w== +"@typescript-eslint/visitor-keys@8.46.4": + version "8.46.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.4.tgz#07031bd8d3ca6474e121221dae1055daead888f1" + integrity sha512-/++5CYLQqsO9HFGLI7APrxBJYo+5OCMpViuhV8q5/Qa3o5mMrF//eQHks+PXcsAVaLdn817fMuS7zqoXNNZGaw== dependencies: - "@typescript-eslint/types" "8.46.2" + "@typescript-eslint/types" "8.46.4" eslint-visitor-keys "^4.2.1" "@ungap/structured-clone@^1.0.0": @@ -2641,11 +2641,11 @@ vega-lite "^5.2.0" "@vitejs/plugin-react-swc@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-swc/-/plugin-react-swc-4.1.0.tgz#257a55049ebaf9d0a873575b2dff3616e4e82b33" - integrity sha512-Ff690TUck0Anlh7wdIcnsVMhofeEVgm44Y4OYdeeEEPSKyZHzDI9gfVBvySEhDfXtBp8tLCbfsVKPWEMEjq8/g== + version "4.2.2" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-swc/-/plugin-react-swc-4.2.2.tgz#9818ed54318dcb0f254f6322c6bfbd0fcec2b087" + integrity sha512-x+rE6tsxq/gxrEJN3Nv3dIV60lFflPj94c90b+NNo6n1QV1QQUTLoL0MpaOVasUZ0zqVBn7ead1B5ecx1JAGfA== dependencies: - "@rolldown/pluginutils" "1.0.0-beta.35" + "@rolldown/pluginutils" "1.0.0-beta.47" "@swc/core" "^1.13.5" "@vitest/expect@3.2.4": @@ -2740,9 +2740,9 @@ ajv@^8.17.1: require-from-string "^2.0.2" ansi-escapes@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.1.1.tgz#fdd39427a7e5a26233e48a8b4366351629ffea1b" - integrity sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q== + version "7.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.2.0.tgz#31b25afa3edd3efc09d98c2fee831d460ff06b49" + integrity sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw== dependencies: environment "^1.0.0" @@ -3198,9 +3198,9 @@ cli-cursor@^5.0.0: restore-cursor "^5.0.0" cli-truncate@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.0.tgz#bb12607a62f0e4bb91a54aa4653b23347900bb55" - integrity sha512-7JDGG+4Zp0CsknDCedl0DYdaeOhc46QNpXi3NLQblkZpXXgA6LncLDUUyvrjSvZeF3VRQa+KiMGomazQrC1V8g== + version "5.1.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-5.1.1.tgz#455476face9904d94b7d11e98d9adbca15292ea5" + integrity sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A== dependencies: slice-ansi "^7.1.0" string-width "^8.0.0" @@ -3282,9 +3282,9 @@ commander@^13.1.0: integrity sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw== commander@^14.0.1: - version "14.0.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-14.0.1.tgz#2f9225c19e6ebd0dc4404dd45821b2caa17ea09b" - integrity sha512-2JkV3gUZUVrbNA+1sjBOYLsMZ5cEEl8GTFP2a4AVz5hvasAMCQ1D2l2le/cX+pV4N6ZU17zjUahLpIXRrnWL8A== + version "14.0.2" + resolved "https://registry.yarnpkg.com/commander/-/commander-14.0.2.tgz#b71fd37fe4069e4c3c7c13925252ada4eba14e8e" + integrity sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ== concat-map@0.0.1: version "0.0.1" @@ -3679,9 +3679,9 @@ data-view-byte-offset@^1.0.1: is-data-view "^1.0.1" dayjs@^1.11.18: - version "1.11.18" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.18.tgz#835fa712aac52ab9dec8b1494098774ed7070a11" - integrity sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA== + version "1.11.19" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.19.tgz#15dc98e854bb43917f12021806af897c58ae2938" + integrity sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw== debug@^3.2.7: version "3.2.7" @@ -4113,36 +4113,36 @@ es-to-primitive@^1.3.0: is-symbol "^1.0.4" esbuild@^0.25.0: - version "0.25.11" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.11.tgz#0f31b82f335652580f75ef6897bba81962d9ae3d" - integrity sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q== + version "0.25.12" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.12.tgz#97a1d041f4ab00c2fce2f838d2b9969a2d2a97a5" + integrity sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg== optionalDependencies: - "@esbuild/aix-ppc64" "0.25.11" - "@esbuild/android-arm" "0.25.11" - "@esbuild/android-arm64" "0.25.11" - "@esbuild/android-x64" "0.25.11" - "@esbuild/darwin-arm64" "0.25.11" - "@esbuild/darwin-x64" "0.25.11" - "@esbuild/freebsd-arm64" "0.25.11" - "@esbuild/freebsd-x64" "0.25.11" - "@esbuild/linux-arm" "0.25.11" - "@esbuild/linux-arm64" "0.25.11" - "@esbuild/linux-ia32" "0.25.11" - "@esbuild/linux-loong64" "0.25.11" - "@esbuild/linux-mips64el" "0.25.11" - "@esbuild/linux-ppc64" "0.25.11" - "@esbuild/linux-riscv64" "0.25.11" - "@esbuild/linux-s390x" "0.25.11" - "@esbuild/linux-x64" "0.25.11" - "@esbuild/netbsd-arm64" "0.25.11" - "@esbuild/netbsd-x64" "0.25.11" - "@esbuild/openbsd-arm64" "0.25.11" - "@esbuild/openbsd-x64" "0.25.11" - "@esbuild/openharmony-arm64" "0.25.11" - "@esbuild/sunos-x64" "0.25.11" - "@esbuild/win32-arm64" "0.25.11" - "@esbuild/win32-ia32" "0.25.11" - "@esbuild/win32-x64" "0.25.11" + "@esbuild/aix-ppc64" "0.25.12" + "@esbuild/android-arm" "0.25.12" + "@esbuild/android-arm64" "0.25.12" + "@esbuild/android-x64" "0.25.12" + "@esbuild/darwin-arm64" "0.25.12" + "@esbuild/darwin-x64" "0.25.12" + "@esbuild/freebsd-arm64" "0.25.12" + "@esbuild/freebsd-x64" "0.25.12" + "@esbuild/linux-arm" "0.25.12" + "@esbuild/linux-arm64" "0.25.12" + "@esbuild/linux-ia32" "0.25.12" + "@esbuild/linux-loong64" "0.25.12" + "@esbuild/linux-mips64el" "0.25.12" + "@esbuild/linux-ppc64" "0.25.12" + "@esbuild/linux-riscv64" "0.25.12" + "@esbuild/linux-s390x" "0.25.12" + "@esbuild/linux-x64" "0.25.12" + "@esbuild/netbsd-arm64" "0.25.12" + "@esbuild/netbsd-x64" "0.25.12" + "@esbuild/openbsd-arm64" "0.25.12" + "@esbuild/openbsd-x64" "0.25.12" + "@esbuild/openharmony-arm64" "0.25.12" + "@esbuild/sunos-x64" "0.25.12" + "@esbuild/win32-arm64" "0.25.12" + "@esbuild/win32-ia32" "0.25.12" + "@esbuild/win32-x64" "0.25.12" escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" @@ -4293,18 +4293,18 @@ eslint-visitor-keys@^4.2.1: integrity sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ== eslint@^9.36.0: - version "9.38.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.38.0.tgz#3957d2af804e5cf6cc503c618f60acc71acb2e7e" - integrity sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw== + version "9.39.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.39.1.tgz#be8bf7c6de77dcc4252b5a8dcb31c2efff74a6e5" + integrity sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g== dependencies: "@eslint-community/eslint-utils" "^4.8.0" "@eslint-community/regexpp" "^4.12.1" "@eslint/config-array" "^0.21.1" - "@eslint/config-helpers" "^0.4.1" - "@eslint/core" "^0.16.0" + "@eslint/config-helpers" "^0.4.2" + "@eslint/core" "^0.17.0" "@eslint/eslintrc" "^3.3.1" - "@eslint/js" "9.38.0" - "@eslint/plugin-kit" "^0.4.0" + "@eslint/js" "9.39.1" + "@eslint/plugin-kit" "^0.4.1" "@humanfs/node" "^0.16.6" "@humanwhocodes/module-importer" "^1.0.1" "@humanwhocodes/retry" "^0.4.2" @@ -4749,9 +4749,9 @@ globals@^14.0.0: integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== globals@^16.4.0: - version "16.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-16.4.0.tgz#574bc7e72993d40cf27cf6c241f324ee77808e51" - integrity sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw== + version "16.5.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-16.5.0.tgz#ccf1594a437b97653b2be13ed4d8f5c9f850cac1" + integrity sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ== globalthis@^1.0.3, globalthis@^1.0.4: version "1.0.4" @@ -5011,10 +5011,10 @@ immediate@~3.0.5: resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== -immer@^10.0.3: - version "10.1.3" - resolved "https://registry.yarnpkg.com/immer/-/immer-10.1.3.tgz#e38a0b97db59949d31d9b381b04c2e441b1c3747" - integrity sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw== +immer@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/immer/-/immer-10.2.0.tgz#88a4ce06a1af64172d254b70f7cb04df51c871b1" + integrity sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw== immer@^9.0.21: version "9.0.21" @@ -5599,19 +5599,19 @@ linkify-it@^5.0.0: uc.micro "^2.0.0" lint-staged@^16.1.6: - version "16.2.5" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.5.tgz#85f9dbe48f379217b7b0554be17c9da222f373a6" - integrity sha512-o36wH3OX0jRWqDw5dOa8a8x6GXTKaLM+LvhRaucZxez0IxA+KNDUCiyjBfNgsMNmchwSX6urLSL7wShcUqAang== + version "16.2.6" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-16.2.6.tgz#760675e80f4b53337083d3f8bdecdd1f88079bf5" + integrity sha512-s1gphtDbV4bmW1eylXpVMk2u7is7YsrLl8hzrtvC70h4ByhcMLZFY01Fx05ZUDNuv1H8HO4E+e2zgejV1jVwNw== dependencies: commander "^14.0.1" - listr2 "^9.0.4" + listr2 "^9.0.5" micromatch "^4.0.8" nano-spawn "^2.0.0" pidtree "^0.6.0" string-argv "^0.3.2" yaml "^2.8.1" -listr2@^9.0.4: +listr2@^9.0.5: version "9.0.5" resolved "https://registry.yarnpkg.com/listr2/-/listr2-9.0.5.tgz#92df7c4416a6da630eb9ef46da469b70de97b316" integrity sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g== @@ -7075,9 +7075,9 @@ react-responsive@^9.0.2: shallow-equal "^1.2.1" react-router@^7.9.1: - version "7.9.4" - resolved "https://registry.yarnpkg.com/react-router/-/react-router-7.9.4.tgz#2c4249e5d0a6bb8b8f6bf0ede8f5077e4ff8024f" - integrity sha512-SD3G8HKviFHg9xj7dNODUKDFgpG4xqD5nhyd0mYoB5iISepuZAvzSr8ywxgxKJ52yRzf/HWtVHc9AWwoTbljvA== + version "7.9.5" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-7.9.5.tgz#68722186b4c9f42be36e658d9fe5d62ac1e0808b" + integrity sha512-JmxqrnBZ6E9hWmf02jzNn9Jm3UqyeimyiwzD69NjxGySG6lIz/1LVPsoTCwN7NBX2XjCEa1LIX5EMz1j2b6u6A== dependencies: cookie "^1.0.1" set-cookie-parser "^2.6.0" @@ -7376,34 +7376,34 @@ robust-predicates@^3.0.2: integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg== rollup@^4.43.0: - version "4.52.5" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.52.5.tgz#96982cdcaedcdd51b12359981f240f94304ec235" - integrity sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw== + version "4.53.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.53.2.tgz#98e73ee51e119cb9d88b07d026c959522416420a" + integrity sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g== dependencies: "@types/estree" "1.0.8" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.52.5" - "@rollup/rollup-android-arm64" "4.52.5" - "@rollup/rollup-darwin-arm64" "4.52.5" - "@rollup/rollup-darwin-x64" "4.52.5" - "@rollup/rollup-freebsd-arm64" "4.52.5" - "@rollup/rollup-freebsd-x64" "4.52.5" - "@rollup/rollup-linux-arm-gnueabihf" "4.52.5" - "@rollup/rollup-linux-arm-musleabihf" "4.52.5" - "@rollup/rollup-linux-arm64-gnu" "4.52.5" - "@rollup/rollup-linux-arm64-musl" "4.52.5" - "@rollup/rollup-linux-loong64-gnu" "4.52.5" - "@rollup/rollup-linux-ppc64-gnu" "4.52.5" - "@rollup/rollup-linux-riscv64-gnu" "4.52.5" - "@rollup/rollup-linux-riscv64-musl" "4.52.5" - "@rollup/rollup-linux-s390x-gnu" "4.52.5" - "@rollup/rollup-linux-x64-gnu" "4.52.5" - "@rollup/rollup-linux-x64-musl" "4.52.5" - "@rollup/rollup-openharmony-arm64" "4.52.5" - "@rollup/rollup-win32-arm64-msvc" "4.52.5" - "@rollup/rollup-win32-ia32-msvc" "4.52.5" - "@rollup/rollup-win32-x64-gnu" "4.52.5" - "@rollup/rollup-win32-x64-msvc" "4.52.5" + "@rollup/rollup-android-arm-eabi" "4.53.2" + "@rollup/rollup-android-arm64" "4.53.2" + "@rollup/rollup-darwin-arm64" "4.53.2" + "@rollup/rollup-darwin-x64" "4.53.2" + "@rollup/rollup-freebsd-arm64" "4.53.2" + "@rollup/rollup-freebsd-x64" "4.53.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.53.2" + "@rollup/rollup-linux-arm-musleabihf" "4.53.2" + "@rollup/rollup-linux-arm64-gnu" "4.53.2" + "@rollup/rollup-linux-arm64-musl" "4.53.2" + "@rollup/rollup-linux-loong64-gnu" "4.53.2" + "@rollup/rollup-linux-ppc64-gnu" "4.53.2" + "@rollup/rollup-linux-riscv64-gnu" "4.53.2" + "@rollup/rollup-linux-riscv64-musl" "4.53.2" + "@rollup/rollup-linux-s390x-gnu" "4.53.2" + "@rollup/rollup-linux-x64-gnu" "4.53.2" + "@rollup/rollup-linux-x64-musl" "4.53.2" + "@rollup/rollup-openharmony-arm64" "4.53.2" + "@rollup/rollup-win32-arm64-msvc" "4.53.2" + "@rollup/rollup-win32-ia32-msvc" "4.53.2" + "@rollup/rollup-win32-x64-gnu" "4.53.2" + "@rollup/rollup-win32-x64-msvc" "4.53.2" fsevents "~2.3.2" run-parallel@^1.1.9: @@ -7515,9 +7515,9 @@ semver@^7.6.0: integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== set-cookie-parser@^2.6.0: - version "2.7.1" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz#3016f150072202dfbe90fadee053573cc89d2943" - integrity sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== + version "2.7.2" + resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz#ccd08673a9ae5d2e44ea2a2de25089e67c7edf68" + integrity sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw== set-function-length@^1.2.1, set-function-length@^1.2.2: version "1.2.2" @@ -8877,9 +8877,9 @@ vite-node@3.2.4: fsevents "~2.3.3" vite@^7.1.6: - version "7.1.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-7.1.11.tgz#4d006746112fee056df64985191e846ebfb6007e" - integrity sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg== + version "7.2.2" + resolved "https://registry.yarnpkg.com/vite/-/vite-7.2.2.tgz#17dd62eac2d0ca0fa90131c5f56e4fefb8845362" + integrity sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ== dependencies: esbuild "^0.25.0" fdir "^6.5.0" @@ -8930,9 +8930,9 @@ wavesurfer-react@^3.0.4: integrity sha512-Eq+9ihd28UhX23ZVRrg9llpfo4ejUbYZ8oMEx+XwoymHiwLw44GwYVAo+iUPl9W8aVxuoncBKjbslukvqv0kFw== wavesurfer.js@^7.10.1: - version "7.11.0" - resolved "https://registry.yarnpkg.com/wavesurfer.js/-/wavesurfer.js-7.11.0.tgz#989b7d2044db0538abc5a37eb730b9a53bb40903" - integrity sha512-LOGdIBIKv/roYuQYClhoqhwbIdQL1GfobLnS2vx0heoLD9lu57OUHWE2DIsCNXBvCsmmbkUvJq9W8bPLPbikGw== + version "7.11.1" + resolved "https://registry.yarnpkg.com/wavesurfer.js/-/wavesurfer.js-7.11.1.tgz#d3f141f8e0cbcefb0f66a3b0f58411fa0addd395" + integrity sha512-8Q+wwItpjJAlhQ7crQLtKwgfbqqczm5/wx+76K4PptP+MBAjB0OA78+A9OuLnULz/8GpAQ+fKM6s81DonEO0Sg== web-namespaces@^2.0.0: version "2.0.1"