{"id":3008,"date":"2023-07-19T16:17:37","date_gmt":"2023-07-19T16:17:37","guid":{"rendered":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/"},"modified":"2023-07-19T16:17:37","modified_gmt":"2023-07-19T16:17:37","slug":"nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/","title":{"rendered":"Come risolvere in python: nessuna maniglia con etichette trovata da inserire nella legenda"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Un avviso che potresti incontrare quando usi matplotlib \u00e8:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong>No handles with labels found to put in legend.\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Questo avviso in genere si verifica per uno dei due motivi:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> Non sei riuscito a creare etichette per i dati del grafico.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong> Hai tentato di creare una legenda prima di creare una trama.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Gli esempi seguenti mostrano come evitare questo avviso in entrambi gli scenari.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 1: non sei riuscito a creare etichette per i dati del grafico.<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Supponiamo di provare a utilizzare il codice seguente per creare un grafico a linee in matplotlib con una legenda ed etichette:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n<span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#define data values\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x<\/span> ': [18, 22, 19, 14, 14, 11, 20, 28],\n                   ' <span style=\"color: #ff0000;\">y<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4],\n                   ' <span style=\"color: #ff0000;\">z<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12]})\n\n<span style=\"color: #008080;\">#add multiple lines to matplotlib plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">x<\/span> '], color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">y<\/span> '], color=' <span style=\"color: #ff0000;\">blue<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">z<\/span> '], color=' <span style=\"color: #ff0000;\">purple<\/span> ')\n\n<span style=\"color: #008080;\">#attempt to add legend to plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> ()\n\nNo handles with labels found to put in legend.\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25938 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee1.jpg\" alt=\"\" width=\"506\" height=\"330\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Matplotlib crea il grafico a linee, ma riceviamo l&#8217;avviso <strong>No handle with label finded to put in legend<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per evitare questo avvertimento, dobbiamo usare l&#8217;argomento <strong>label<\/strong> per fornire un&#8217;etichetta per ogni riga nella trama:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n<span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#define data values\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x<\/span> ': [18, 22, 19, 14, 14, 11, 20, 28],\n                   ' <span style=\"color: #ff0000;\">y<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4],\n                   ' <span style=\"color: #ff0000;\">z<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12]})\n\n<span style=\"color: #008080;\">#add multiple lines to matplotlib plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">x<\/span> '], label=' <span style=\"color: #ff0000;\">x<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">y<\/span> '], label=' <span style=\"color: #ff0000;\">y<\/span> ', color=' <span style=\"color: #ff0000;\">blue<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">z<\/span> '], label=' <span style=\"color: #ff0000;\">z<\/span> ', color=' <span style=\"color: #ff0000;\">purple<\/span> ')\n\n<span style=\"color: #008080;\">#attempt to add legend to plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> ()\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25939 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee2.jpg\" alt=\"\" width=\"510\" height=\"339\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Tieni presente che viene creata una legenda con le etichette e questa volta non riceviamo alcun avviso.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Esempio 2: hai tentato di creare una legenda prima di creare una trama.<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Supponiamo di provare a utilizzare il codice seguente per creare un grafico a linee in matplotlib con una legenda ed etichette:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> <span style=\"color: #000000;\">matplotlib.<\/span> <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> <span style=\"color: #000000;\">plt\n<\/span><span style=\"color: #008000;\">import<\/span> <span style=\"color: #000000;\">pandas<\/span> <span style=\"color: #008000;\">as<\/span> <span style=\"color: #000000;\">pd\n\n<\/span><span style=\"color: #008080;\">#define data values\n<\/span><span style=\"color: #000000;\">df = pd.<\/span> <span style=\"color: #3366ff;\">DataFrame<\/span> <span style=\"color: #000000;\">({'<\/span> <span style=\"color: #ff0000;\">x<\/span> <span style=\"color: #000000;\">': [18, 22, 19, 14, 14, 11, 20, 28],\n                   '<\/span> <span style=\"color: #ff0000;\">y<\/span> <span style=\"color: #000000;\">': [5, 7, 7, 9, 12, 9, 9, 4],\n                   '<\/span> <span style=\"color: #ff0000;\">z<\/span> <span style=\"color: #000000;\">': [11, 8, 10, 6, 6, 5, 9, 12]})\n\n<\/span><span style=\"color: #008080;\">#attempt to add legend to plot\n<\/span><span style=\"color: #000000;\">plt.<\/span> <span style=\"color: #3366ff;\">legend<\/span> <span style=\"color: #000000;\">()\n\n<\/span><span style=\"color: #008080;\">#add multiple lines to matplotlib plot\n<\/span><span style=\"color: #000000;\">plt.<\/span> <span style=\"color: #3366ff;\">plot<\/span> <span style=\"color: #000000;\">(df['<\/span> <span style=\"color: #ff0000;\">x<\/span> <span style=\"color: #000000;\">'], label='<\/span> <span style=\"color: #ff0000;\">x<\/span> <span style=\"color: #000000;\">', color='<\/span> <span style=\"color: #ff0000;\">green<\/span> <span style=\"color: #000000;\">')\nplt.<\/span> <span style=\"color: #3366ff;\">plot<\/span> <span style=\"color: #000000;\">(df['<\/span> <span style=\"color: #ff0000;\">y<\/span> <span style=\"color: #000000;\">'], label='<\/span> <span style=\"color: #ff0000;\">y<\/span> <span style=\"color: #000000;\">', color='<\/span> <span style=\"color: #ff0000;\">blue<\/span> <span style=\"color: #000000;\">')\nplt.<\/span> <span style=\"color: #3366ff;\">plot<\/span> <span style=\"color: #000000;\">(df['<\/span> <span style=\"color: #ff0000;\">z<\/span> <span style=\"color: #000000;\">'], label='<\/span> <span style=\"color: #ff0000;\">z<\/span> <span style=\"color: #000000;\">', color='<\/span> <span style=\"color: #ff0000;\">purple<\/span> <span style=\"color: #000000;\">')\n\nNo handles with labels found to put in legend.\n<\/span><\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25938 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee1.jpg\" alt=\"\" width=\"506\" height=\"330\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Matplotlib crea il grafico a linee, ma riceviamo l&#8217;avviso <strong>No handle with label finded to put in legend<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per evitare questo avviso, dobbiamo utilizzare <strong>plt.legend()<\/strong> <em>dopo<\/em> aver aggiunto le righe alla trama:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n<span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#define data values\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x<\/span> ': [18, 22, 19, 14, 14, 11, 20, 28],\n                   ' <span style=\"color: #ff0000;\">y<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4],\n                   ' <span style=\"color: #ff0000;\">z<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12]})\n\n<span style=\"color: #008080;\">#add multiple lines to matplotlib plot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">x<\/span> '], label=' <span style=\"color: #ff0000;\">x<\/span> ', color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">y<\/span> '], label=' <span style=\"color: #ff0000;\">y<\/span> ', color=' <span style=\"color: #ff0000;\">blue<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (df[' <span style=\"color: #ff0000;\">z<\/span> '], label=' <span style=\"color: #ff0000;\">z<\/span> ', color=' <span style=\"color: #ff0000;\">purple<\/span> ')\n\n<span style=\"color: #008080;\">#attempt to add legend to plot\n<\/span>plt. <span style=\"color: #3366ff;\">legend<\/span> ()\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25939 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee2.jpg\" alt=\"\" width=\"510\" height=\"339\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Viene creata una legenda con etichette e questa volta non riceviamo alcun avviso.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Risorse addizionali<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">I seguenti tutorial spiegano come correggere altri errori comuni in Python:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/it\/errore-chiave-panda\/\" target=\"_blank\" rel=\"noopener\">Come correggere l&#8217;errore chiave nei Panda<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/valueerror-non-puo-convertire-float-nan-in-intero\/\" target=\"_blank\" rel=\"noopener\">Come risolvere il problema: ValueError: impossibile convertire float NaN in int<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/non-e-stato-possibile-trasmettere-gli-operandi-con-i-moduli\/\" target=\"_blank\" rel=\"noopener\">Come risolvere il problema: ValueError: non \u00e8 stato possibile trasmettere gli operandi con le forme<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Un avviso che potresti incontrare quando usi matplotlib \u00e8: No handles with labels found to put in legend. Questo avviso in genere si verifica per uno dei due motivi: 1. Non sei riuscito a creare etichette per i dati del grafico. 2. Hai tentato di creare una legenda prima di creare una trama. Gli esempi [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T16:17:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee1.jpg\" \/>\n<meta name=\"author\" content=\"Benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/\",\"url\":\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/\",\"name\":\"Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-19T16:17:37+00:00\",\"dateModified\":\"2023-07-19T16:17:37+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come risolvere in python: nessuna maniglia con etichette trovata da inserire nella legenda\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/it\/#website\",\"url\":\"https:\/\/statorials.org\/it\/\",\"name\":\"Statorials\",\"description\":\"La tua guida all&#039;alfabetizzazione statistica!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/it\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\",\"name\":\"Benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Benjamin anderson\"},\"description\":\"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9\",\"sameAs\":[\"https:\/\/statorials.org\/it\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials","description":"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.","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:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/","og_locale":"it_IT","og_type":"article","og_title":"Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials","og_description":"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.","og_url":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/","og_site_name":"Statorials","article_published_time":"2023-07-19T16:17:37+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/poignee1.jpg"}],"author":"Benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Benjamin anderson","Est. reading time":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/","url":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/","name":"Come risolvere in Python: nessuna maniglia trovata con etichette da inserire nella legenda - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-19T16:17:37+00:00","dateModified":"2023-07-19T16:17:37+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come correggere il seguente errore in Matplotlib in Python: Nessun handle con etichette trovate da inserire nella legenda.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/nessuna-maniglia-trovata-con-etichette-da-inserire-nella-legenda\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come risolvere in python: nessuna maniglia con etichette trovata da inserire nella legenda"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/it\/#website","url":"https:\/\/statorials.org\/it\/","name":"Statorials","description":"La tua guida all&#039;alfabetizzazione statistica!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/it\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae","name":"Benjamin anderson","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/it\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Benjamin anderson"},"description":"Ciao, sono Benjamin, un professore di statistica in pensione diventato insegnante dedicato di Statorials. Con una vasta esperienza e competenza nel campo della statistica, sono ansioso di condividere le mie conoscenze per potenziare gli studenti attraverso Statorials. Scopri di pi\u00f9","sameAs":["https:\/\/statorials.org\/it"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/3008"}],"collection":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/comments?post=3008"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/3008\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=3008"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=3008"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=3008"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}