{"id":191955,"date":"2023-06-14T10:34:06","date_gmt":"2023-06-14T14:34:06","guid":{"rendered":"https:\/\/ibkrcampus.com\/?p=191955"},"modified":"2023-06-16T16:37:25","modified_gmt":"2023-06-16T20:37:25","slug":"jupyter-notebook-shortcuts","status":"publish","type":"post","link":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/","title":{"rendered":"Jupyter\u00a0Notebook Shortcuts"},"content":{"rendered":"\n<p><em>The article &#8220;Jupyter Notebook Shortcuts&#8221; first appeared on <a href=\"https:\/\/algotrading101.com\/learn\/jupyter-notebook-shortcuts\/\">AlgoTrading101<\/a> blog.<\/em><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"730\" height=\"466\" data-src=\"\/campus\/wp-content\/uploads\/sites\/2\/2023\/06\/jupyter-notebook-shortcuts-algotrading101.jpg\" alt=\"\" class=\"wp-image-191957 lazyload\" data-srcset=\"https:\/\/ibkrcampus.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/06\/jupyter-notebook-shortcuts-algotrading101.jpg 730w, https:\/\/ibkrcampus.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/06\/jupyter-notebook-shortcuts-algotrading101-700x447.jpg 700w, https:\/\/ibkrcampus.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/06\/jupyter-notebook-shortcuts-algotrading101-300x192.jpg 300w\" data-sizes=\"(max-width: 730px) 100vw, 730px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 730px; aspect-ratio: 730\/466;\" \/><\/figure>\n\n\n\n<p>Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project. JuPyteR\u200a\u2014\u200ashort for Julia,Python and R\u200a\u2014\u200ais probably the most popular notebook used and comes as part of the standard anaconda installation process.<\/p>\n\n\n\n<figure class=\"wp-block-image img-twothird\"><img decoding=\"async\" width=\"300\" height=\"62\" data-src=\"\/campus\/wp-content\/uploads\/sites\/2\/2023\/06\/jupyter-notebook-shortcuts-algotrading101-2.jpg\" alt=\"\" class=\"wp-image-191958 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 300px; aspect-ratio: 300\/62;\" \/><\/figure>\n\n\n\n<p>When you click on the&nbsp;<strong>Help<\/strong>&nbsp;tab of Jupyter\u2019s taskbar you\u2019ll see a list of references, the user interface tour and much more. Included in this would be the&nbsp;<em>Keyboard Shortcuts&nbsp;<\/em>menu which lets you view all of the possible ways to quickly execute common track-pad tasks using your keyboard. Today we\u2019ll be talking about the most useful of these options.<\/p>\n\n\n\n<p>The&nbsp;<em>Keyboard Shortcuts<\/em>&nbsp;menu is divided into 2 categories called&nbsp;<strong>Command Mode<\/strong>&nbsp;and&nbsp;<strong>Edit Mode<\/strong>. We will be keeping this structure as we move on to the main event in our article.<\/p>\n\n\n\n<p><strong><em>Before we begin it is important for Mac users to keep the following conversion in&nbsp;mind:<\/em><\/strong><\/p>\n\n\n\n<p><code><em>Ctrl\u200a\u2014\u200a\u2318&nbsp;<\/em><\/code><em>command&nbsp;key<\/em><\/p>\n\n\n\n<p><code><em>Shift\u200a\u2014\u200a\u21e7&nbsp;<\/em><\/code><em>Shift<\/em><\/p>\n\n\n\n<p><code><em>Alt\u200a\u2014\u200a<\/em>\u2325<\/code><em>&nbsp;option<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-edit-mode\">Edit Mode<\/h3>\n\n\n\n<p>To enter the edit mode, press the&nbsp;<code>Enter<\/code>&nbsp;key. These shortcuts may seem very familiar to the ones you may use in other text editors and general computer use.<\/p>\n\n\n\n<p><code>Ctrl-S<\/code>: Save and Checkpoint&nbsp;<\/p>\n\n\n\n<p><code>Tab<\/code>: code completion or indent<\/p>\n\n\n\n<p><strong><em>Indenting Selected Text<\/em><\/strong><\/p>\n\n\n\n<p><code>Ctrl-]<\/code>: indent&nbsp;<code>Ctrl-[<\/code>: indent to the left (dedent)<\/p>\n\n\n\n<p><strong><em>More Text Editing<\/em><\/strong><\/p>\n\n\n\n<p><code>Ctrl-A<\/code>: select all&nbsp;<code>Ctrl-Z<\/code>: undo<\/p>\n\n\n\n<p><code>Ctrl-\/<\/code>: comment&nbsp;<code>Ctrl-D<\/code>: delete whole line<\/p>\n\n\n\n<p><code>Ctrl-U<\/code>: undo selection&nbsp;<code>Insert<\/code>: toggle overwrite flag<\/p>\n\n\n\n<p><strong><em>Go To<\/em><\/strong><\/p>\n\n\n\n<p><code>Ctrl-Home<\/code>: go to cell start&nbsp;<code>Ctrl-Up<\/code>: go to cell start&nbsp;<code>Ctrl-End<\/code>: go to cell end<\/p>\n\n\n\n<p><code>Ctrl-Down<\/code>: go to cell end&nbsp;<code>Ctrl-Left<\/code>: go one word left&nbsp;<\/p>\n\n\n\n<p><code>Ctrl-Right<\/code>: go one word right&nbsp;<\/p>\n\n\n\n<p><strong><em>Delete \/ Redo<\/em><\/strong><\/p>\n\n\n\n<p><code>Ctrl-Backspace<\/code>: delete word before&nbsp;<code>Ctrl-Delete<\/code>: delete word after<\/p>\n\n\n\n<p>&nbsp;<code>Ctrl-Y<\/code>: redo&nbsp;<code>Alt-U<\/code>: redo selection&nbsp;<\/p>\n\n\n\n<p><strong><em>Run<\/em><\/strong><\/p>\n\n\n\n<p><code>Shift-Enter<\/code>: run cell, select below&nbsp;<code>Ctrl-Enter<\/code>: run selected cells<\/p>\n\n\n\n<p><code>Alt-Enter<\/code>: run cell and insert below<\/p>\n\n\n\n<p><strong><em>Split<\/em><\/strong><\/p>\n\n\n\n<p><code>Ctrl-Shift-Minus<\/code>: split cell at cursor<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Mode&nbsp;<\/h3>\n\n\n\n<p>To enter the command mode, press the&nbsp;<code>Esc<\/code>&nbsp;key.<\/p>\n\n\n\n<p><code>Enter:<\/code>&nbsp;enter edit mode&nbsp;<code>F<\/code>: find and replace&nbsp;<\/p>\n\n\n\n<p><strong><em>Insert Cells<\/em><\/strong><\/p>\n\n\n\n<p><code>A<\/code>: insert cell above&nbsp;<code>B<\/code>: insert cell below<\/p>\n\n\n\n<p><strong><em>Run and Insert Cells<\/em><\/strong><\/p>\n\n\n\n<p><code>Shift-Enter<\/code>: run cell, select below&nbsp;<code>Alt-Enter:<\/code>&nbsp;run cell and insert below&nbsp;<\/p>\n\n\n\n<p><strong><em>Change Cell Type<\/em><\/strong><\/p>\n\n\n\n<p><code>Y<\/code>: change cell to code&nbsp;<code>M<\/code>: change cell to markdown&nbsp;<code>R<\/code>: change cell to raw<\/p>\n\n\n\n<p><strong><em>Change Markdown Header Size\u200a\u2014\u200aUp to 6 sizes with 1 being the Largest<\/em><\/strong><\/p>\n\n\n\n<p><code>1<\/code>: change cell to heading size 1&nbsp;<code>2<\/code>: change cell to heading size 2&nbsp;<\/p>\n\n\n\n<p><strong><em>Select Multiple Cells<\/em><\/strong><\/p>\n\n\n\n<p><code>Shift-Up<\/code>: extend selected cells above&nbsp;<code>Shift-Down<\/code>: extend selected cells below<\/p>\n\n\n\n<p><strong><em>Cut, Copy and Paste<\/em><\/strong><\/p>\n\n\n\n<p><code>X<\/code>: cut selected cells&nbsp;<code>C<\/code>: copy selected cells<\/p>\n\n\n\n<p><code>Shift-V<\/code>: paste cells above&nbsp;<code>V<\/code>: paste cells below<\/p>\n\n\n\n<p><strong><em>Merge Cells<\/em><\/strong><\/p>\n\n\n\n<p><code>Shift-M:&nbsp;<\/code>merge selected cells, or current cell with cell below if only one cell is selected<\/p>\n\n\n\n<p><code>Z<\/code>: undo cell deletion&nbsp;<code>O<\/code>: toggle output of selected cells<\/p>\n\n\n\n<p><strong><em>The keystrokes for the following are misleading. We have listed them as they are in the keyboard shortcut menu, however it is important for you to remember that the actual process does NOT include the comma. So for deleting selected cells you would actually type&nbsp;<\/em><\/strong><code>DD<\/code>&nbsp;.<\/p>\n\n\n\n<p><code>D,D<\/code>: delete selected cells&nbsp;<code>I,I<\/code>: interrupt the kernel&nbsp;<code>0,0<\/code>: restart the kernel&nbsp;<\/p>\n\n\n\n<p><strong><em>Miscellaneous<\/em><\/strong><\/p>\n\n\n\n<p><code>H<\/code>: show keyboard shortcuts&nbsp;<code>Q<\/code>: close the pager<\/p>\n\n\n\n<p><code>Shift-L<\/code>: toggles line numbers in all cells, and persist the setting<\/p>\n\n\n\n<p><code>Shift-Space<\/code>: scroll notebook up&nbsp;<code>Space<\/code>: scroll notebook down<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Aside<\/h4>\n\n\n\n<p>The command palette runs any command by name. To open the command palette, use&nbsp;<code>Esc<\/code>&nbsp;to enter command mode and then press&nbsp;<code>P<\/code>&nbsp;.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Shortcuts can prove quite useful in helping you to maintain focus by avoiding some extra scrolling with your mouse. In fact Brainscape claims that just by using keyboard shortcuts alone, you can increase your overall productivity by 3.3%, saving yourself a total of 64 wasted hours in a year. Whether you believe this or not, at the very least using shortcuts definitely helps you cut-down on using that annoying track pad, while making you look&nbsp;<strong>super cool<\/strong>&nbsp;at the same time.<\/p>\n\n\n\n<p>I kid, but until next time, do enjoy the shortcuts that you\u2019ve learned today!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project. <\/p>\n","protected":false},"author":1175,"featured_media":28966,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[339,348,343,349,338,342],"tags":[806,6614],"contributors-categories":[13746],"class_list":{"0":"post-191955","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-data-science","8":"category-julia-development","9":"category-programing-languages","10":"category-python-development","11":"category-ibkr-quant-news","12":"category-r-development","13":"tag-data-science","14":"tag-jupyter-notebook","15":"contributors-categories-algotrading101"},"pp_statuses_selecting_workflow":false,"pp_workflow_action":"current","pp_status_selection":"publish","acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Jupyter\u00a0Notebook Shortcuts | IBKR Quant<\/title>\n<meta name=\"description\" content=\"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/posts\/191955\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Jupyter\u00a0Notebook Shortcuts | IBKR Campus US\" \/>\n<meta property=\"og:description\" content=\"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/\" \/>\n<meta property=\"og:site_name\" content=\"IBKR Campus US\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-14T14:34:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-16T20:37:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jovan Medford\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jovan Medford\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\\\/\\\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"NewsArticle\",\n\t            \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"Jovan Medford\",\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/person\\\/80494f45413b39273a007d0df251d114\"\n\t            },\n\t            \"headline\": \"Jupyter\u00a0Notebook Shortcuts\",\n\t            \"datePublished\": \"2023-06-14T14:34:06+00:00\",\n\t            \"dateModified\": \"2023-06-16T20:37:25+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/\"\n\t            },\n\t            \"wordCount\": 673,\n\t            \"commentCount\": 0,\n\t            \"publisher\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/12\\\/woman-computer-code.jpg\",\n\t            \"keywords\": [\n\t                \"Data Science\",\n\t                \"Jupyter Notebook\"\n\t            ],\n\t            \"articleSection\": [\n\t                \"Data Science\",\n\t                \"Julia Development\",\n\t                \"Programming Languages\",\n\t                \"Python Development\",\n\t                \"Quant\",\n\t                \"R Development\"\n\t            ],\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"CommentAction\",\n\t                    \"name\": \"Comment\",\n\t                    \"target\": [\n\t                        \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#respond\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/\",\n\t            \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/\",\n\t            \"name\": \"Jupyter\u00a0Notebook Shortcuts | IBKR Campus US\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/12\\\/woman-computer-code.jpg\",\n\t            \"datePublished\": \"2023-06-14T14:34:06+00:00\",\n\t            \"dateModified\": \"2023-06-16T20:37:25+00:00\",\n\t            \"description\": \"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/ibkr-quant-news\\\/jupyter-notebook-shortcuts\\\/#primaryimage\",\n\t            \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/12\\\/woman-computer-code.jpg\",\n\t            \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2019\\\/12\\\/woman-computer-code.jpg\",\n\t            \"width\": 900,\n\t            \"height\": 540,\n\t            \"caption\": \"Sharpe Ratio: Calculation, Application, Limitations\"\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"name\": \"IBKR Campus US\",\n\t            \"description\": \"Financial Education from Interactive Brokers\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\",\n\t            \"name\": \"Interactive Brokers\",\n\t            \"alternateName\": \"IBKR\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\",\n\t                \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"width\": 669,\n\t                \"height\": 669,\n\t                \"caption\": \"Interactive Brokers\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\"\n\t            },\n\t            \"publishingPrinciples\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/about-ibkr-campus\\\/\",\n\t            \"ethicsPolicy\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/cyber-security-notice\\\/\"\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/person\\\/80494f45413b39273a007d0df251d114\",\n\t            \"name\": \"Jovan Medford\",\n\t            \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/author\\\/jovan-medford\\\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Jupyter\u00a0Notebook Shortcuts | IBKR Quant","description":"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/posts\/191955\/","og_locale":"en_US","og_type":"article","og_title":"Jupyter\u00a0Notebook Shortcuts | IBKR Campus US","og_description":"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.","og_url":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/","og_site_name":"IBKR Campus US","article_published_time":"2023-06-14T14:34:06+00:00","article_modified_time":"2023-06-16T20:37:25+00:00","og_image":[{"width":900,"height":540,"url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","type":"image\/jpeg"}],"author":"Jovan Medford","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jovan Medford","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#article","isPartOf":{"@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/"},"author":{"name":"Jovan Medford","@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/person\/80494f45413b39273a007d0df251d114"},"headline":"Jupyter\u00a0Notebook Shortcuts","datePublished":"2023-06-14T14:34:06+00:00","dateModified":"2023-06-16T20:37:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/"},"wordCount":673,"commentCount":0,"publisher":{"@id":"https:\/\/ibkrcampus.com\/campus\/#organization"},"image":{"@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#primaryimage"},"thumbnailUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","keywords":["Data Science","Jupyter Notebook"],"articleSection":["Data Science","Julia Development","Programming Languages","Python Development","Quant","R Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/","url":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/","name":"Jupyter\u00a0Notebook Shortcuts | IBKR Campus US","isPartOf":{"@id":"https:\/\/ibkrcampus.com\/campus\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#primaryimage"},"image":{"@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#primaryimage"},"thumbnailUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","datePublished":"2023-06-14T14:34:06+00:00","dateModified":"2023-06-16T20:37:25+00:00","description":"Notebooks are tools that allow us to use markdown along with our code, to improve readability and really add to that storytelling aspect of a project.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.interactivebrokers.com\/campus\/ibkr-quant-news\/jupyter-notebook-shortcuts\/#primaryimage","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","width":900,"height":540,"caption":"Sharpe Ratio: Calculation, Application, Limitations"},{"@type":"WebSite","@id":"https:\/\/ibkrcampus.com\/campus\/#website","url":"https:\/\/ibkrcampus.com\/campus\/","name":"IBKR Campus US","description":"Financial Education from Interactive Brokers","publisher":{"@id":"https:\/\/ibkrcampus.com\/campus\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ibkrcampus.com\/campus\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ibkrcampus.com\/campus\/#organization","name":"Interactive Brokers","alternateName":"IBKR","url":"https:\/\/ibkrcampus.com\/campus\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","width":669,"height":669,"caption":"Interactive Brokers"},"image":{"@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/"},"publishingPrinciples":"https:\/\/www.interactivebrokers.com\/campus\/about-ibkr-campus\/","ethicsPolicy":"https:\/\/www.interactivebrokers.com\/campus\/cyber-security-notice\/"},{"@type":"Person","@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/person\/80494f45413b39273a007d0df251d114","name":"Jovan Medford","url":"https:\/\/www.interactivebrokers.com\/campus\/author\/jovan-medford\/"}]}},"jetpack_featured_media_url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2019\/12\/woman-computer-code.jpg","_links":{"self":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/posts\/191955","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/users\/1175"}],"replies":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/comments?post=191955"}],"version-history":[{"count":0,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/posts\/191955\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media\/28966"}],"wp:attachment":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media?parent=191955"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/categories?post=191955"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/tags?post=191955"},{"taxonomy":"contributors-categories","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/contributors-categories?post=191955"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}