-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from Tinkoff/monte-carlo
docs(roadmap): Добавлено описание метода Монте-Карло
- Loading branch information
Showing
13 changed files
with
515 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
label: Планирование | ||
position: 1 | ||
collapsible: false | ||
className: disabled-category |
Binary file added
BIN
+194 KB
...oadmap/management/job/tasks/planning/assets/Monte-Carlo-Burndown-chart-full.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+47.4 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-Carlo-Burndown-chart.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+125 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-Carlo-Result-Probably.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+210 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-Carlo-S-Curve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.2 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-Carlo-Throughput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+680 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-Carlo-with-risks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+559 KB
docs/roadmap/management/job/tasks/planning/assets/Monte-carlo-all-experiments.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions
13
docs/roadmap/management/job/tasks/planning/assets/monte-carlo-method.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.noWrap td { | ||
white-space: nowrap; | ||
padding: 2px; | ||
text-align: center; | ||
} | ||
|
||
.vertical td { | ||
white-space: nowrap; | ||
writing-mode: bt-rl; | ||
transform: rotate(-90deg); | ||
padding: 2px; | ||
text-align: center; | ||
} |
454 changes: 453 additions & 1 deletion
454
docs/roadmap/management/job/tasks/planning/monte-carlo-method.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
/** @type {import('@docusaurus/types').DocusaurusConfig} */ | ||
const math = require('remark-math'); | ||
const katex = require('rehype-katex'); | ||
module.exports = { | ||
title: 'Деливери менеджер', | ||
tagline: 'Кто это, задачи, обязанности, как им стать, карта развития', | ||
|
@@ -16,7 +18,7 @@ module.exports = { | |
themes: ['@docusaurus/theme-mermaid'], | ||
themeConfig: { | ||
mermaid: { | ||
theme: {light: 'base', dark: 'dark'}, | ||
theme: { light: 'base', dark: 'dark' }, | ||
options: { | ||
flowchart: { | ||
curve: 'monotoneX', | ||
|
@@ -49,14 +51,13 @@ module.exports = { | |
alt: 'База знаний профессии Деливери менеджер', | ||
src: 'img/logo.svg', | ||
}, | ||
items: [ | ||
{ | ||
items: [{ | ||
type: 'doc', | ||
docId: 'profession/about', | ||
position: 'left', | ||
label: 'Документация', | ||
}, | ||
{to: 'blog', label: 'Блог', position: 'left'}, | ||
{ to: 'blog', label: 'Блог', position: 'left' }, | ||
{ | ||
type: 'docsVersionDropdown', | ||
position: 'right', | ||
|
@@ -88,8 +89,9 @@ module.exports = { | |
}, | ||
sidebarPath: require.resolve('./sidebars.js'), | ||
// Please change this to your repo. | ||
editUrl: | ||
'https://github.com/Tinkoff/dm-knowledgebase/edit/main/', | ||
editUrl: 'https://github.com/Tinkoff/dm-knowledgebase/edit/main/', | ||
remarkPlugins: [math], | ||
rehypePlugins: [katex], | ||
}, | ||
gtag: { | ||
trackingID: 'G-CNJ52NL21B', | ||
|
@@ -101,6 +103,12 @@ module.exports = { | |
}, | ||
], | ||
], | ||
stylesheets: [{ | ||
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css', | ||
type: 'text/css', | ||
integrity: 'sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM', | ||
crossorigin: 'anonymous', | ||
}, ], | ||
plugins: [ | ||
[ | ||
require.resolve('docusaurus-lunr-search'), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1857,6 +1857,11 @@ | |
version "7.0.11" | ||
resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" | ||
|
||
"@types/katex@^0.11.0": | ||
version "0.11.1" | ||
resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.11.1.tgz#34de04477dcf79e2ef6c8d23b41a3d81f9ebeaf5" | ||
integrity sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg== | ||
|
||
"@types/mdast@^3.0.0": | ||
version "3.0.10" | ||
resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz" | ||
|
@@ -2704,7 +2709,7 @@ commander@^5.1.0: | |
version "5.1.0" | ||
resolved "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" | ||
|
||
commander@^8.3.0: | ||
commander@^8.0.0, commander@^8.3.0: | ||
version "8.3.0" | ||
resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" | ||
|
||
|
@@ -4085,7 +4090,7 @@ hast-util-has-property@^1.0.0: | |
version "1.0.4" | ||
resolved "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-1.0.4.tgz" | ||
|
||
hast-util-is-element@^1.0.0: | ||
hast-util-is-element@^1.0.0, hast-util-is-element@^1.1.0: | ||
version "1.1.0" | ||
resolved "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz" | ||
|
||
|
@@ -4680,6 +4685,13 @@ jsonfile@^6.0.1: | |
optionalDependencies: | ||
graceful-fs "^4.1.6" | ||
|
||
katex@^0.13.0: | ||
version "0.13.24" | ||
resolved "https://registry.yarnpkg.com/katex/-/katex-0.13.24.tgz#fe55455eb455698cb24b911a353d16a3c855d905" | ||
integrity sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w== | ||
dependencies: | ||
commander "^8.0.0" | ||
|
||
keyv@^3.0.0: | ||
version "3.1.0" | ||
resolved "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" | ||
|
@@ -5972,7 +5984,19 @@ regjsparser@^0.9.1: | |
dependencies: | ||
jsesc "~0.5.0" | ||
|
||
rehype-parse@^7.0.1: | ||
rehype-katex@^5.0.0: | ||
version "5.0.0" | ||
resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-5.0.0.tgz#b556f24fde918f28ba1cb642ea71c7e82f3373d7" | ||
integrity sha512-ksSuEKCql/IiIadOHiKRMjypva9BLhuwQNascMqaoGLDVd0k2NlE2wMvgZ3rpItzRKCd6vs8s7MFbb8pcR0AEg== | ||
dependencies: | ||
"@types/katex" "^0.11.0" | ||
hast-util-to-text "^2.0.0" | ||
katex "^0.13.0" | ||
rehype-parse "^7.0.0" | ||
unified "^9.0.0" | ||
unist-util-visit "^2.0.0" | ||
|
||
rehype-parse@^7.0.0, rehype-parse@^7.0.1: | ||
version "7.0.1" | ||
resolved "https://registry.npmjs.org/rehype-parse/-/rehype-parse-7.0.1.tgz" | ||
dependencies: | ||
|
@@ -5995,6 +6019,11 @@ [email protected]: | |
version "2.0.0" | ||
resolved "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz" | ||
|
||
remark-math@^3.0.1: | ||
version "3.0.1" | ||
resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-3.0.1.tgz#85a02a15b15cad34b89a27244d4887b3a95185bb" | ||
integrity sha512-epT77R/HK0x7NqrWHdSV75uNLwn8g9qTyMqCRCDujL0vj/6T6+yhdrR7mjELWtkse+Fw02kijAaBuVcHBor1+Q== | ||
|
||
[email protected]: | ||
version "1.6.22" | ||
resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz" | ||
|