Spaces:
Running
Running
command changes
Browse files- _site/functional_programming/05_functors.html +1 -1
- _site/index.html +61 -24
- _site/optimization/01_least_squares.html +1 -1
- _site/optimization/02_linear_program.html +1 -1
- _site/optimization/03_minimum_fuel_optimal_control.html +1 -1
- _site/optimization/04_quadratic_program.html +1 -1
- _site/optimization/05_portfolio_optimization.html +1 -1
- _site/optimization/06_convex_optimization.html +1 -1
- _site/optimization/07_sdp.html +1 -1
- _site/polars/01_why_polars.html +1 -1
- _site/polars/04_basic_operations.html +1 -1
- _site/polars/12_aggregations.html +1 -1
- _site/polars/14_user_defined_functions.html +1 -1
- _site/probability/01_sets.html +1 -1
- _site/probability/02_axioms.html +1 -1
- _site/probability/03_probability_of_or.html +1 -1
- _site/probability/04_conditional_probability.html +1 -1
- _site/probability/05_independence.html +1 -1
- _site/probability/06_probability_of_and.html +1 -1
- _site/probability/07_law_of_total_probability.html +1 -1
- _site/probability/08_bayes_theorem.html +1 -1
- _site/probability/09_random_variables.html +1 -1
- _site/probability/10_probability_mass_function.html +1 -1
- _site/python/001_numbers.html +1 -1
- _site/python/002_strings.html +1 -1
- _site/python/003_collections.html +1 -1
- _site/python/004_conditional_logic.html +1 -1
- _site/python/005_loops.html +1 -1
- _site/python/007_advanced_collections.html +1 -1
- _site/python/008_functions.html +1 -1
- _site/python/009_modules.html +1 -1
- _site/python/010_exceptions.html +1 -1
_site/functional_programming/05_functors.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "
|
59 |
<marimo-app-config data-config='{"width": "compact", "app_title": "Category Theory and Functors", "css_file": ""}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Category Theory and Functors</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "theme": "light", "cell_output": "above", "code_editor_font_size": 14, "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact", "app_title": "Category Theory and Functors", "css_file": ""}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Category Theory and Functors</title>
|
_site/index.html
CHANGED
@@ -251,7 +251,7 @@
|
|
251 |
background-color: var(--eva-terminal-bg);
|
252 |
border: 1px solid var(--eva-purple);
|
253 |
border-radius: var(--eva-border-radius);
|
254 |
-
transition: var(--eva-transition);
|
255 |
position: relative;
|
256 |
overflow: hidden;
|
257 |
height: 350px;
|
@@ -345,7 +345,7 @@
|
|
345 |
.eva-course-toggle {
|
346 |
color: var(--eva-purple);
|
347 |
font-size: 1.5rem;
|
348 |
-
transition: transform 0.
|
349 |
}
|
350 |
|
351 |
.eva-course.active .eva-course-toggle {
|
@@ -422,6 +422,8 @@
|
|
422 |
.eva-course.active {
|
423 |
height: auto;
|
424 |
min-height: 350px;
|
|
|
|
|
425 |
}
|
426 |
|
427 |
.eva-notebooks {
|
@@ -435,11 +437,13 @@
|
|
435 |
margin-bottom: 0.5rem;
|
436 |
padding: 0.75rem;
|
437 |
border-left: 2px solid var(--eva-blue);
|
438 |
-
transition:
|
439 |
display: flex;
|
440 |
align-items: center;
|
441 |
background-color: rgba(0, 0, 0, 0.2);
|
442 |
border-radius: 0 var(--eva-border-radius) var(--eva-border-radius) 0;
|
|
|
|
|
443 |
}
|
444 |
|
445 |
[data-theme="light"] .eva-notebook {
|
@@ -705,6 +709,18 @@
|
|
705 |
}
|
706 |
}
|
707 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
</style>
|
709 |
</head>
|
710 |
<body>
|
@@ -1083,31 +1099,52 @@
|
|
1083 |
function toggleCourse(course) {
|
1084 |
const isActive = course.classList.contains('active');
|
1085 |
|
1086 |
-
// First close all courses
|
1087 |
-
document.querySelectorAll('.eva-course').forEach(c => {
|
1088 |
-
c
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1089 |
});
|
1090 |
|
1091 |
// Toggle the clicked course
|
1092 |
if (!isActive) {
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
}
|
1112 |
}
|
1113 |
|
|
|
251 |
background-color: var(--eva-terminal-bg);
|
252 |
border: 1px solid var(--eva-purple);
|
253 |
border-radius: var(--eva-border-radius);
|
254 |
+
transition: var(--eva-transition), height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
255 |
position: relative;
|
256 |
overflow: hidden;
|
257 |
height: 350px;
|
|
|
345 |
.eva-course-toggle {
|
346 |
color: var(--eva-purple);
|
347 |
font-size: 1.5rem;
|
348 |
+
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
349 |
}
|
350 |
|
351 |
.eva-course.active .eva-course-toggle {
|
|
|
422 |
.eva-course.active {
|
423 |
height: auto;
|
424 |
min-height: 350px;
|
425 |
+
max-height: 800px;
|
426 |
+
transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s ease, box-shadow 0.3s ease;
|
427 |
}
|
428 |
|
429 |
.eva-notebooks {
|
|
|
437 |
margin-bottom: 0.5rem;
|
438 |
padding: 0.75rem;
|
439 |
border-left: 2px solid var(--eva-blue);
|
440 |
+
transition: all 0.25s ease;
|
441 |
display: flex;
|
442 |
align-items: center;
|
443 |
background-color: rgba(0, 0, 0, 0.2);
|
444 |
border-radius: 0 var(--eva-border-radius) var(--eva-border-radius) 0;
|
445 |
+
opacity: 1;
|
446 |
+
transform: translateX(0);
|
447 |
}
|
448 |
|
449 |
[data-theme="light"] .eva-notebook {
|
|
|
709 |
}
|
710 |
}
|
711 |
|
712 |
+
.eva-course.closing .eva-course-content {
|
713 |
+
opacity: 0;
|
714 |
+
transform: translateY(10px);
|
715 |
+
transition: opacity 0.2s ease, transform 0.2s ease;
|
716 |
+
}
|
717 |
+
|
718 |
+
.eva-course.closing .eva-course-front {
|
719 |
+
opacity: 1;
|
720 |
+
transform: translateY(0);
|
721 |
+
transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
|
722 |
+
}
|
723 |
+
|
724 |
</style>
|
725 |
</head>
|
726 |
<body>
|
|
|
1099 |
function toggleCourse(course) {
|
1100 |
const isActive = course.classList.contains('active');
|
1101 |
|
1102 |
+
// First close all courses with a slight delay for better visual effect
|
1103 |
+
document.querySelectorAll('.eva-course.active').forEach(c => {
|
1104 |
+
if (c !== course) {
|
1105 |
+
// Add a closing class for animation
|
1106 |
+
c.classList.add('closing');
|
1107 |
+
// Remove active class after a short delay
|
1108 |
+
setTimeout(() => {
|
1109 |
+
c.classList.remove('active');
|
1110 |
+
c.classList.remove('closing');
|
1111 |
+
}, 300);
|
1112 |
+
}
|
1113 |
});
|
1114 |
|
1115 |
// Toggle the clicked course
|
1116 |
if (!isActive) {
|
1117 |
+
// Add a small delay before opening to allow others to close
|
1118 |
+
setTimeout(() => {
|
1119 |
+
course.classList.add('active');
|
1120 |
+
|
1121 |
+
// Check if the course has any notebooks
|
1122 |
+
const notebooks = course.querySelectorAll('.eva-notebook');
|
1123 |
+
const content = course.querySelector('.eva-course-content');
|
1124 |
+
|
1125 |
+
if (notebooks.length === 0 && !content.querySelector('.eva-empty-message')) {
|
1126 |
+
// If no notebooks, show a message
|
1127 |
+
const emptyMessage = document.createElement('p');
|
1128 |
+
emptyMessage.className = 'eva-empty-message';
|
1129 |
+
emptyMessage.textContent = 'No notebooks available in this course yet.';
|
1130 |
+
emptyMessage.style.color = 'var(--eva-text)';
|
1131 |
+
emptyMessage.style.fontStyle = 'italic';
|
1132 |
+
emptyMessage.style.opacity = '0.7';
|
1133 |
+
emptyMessage.style.textAlign = 'center';
|
1134 |
+
emptyMessage.style.padding = '1rem 0';
|
1135 |
+
content.appendChild(emptyMessage);
|
1136 |
+
}
|
1137 |
+
|
1138 |
+
// Animate notebooks to appear sequentially
|
1139 |
+
notebooks.forEach((notebook, index) => {
|
1140 |
+
notebook.style.opacity = '0';
|
1141 |
+
notebook.style.transform = 'translateX(-10px)';
|
1142 |
+
setTimeout(() => {
|
1143 |
+
notebook.style.opacity = '1';
|
1144 |
+
notebook.style.transform = 'translateX(0)';
|
1145 |
+
}, 50 + (index * 30)); // Stagger the animations
|
1146 |
+
});
|
1147 |
+
}, 100);
|
1148 |
}
|
1149 |
}
|
1150 |
|
_site/optimization/01_least_squares.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "code_editor_font_size": 14, "theme": "light", "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 least squares</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "code_editor_font_size": 14, "theme": "light", "dataframes": "rich", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 least squares</title>
|
_site/optimization/02_linear_program.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "code_editor_font_size": 14, "dataframes": "rich", "default_width": "medium"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>02 linear program</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "cell_output": "above", "code_editor_font_size": 14, "dataframes": "rich", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>02 linear program</title>
|
_site/optimization/03_minimum_fuel_optimal_control.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>03 minimum fuel optimal control</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "code_editor_font_size": 14, "cell_output": "above", "theme": "light", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>03 minimum fuel optimal control</title>
|
_site/optimization/04_quadratic_program.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>04 quadratic program</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "code_editor_font_size": 14, "dataframes": "rich", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>04 quadratic program</title>
|
_site/optimization/05_portfolio_optimization.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>05 portfolio optimization</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "default_width": "medium", "theme": "light", "dataframes": "rich", "cell_output": "above"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>05 portfolio optimization</title>
|
_site/optimization/06_convex_optimization.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>06 convex optimization</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "code_editor_font_size": 14, "theme": "light", "default_width": "medium", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>06 convex optimization</title>
|
_site/optimization/07_sdp.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>07 sdp</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "cell_output": "above", "dataframes": "rich", "code_editor_font_size": 14, "theme": "light"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>07 sdp</title>
|
_site/polars/01_why_polars.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 why polars</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "theme": "light", "code_editor_font_size": 14, "cell_output": "above", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 why polars</title>
|
_site/polars/04_basic_operations.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "cell_output": "above", "dataframes": "rich", "
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>04 basic operations</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "cell_output": "above", "dataframes": "rich", "code_editor_font_size": 14, "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>04 basic operations</title>
|
_site/polars/12_aggregations.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>12 aggregations</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "default_width": "medium", "code_editor_font_size": 14, "cell_output": "above", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>12 aggregations</title>
|
_site/polars/14_user_defined_functions.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>14 user defined functions</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "code_editor_font_size": 14, "dataframes": "rich", "default_width": "medium", "theme": "light"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>14 user defined functions</title>
|
_site/probability/01_sets.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 sets</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "default_width": "medium", "dataframes": "rich", "code_editor_font_size": 14, "cell_output": "above"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>01 sets</title>
|
_site/probability/02_axioms.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>02 axioms</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "dataframes": "rich", "code_editor_font_size": 14, "theme": "light", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>02 axioms</title>
|
_site/probability/03_probability_of_or.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>03 probability of or</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "code_editor_font_size": 14, "default_width": "medium", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>03 probability of or</title>
|
_site/probability/04_conditional_probability.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Conditional Probability"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Conditional Probability</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "default_width": "medium", "cell_output": "above", "code_editor_font_size": 14, "theme": "light"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Conditional Probability"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Conditional Probability</title>
|
_site/probability/05_independence.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>05 independence</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "cell_output": "above", "default_width": "medium", "code_editor_font_size": 14, "theme": "light"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>05 independence</title>
|
_site/probability/06_probability_of_and.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>06 probability of and</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "theme": "light", "cell_output": "above", "default_width": "medium", "code_editor_font_size": 14}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>06 probability of and</title>
|
_site/probability/07_law_of_total_probability.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>07 law of total probability</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "dataframes": "rich", "code_editor_font_size": 14, "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>07 law of total probability</title>
|
_site/probability/08_bayes_theorem.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Bayes Theorem"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Bayes Theorem</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "default_width": "medium", "dataframes": "rich", "cell_output": "above", "theme": "light"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Bayes Theorem"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Bayes Theorem</title>
|
_site/probability/09_random_variables.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Random Variables"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Random Variables</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "cell_output": "above", "dataframes": "rich", "theme": "light", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Random Variables"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Random Variables</title>
|
_site/probability/10_probability_mass_function.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Probability Mass Functions"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Probability Mass Functions</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"cell_output": "above", "theme": "light", "default_width": "medium", "dataframes": "rich", "code_editor_font_size": 14}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium", "app_title": "Probability Mass Functions"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>Probability Mass Functions</title>
|
_site/python/001_numbers.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>001 numbers</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "theme": "light", "dataframes": "rich", "cell_output": "above", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>001 numbers</title>
|
_site/python/002_strings.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>002 strings</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "code_editor_font_size": 14, "cell_output": "above", "default_width": "medium", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>002 strings</title>
|
_site/python/003_collections.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>003 collections</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"theme": "light", "default_width": "medium", "code_editor_font_size": 14, "dataframes": "rich", "cell_output": "above"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "medium"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>003 collections</title>
|
_site/python/004_conditional_logic.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>004 conditional logic</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "cell_output": "above", "dataframes": "rich", "theme": "light", "code_editor_font_size": 14}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>004 conditional logic</title>
|
_site/python/005_loops.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>005 loops</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "theme": "light", "dataframes": "rich", "cell_output": "above", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>005 loops</title>
|
_site/python/007_advanced_collections.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>007 advanced collections</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "theme": "light", "default_width": "medium", "dataframes": "rich", "cell_output": "above"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>007 advanced collections</title>
|
_site/python/008_functions.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>008 functions</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"code_editor_font_size": 14, "cell_output": "above", "theme": "light", "default_width": "medium", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>008 functions</title>
|
_site/python/009_modules.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>009 modules</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"default_width": "medium", "theme": "light", "code_editor_font_size": 14, "cell_output": "above", "dataframes": "rich"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>009 modules</title>
|
_site/python/010_exceptions.html
CHANGED
@@ -55,7 +55,7 @@
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
-
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>010 exceptions</title>
|
|
|
55 |
<marimo-filename hidden>notebook.py</marimo-filename>
|
56 |
<marimo-mode data-mode='edit' hidden></marimo-mode>
|
57 |
<marimo-version data-version='0.11.9' hidden></marimo-version>
|
58 |
+
<marimo-user-config data-config='{"completion": {"activate_on_typing": true, "copilot": false}, "display": {"dataframes": "rich", "code_editor_font_size": 14, "cell_output": "above", "theme": "light", "default_width": "medium"}, "formatting": {"line_length": 79}, "keymap": {"preset": "default", "overrides": {}}, "runtime": {"auto_instantiate": true, "auto_reload": "off", "on_cell_change": "autorun", "watcher_on_save": "lazy", "output_max_bytes": 8000000, "std_stream_max_bytes": 1000000}, "save": {"autosave": "off", "autosave_delay": 1000, "format_on_save": false}, "package_management": {"manager": "pip"}, "server": {"browser": "default", "follow_symlink": false}, "snippets": {"custom_paths": [], "include_default_snippets": true}}' data-overrides='{}' hidden></marimo-user-config>
|
59 |
<marimo-app-config data-config='{"width": "compact"}' hidden></marimo-app-config>
|
60 |
<marimo-server-token data-token='123' hidden></marimo-server-token>
|
61 |
<title>010 exceptions</title>
|