From ccfe79f1b4f66aa28d13da8b4a8414ddcc38fe2b Mon Sep 17 00:00:00 2001 From: Quarto GHA Workflow Runner Date: Fri, 5 Jul 2024 07:01:57 +0000 Subject: [PATCH] Built site for gh-pages --- .nojekyll | 2 +- .../Exercise 3 - Matplotlib.html | 69 +- Crash-Course-Numpy/00-NumPy-Arrays.html | 65 +- .../01-NumPy-Indexing-and-Selection.html | 65 +- Crash-Course-Numpy/02-NumPy-Operations.html | 65 +- Crash-Course-Numpy/03-NumPy-Exercises.html | 65 +- Crash-Course-Pandas/00-Intro-to-Pandas.html | 65 +- Crash-Course-Pandas/01-Series.html | 65 +- Crash-Course-Pandas/02-DataFrames.html | 149 +- Crash-Course-Pandas/03-Missing-Data.html | 85 +- Crash-Course-Pandas/04-Groupby.html | 105 +- Crash-Course-Pandas/05-Operations.html | 85 +- .../06-Data-Input-and-Output.html | 77 +- .../07-Pandas-Exercises-1.html | 79 +- .../09-Pandas-Exercises-2.html | 83 +- Crash-Course-Python/Exercise 1 - Python.html | 835 +++---- comparision/Index.html | 65 +- comparision/dplyr-pandas.html | 73 +- comparision/ggplot2-matplotlib.html | 81 +- comparision/plsql-db2.html | 71 +- index.html | 63 +- machine-learning/transformer.html | 65 +- python-snippet/Code-optimize.html | 65 +- python-snippet/Environment.html | 65 +- python-snippet/Graphs.html | 65 +- python-snippet/Index.html | 65 +- python-snippet/JupyterNotebookFormat.html | 69 +- python-snippet/Modelling.html | 63 +- python-snippet/REST_API.html | 65 +- python-snippet/Statistics.html | 65 +- python-snippet/Ultilities.html | 65 +- .../VisualizeFeatureImportances.html | 65 +- .../beeswarm_strip_violin_plot.html | 65 +- .../convertLightGBMFromR2Python.html | 65 +- python-snippet/slopegraph.html | 67 +- r-snippet/DT.html | 67 +- r-snippet/create_package.html | 65 +- r-snippet/database.html | 65 +- r-snippet/dplyr.html | 65 +- r-snippet/file_folders.html | 67 +- r-snippet/gganimate.html | 67 +- r-snippet/ggplot2.html | 65 +- r-snippet/index.html | 65 +- r-snippet/mamba.html | 67 +- r-snippet/reticulate.html | 65 +- r-snippet/treemap.html | 67 +- search.json | 1934 ++++++++--------- site_libs/bootstrap/bootstrap-dark.min.css | 6 +- site_libs/bootstrap/bootstrap.min.css | 6 +- site_libs/bootstrap/images/pull.png | Bin 0 -> 1547 bytes .../bootstrap/images/render-commit-push.png | Bin 0 -> 8231 bytes .../quarto-syntax-highlighting.css | 2 + site_libs/quarto-html/quarto.js | 15 +- site_libs/quarto-nav/quarto-nav.js | 36 + site_libs/quarto-search/quarto-search.js | 6 +- sitemap.xml | 188 +- sqlserver-snippet/Index.html | 63 +- sqlserver-snippet/permissions.html | 65 +- sqlserver-snippet/synonym.html | 65 +- 59 files changed, 3422 insertions(+), 2915 deletions(-) create mode 100644 site_libs/bootstrap/images/pull.png create mode 100644 site_libs/bootstrap/images/render-commit-push.png diff --git a/.nojekyll b/.nojekyll index 1cd3b05..367ed4b 100644 --- a/.nojekyll +++ b/.nojekyll @@ -1 +1 @@ -118a7036 \ No newline at end of file +8341805f \ No newline at end of file diff --git a/Crash-Course-Matplotlib/Exercise 3 - Matplotlib.html b/Crash-Course-Matplotlib/Exercise 3 - Matplotlib.html index 00302ed..15bd365 100644 --- a/Crash-Course-Matplotlib/Exercise 3 - Matplotlib.html +++ b/Crash-Course-Matplotlib/Exercise 3 - Matplotlib.html @@ -2,12 +2,12 @@ - + -Snippets - Matplotlib - 2D and 3D plotting in Python +Matplotlib - 2D and 3D plotting in Python – Snippets - +
@@ -617,7 +616,6 @@

Format table

sepal_length
- @@ -802,18 +800,7 @@

Format table

} return false; } - const clipboard = new window.ClipboardJS('.code-copy-button', { - text: function(trigger) { - const codeEl = trigger.previousElementSibling.cloneNode(true); - for (const childEl of codeEl.children) { - if (isCodeAnnotation(childEl)) { - childEl.remove(); - } - } - return codeEl.innerText; - } - }); - clipboard.on('success', function(e) { + const onCopySuccess = function(e) { // button target const button = e.trigger; // don't keep focus @@ -845,7 +832,29 @@

Format table

}, 1000); // clear code selection e.clearSelection(); + } + const getTextToCopy = function(trigger) { + const codeEl = trigger.previousElementSibling.cloneNode(true); + for (const childEl of codeEl.children) { + if (isCodeAnnotation(childEl)) { + childEl.remove(); + } + } + return codeEl.innerText; + } + const clipboard = new window.ClipboardJS('.code-copy-button:not([data-in-quarto-modal])', { + text: getTextToCopy }); + clipboard.on('success', onCopySuccess); + if (window.document.getElementById('quarto-embedded-source-code-modal')) { + // For code content inside modals, clipBoardJS needs to be initialized with a container option + // TODO: Check when it could be a function (https://github.com/zenorocha/clipboard.js/issues/860) + const clipboardModal = new window.ClipboardJS('.code-copy-button[data-in-quarto-modal]', { + text: getTextToCopy, + container: window.document.getElementById('quarto-embedded-source-code-modal') + }); + clipboardModal.on('success', onCopySuccess); + } var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); var mailtoRegex = new RegExp(/^mailto:/); var filterRegex = new RegExp("https:\/\/nguyenngocbinh\.github\.io\/snippets"); @@ -853,7 +862,7 @@

Format table

return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href); } // Inspect non-navigation links and adorn them if external - var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)'); + var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool):not(.about-link)'); for (var i=0; i - + -Snippets - Modelling +Modelling – Snippets