{"id":3232,"date":"2023-01-30T16:47:31","date_gmt":"2023-01-30T15:47:31","guid":{"rendered":"https:\/\/cbrell.de\/blog\/?p=3232"},"modified":"2023-01-30T17:09:42","modified_gmt":"2023-01-30T16:09:42","slug":"mit-jupyter-notebook-arbeiten","status":"publish","type":"post","link":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/","title":{"rendered":"Mit Jupyter Notebook arbeiten"},"content":{"rendered":"<p>Wie Sie mit Jupyter Notebook arbeiten und Ihrer erste Schritte darin unternehmen, erfahren Sie in diesem Beitrag.<\/p>\n<p>30.01.2023<\/p>\n<h2 class=\"p1\">Was ist Jupyter Notebook?<\/h2>\n<p class=\"p1\">Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr die Dokumentation von Code, Formeln, Visualisierungen und Markdown-Text. Es wird haupts\u00e4chlich f\u00fcr Data Science und Machine Learning verwendet. Benutzer k\u00f6nnen Code in verschiedenen Programmiersprachen (z. B. Python, R, Julia) ausf\u00fchren und das Ergebnis direkt in derselben Umgebung sehen.<\/p>\n<h2 class=\"p1\">Woher kommt der Name \u201eJupyter\u201c?<\/h2>\n<p class=\"p1\">Der Name &#8222;Jupyter&#8220; ist eine Abk\u00fcrzung f\u00fcr die drei Hauptprogrammiersprachen, die urspr\u00fcnglich unterst\u00fctzt wurden: Julia, Python und R. Die Entwickler wollten damit ausdr\u00fccken, dass Jupyter eine gemeinsame Plattform f\u00fcr alle drei Sprachen ist. Den Planeten Jupiter ist der gr\u00f6\u00dfte im Sonnensytem, so kann der Name auch als eine Hommage an die Planeten im Sonnensystem gesehen werden.<\/p>\n<h2 class=\"p1\">Was kann man mit Jupyter Notebook machen?<\/h2>\n<p class=\"p1\">Mit Jupyter Notebook kann man:<\/p>\n<ul class=\"ul1\">\n<li class=\"li1\">Code in verschiedenen Programmiersprachen ausf\u00fchren (z.B. Python, R, Julia)<\/li>\n<li class=\"li1\">Datenanalyse, Datenbereinigung und Datenvorbereitung durchf\u00fchren<\/li>\n<li class=\"li1\">Visualisierungen von Daten erstellen<\/li>\n<li class=\"li1\">mathematische Berechnungen durchf\u00fchren<\/li>\n<li class=\"li1\">Dokumentation und Protokollierung von <a href=\"https:\/\/cbrell.de\/blog\/projektmanagement\/\">Projekten<\/a> und Forschungsergebnissen<\/li>\n<li class=\"li1\">gemeinsames Arbeiten und Teilen von Code und Ergebnissen<\/li>\n<\/ul>\n<h2>Wie l\u00e4sst sich Jupyter Notebook auf MacOS installieren?<\/h2>\n<p class=\"p1\">Um Jupyter Notebook unter MacOS zu installieren, f\u00fchren Sie die folgenden Schritte aus:<\/p>\n<ol class=\"ol1\">\n<li class=\"li1\">Installieren Sie Homebrew (falls nicht bereits vorhanden):<\/li>\n<li class=\"li3\"><span class=\"s2\">\/bin\/bash -c &#8222;$(curl -fsSL <a href=\"https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install.sh\"><span class=\"s3\">https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install.sh<\/span><\/a>)&#8220;<\/span><\/li>\n<li class=\"li1\">Installieren Sie Python \u00fcber Homebrew:<\/li>\n<li class=\"li1\">brew install python<\/li>\n<li class=\"li1\">Verwenden Sie pip, um Jupyter zu installieren:<\/li>\n<li class=\"li1\">pip3 install jupyter<\/li>\n<li class=\"li1\">Starten Sie Jupyter Notebook von der Befehlszeile aus:<\/li>\n<li class=\"li1\">jupyter notebook<\/li>\n<\/ol>\n<p class=\"p1\">Nach dem Ausf\u00fchren dieser Schritte sollte Jupyter Notebook im Browser gestartet werden und Sie k\u00f6nnen ein neues Notebook erstellen oder auf vorhandene zugreifen.<\/p>\n<h2>Der erste Start<\/h2>\n<p class=\"p1\">Der Start unter MacOS gelingt im Terminal mit<\/p>\n<pre class=\"p1\">jupyter notebook<\/pre>\n<h2 class=\"p1\">Ein einfaches erstes Beispiel f\u00fcr den Anfang<\/h2>\n<p class=\"p1\">Ein einfaches Beispiel, um mit Jupyter Notebook zu beginnen, ist die Verwendung von Codezellen, um Berechnungen durchzuf\u00fchren und das Ergebnis anzuzeigen:<\/p>\n<ol class=\"ol1\">\n<li class=\"li1\">Starten Sie Jupyter Notebook auf Ihrem Computer.<\/li>\n<li class=\"li1\">Erstellen Sie eine neue Notizbuchdatei.<\/li>\n<li class=\"li1\">Klicken Sie auf das Pluszeichen oben rechts, um eine neue Codezelle zu erstellen.<\/li>\n<li class=\"li1\">Geben Sie den folgenden Code ein: print(\u201eHallo Welt :)\u201c)<\/li>\n<li class=\"li1\">Dr\u00fccken Sie Shift + Enter, um den Code auszuf\u00fchren.<\/li>\n<\/ol>\n<p class=\"p1\">Das Ergebnis sollte \u201eHallo Welt :)\u201c in der Ausgabe unter der Codezelle angezeigt werden.<\/p>\n<h2 class=\"p1\">Wie sieht das Datenformat von Jupyter Notebook aus?<\/h2>\n<p class=\"p1\">Eine Jupyter Notebook-Datei (.ipynb) ist eine JSON-Datei, die mehrere Zellen enth\u00e4lt, die Code, Markdown-Text oder ausf\u00fchrbare Code-Output enthalten k\u00f6nnen. Die Struktur einer .ipynb-Datei sieht ungef\u00e4hr so aus:<\/p>\n<pre>{\r\n  \"cells\": [\r\n    {\r\n      \"cell_type\": \"code\",\r\n      \"execution_count\": 2,\r\n      \"id\": \"e88d996c\",\r\n      \"metadata\": {},\r\n      \"outputs\": [\r\n        {\r\n          \"name\": \"stdout\",\r\n          \"output_type\": \"stream\",\r\n          \"text\": [\r\n            \"Hallo Welt :)\\n\"\r\n          ]\r\n        }\r\n       ],\r\n       \"source\": [\r\n         \"print (\\\"Hallo Welt :)\\\")\"\r\n       ]\r\n    },\r\n     {\r\n      \"cell_type\": \"code\",\r\n      \"execution_count\": null,\r\n      \"id\": \"2a5d1051\",\r\n      \"metadata\": {},\r\n      \"outputs\": [],\r\n      \"source\": []\r\n     }\r\n     ],\r\n    \"metadata\": {\r\n      \"kernelspec\": {\r\n         \"display_name\": \"Python 3 (ipykernel)\",\r\n         \"language\": \"python\",\r\n         \"name\": \"python3\"\r\n     },\r\n     \"language_info\": {\r\n       \"codemirror_mode\": {\r\n          \"name\": \"ipython\",\r\n          \"version\": 3\r\n       },\r\n       \"file_extension\": \".py\",\r\n       \"mimetype\": \"text\/x-python\",\r\n       \"name\": \"python\",\r\n       \"nbconvert_exporter\": \"python\",\r\n       \"pygments_lexer\": \"ipython3\",\r\n       \"version\": \"3.10.8\"\r\n    }\r\n},\r\n\"nbformat\": 4,\r\n\"nbformat_minor\": 5\r\n}<\/pre>\n<h2>Quellen, Weiterlesen<\/h2>\n<p><a href=\"https:\/\/cbrell.de\/blog\/chatgpt-und-die-literatur-zu-imkerei-und-honigbienen\/\" target=\"_blank\" rel=\"noopener\">Beschreibung auf Modius-Techblog<\/a><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cbrell.de\/zaehler?x=1993\" \/><\/p>\n<div class=\"shariff shariff-align-flex-start shariff-widget-align-flex-start\" data-services=\"facebook\" data-url=\"https%3A%2F%2Fcbrell.de%2Fblog%2Fmit-jupyter-notebook-arbeiten%2F\" data-timestamp=\"1675098582\" data-backendurl=\"https:\/\/cbrell.de\/blog\/wp-json\/shariff\/v1\/share_counts?\"><div class=\"ShariffHeadline\">Teile diesen Beitrag.<\/div><ul class=\"shariff-buttons theme-round orientation-horizontal buttonsize-medium\"><li class=\"shariff-button twitter shariff-nocustomcolor\" style=\"background-color:#32bbf5\"><a href=\"https:\/\/twitter.com\/share?url=https%3A%2F%2Fcbrell.de%2Fblog%2Fmit-jupyter-notebook-arbeiten%2F&text=Mit%20Jupyter%20Notebook%20arbeiten\" title=\"Bei Twitter teilen\" aria-label=\"Bei Twitter teilen\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#55acee; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 30 32\"><path fill=\"#55acee\" d=\"M29.7 6.8q-1.2 1.8-3 3.1 0 0.3 0 0.8 0 2.5-0.7 4.9t-2.2 4.7-3.5 4-4.9 2.8-6.1 1q-5.1 0-9.3-2.7 0.6 0.1 1.5 0.1 4.3 0 7.6-2.6-2-0.1-3.5-1.2t-2.2-3q0.6 0.1 1.1 0.1 0.8 0 1.6-0.2-2.1-0.4-3.5-2.1t-1.4-3.9v-0.1q1.3 0.7 2.8 0.8-1.2-0.8-2-2.2t-0.7-2.9q0-1.7 0.8-3.1 2.3 2.8 5.5 4.5t7 1.9q-0.2-0.7-0.2-1.4 0-2.5 1.8-4.3t4.3-1.8q2.7 0 4.5 1.9 2.1-0.4 3.9-1.5-0.7 2.2-2.7 3.4 1.8-0.2 3.5-0.9z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button facebook shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fcbrell.de%2Fblog%2Fmit-jupyter-notebook-arbeiten%2F\" title=\"Bei Facebook teilen\" aria-label=\"Bei Facebook teilen\" role=\"button\" rel=\"nofollow\" class=\"shariff-link\" style=\"; background-color:#3b5998; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 18 32\"><path fill=\"#3b5998\" d=\"M17.1 0.2v4.7h-2.8q-1.5 0-2.1 0.6t-0.5 1.9v3.4h5.2l-0.7 5.3h-4.5v13.6h-5.5v-13.6h-4.5v-5.3h4.5v-3.9q0-3.3 1.9-5.2t5-1.8q2.6 0 4.1 0.2z\"\/><\/svg><\/span><\/a><\/li><li class=\"shariff-button linkedin shariff-nocustomcolor\" style=\"background-color:#1488bf\"><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fcbrell.de%2Fblog%2Fmit-jupyter-notebook-arbeiten%2F\" title=\"Bei LinkedIn teilen\" aria-label=\"Bei LinkedIn teilen\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0077b5; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#0077b5\" d=\"M6.2 11.2v17.7h-5.9v-17.7h5.9zM6.6 5.7q0 1.3-0.9 2.2t-2.4 0.9h0q-1.5 0-2.4-0.9t-0.9-2.2 0.9-2.2 2.4-0.9 2.4 0.9 0.9 2.2zM27.4 18.7v10.1h-5.9v-9.5q0-1.9-0.7-2.9t-2.3-1.1q-1.1 0-1.9 0.6t-1.2 1.5q-0.2 0.5-0.2 1.4v9.9h-5.9q0-7.1 0-11.6t0-5.3l0-0.9h5.9v2.6h0q0.4-0.6 0.7-1t1-0.9 1.6-0.8 2-0.3q3 0 4.9 2t1.9 6z\"\/><\/svg><\/span><\/a><\/li><\/ul><\/div>","protected":false},"excerpt":{"rendered":"<p>Wie Sie mit Jupyter Notebook arbeiten und Ihrer erste Schritte darin unternehmen, erfahren Sie in diesem Beitrag. 30.01.2023 Was ist Jupyter Notebook? Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr die &#8230;<\/p>\n","protected":false},"author":1,"featured_media":3237,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[804,806,805,110],"class_list":["post-3232","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-allgemein","tag-jupyter","tag-machine-learning","tag-notebook","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mit Jupyter Notebook arbeiten<\/title>\n<meta name=\"description\" content=\"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mit Jupyter Notebook arbeiten\" \/>\n<meta property=\"og:description\" content=\"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/\" \/>\n<meta property=\"og:site_name\" content=\"Bienen, Natur und Internet of Things\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-30T15:47:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-30T16:09:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"580\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Claus Brell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@clausbrell5859\" \/>\n<meta name=\"twitter:site\" content=\"@clausbrell\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Claus Brell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/\"},\"author\":{\"name\":\"Claus Brell\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/#\\\/schema\\\/person\\\/7cf529e46faf1fd7b2b6942fec254c58\"},\"headline\":\"Mit Jupyter Notebook arbeiten\",\"datePublished\":\"2023-01-30T15:47:31+00:00\",\"dateModified\":\"2023-01-30T16:09:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/\"},\"wordCount\":434,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/Jupyter-Notebook-Screenshot-230130.png\",\"keywords\":[\"jupyter\",\"machine learning\",\"notebook\",\"Python\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/\",\"url\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/\",\"name\":\"Mit Jupyter Notebook arbeiten\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/Jupyter-Notebook-Screenshot-230130.png\",\"datePublished\":\"2023-01-30T15:47:31+00:00\",\"dateModified\":\"2023-01-30T16:09:42+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/#\\\/schema\\\/person\\\/7cf529e46faf1fd7b2b6942fec254c58\"},\"description\":\"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/Jupyter-Notebook-Screenshot-230130.png\",\"contentUrl\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/Jupyter-Notebook-Screenshot-230130.png\",\"width\":1024,\"height\":580,\"caption\":\"Screenshot einer Jupyter Notebook Instanz auf dem Macbook\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/mit-jupyter-notebook-arbeiten\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mit Jupyter Notebook arbeiten\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/\",\"name\":\"Bienen, Natur und Internet of Things\",\"description\":\"Alles, was einfach ist. Von Claus Brell\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/#\\\/schema\\\/person\\\/7cf529e46faf1fd7b2b6942fec254c58\",\"name\":\"Claus Brell\",\"description\":\"Seit 2021 forsche ich an und mit Bienen (Digitalisierung der Imkerei) Seit 2012 Professur f\u00fcr Wirtschaftsinformatik an der Hochschue Niederrhein. Seit 1981 treibt mich die Frage um: Was haben Physik, Heavy Metal und Spiele miteinander zu tun? Drei m\u00f6gliche Antworten: {nichts | 42 | gleiche Hirnareale werden aktiviert}\",\"sameAs\":[\"http:\\\/\\\/claus-brell.de\",\"https:\\\/\\\/x.com\\\/clausbrell5859\",\"https:\\\/\\\/www.youtube.com\\\/@clausbrell5859\"],\"url\":\"https:\\\/\\\/cbrell.de\\\/blog\\\/author\\\/clausb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mit Jupyter Notebook arbeiten","description":"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.","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:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/","og_locale":"de_DE","og_type":"article","og_title":"Mit Jupyter Notebook arbeiten","og_description":"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.","og_url":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/","og_site_name":"Bienen, Natur und Internet of Things","article_published_time":"2023-01-30T15:47:31+00:00","article_modified_time":"2023-01-30T16:09:42+00:00","og_image":[{"width":1024,"height":580,"url":"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png","type":"image\/png"}],"author":"Claus Brell","twitter_card":"summary_large_image","twitter_creator":"@clausbrell5859","twitter_site":"@clausbrell","twitter_misc":{"Verfasst von":"Claus Brell","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#article","isPartOf":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/"},"author":{"name":"Claus Brell","@id":"https:\/\/cbrell.de\/blog\/#\/schema\/person\/7cf529e46faf1fd7b2b6942fec254c58"},"headline":"Mit Jupyter Notebook arbeiten","datePublished":"2023-01-30T15:47:31+00:00","dateModified":"2023-01-30T16:09:42+00:00","mainEntityOfPage":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/"},"wordCount":434,"commentCount":0,"image":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#primaryimage"},"thumbnailUrl":"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png","keywords":["jupyter","machine learning","notebook","Python"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/","url":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/","name":"Mit Jupyter Notebook arbeiten","isPartOf":{"@id":"https:\/\/cbrell.de\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#primaryimage"},"image":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#primaryimage"},"thumbnailUrl":"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png","datePublished":"2023-01-30T15:47:31+00:00","dateModified":"2023-01-30T16:09:42+00:00","author":{"@id":"https:\/\/cbrell.de\/blog\/#\/schema\/person\/7cf529e46faf1fd7b2b6942fec254c58"},"description":"Jupyter Notebook ist eine interaktive Web-Anwendung f\u00fcr Code, Formeln, Visualisierungen und wird f\u00fcr Machine Learning verwendet.","breadcrumb":{"@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#primaryimage","url":"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png","contentUrl":"https:\/\/cbrell.de\/blog\/wp-content\/uploads\/2023\/01\/Jupyter-Notebook-Screenshot-230130.png","width":1024,"height":580,"caption":"Screenshot einer Jupyter Notebook Instanz auf dem Macbook"},{"@type":"BreadcrumbList","@id":"https:\/\/cbrell.de\/blog\/mit-jupyter-notebook-arbeiten\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/cbrell.de\/blog\/"},{"@type":"ListItem","position":2,"name":"Mit Jupyter Notebook arbeiten"}]},{"@type":"WebSite","@id":"https:\/\/cbrell.de\/blog\/#website","url":"https:\/\/cbrell.de\/blog\/","name":"Bienen, Natur und Internet of Things","description":"Alles, was einfach ist. Von Claus Brell","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cbrell.de\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/cbrell.de\/blog\/#\/schema\/person\/7cf529e46faf1fd7b2b6942fec254c58","name":"Claus Brell","description":"Seit 2021 forsche ich an und mit Bienen (Digitalisierung der Imkerei) Seit 2012 Professur f\u00fcr Wirtschaftsinformatik an der Hochschue Niederrhein. Seit 1981 treibt mich die Frage um: Was haben Physik, Heavy Metal und Spiele miteinander zu tun? Drei m\u00f6gliche Antworten: {nichts | 42 | gleiche Hirnareale werden aktiviert}","sameAs":["http:\/\/claus-brell.de","https:\/\/x.com\/clausbrell5859","https:\/\/www.youtube.com\/@clausbrell5859"],"url":"https:\/\/cbrell.de\/blog\/author\/clausb\/"}]}},"_links":{"self":[{"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/posts\/3232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/comments?post=3232"}],"version-history":[{"count":7,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/posts\/3232\/revisions"}],"predecessor-version":[{"id":3240,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/posts\/3232\/revisions\/3240"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/media\/3237"}],"wp:attachment":[{"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/media?parent=3232"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/categories?post=3232"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cbrell.de\/blog\/wp-json\/wp\/v2\/tags?post=3232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}