{"id":3244,"date":"2023-07-18T12:20:42","date_gmt":"2023-07-18T12:20:42","guid":{"rendered":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/"},"modified":"2023-07-18T12:20:42","modified_gmt":"2023-07-18T12:20:42","slug":"test-di-ipotesi-di-python","status":"publish","type":"post","link":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/","title":{"rendered":"Come eseguire test di ipotesi in python (con esempi)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Un <a href=\"https:\/\/statorials.org\/it\/verifica-delle-ipotesi-1\/\" target=\"_blank\" rel=\"noopener\">test di ipotesi<\/a> \u00e8 un test statistico formale che utilizziamo per rifiutare o non riuscire a rifiutare un&#8217;ipotesi statistica.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Questo tutorial spiega come eseguire i seguenti test di ipotesi in Python:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Un test t del campione<\/span><\/li>\n<li> <span style=\"color: #000000;\">Test T a due campioni<\/span><\/li>\n<li> <span style=\"color: #000000;\">Test t per campioni accoppiati<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Andiamo!<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Esempio 1: un esempio di test t in Python<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Un <a href=\"https:\/\/statorials.org\/it\/un-test-t-del-campione\/\" target=\"_blank\" rel=\"noopener\">test t su un campione<\/a> viene utilizzato per verificare se la media di una popolazione \u00e8 uguale o meno a un determinato valore.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ad esempio, supponiamo di voler sapere se il peso medio di una determinata specie di tartaruga \u00e8 o meno di 310 libbre.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per verificarlo, raccogliamo un semplice campione casuale di tartarughe con i seguenti pesi:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Peso<\/strong> : 300, 315, 320, 311, 314, 309, 300, 308, 305, 303, 305, 301, 303<\/span><\/p>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come utilizzare la funzione <a href=\"https:\/\/docs.scipy.org\/doc\/scipy\/reference\/generated\/scipy.stats.ttest_1samp.html\" target=\"_blank\" rel=\"noopener noreferrer\">ttest_1samp()<\/a> nella libreria <strong>scipy.stats<\/strong> per eseguire un t-test a un campione:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> scipy.stats <span style=\"color: #107d3f;\">as<\/span> stats\n\n<span style=\"color: #008080;\">#define data<\/span>\ndata = <span style=\"color: #000000;\">[300, 315, 320, 311, 314, 309, 300, 308, 305, 303, 305, 301, 303]<\/span>\n\n<span style=\"color: #008080;\">#perform one sample t-test<\/span>\nstats. <span style=\"color: #3366ff;\">ttest_1samp<\/span> (a=data, popmean= <span style=\"color: #008000;\">310<\/span> )\n\nTtest_1sampResult(statistic=-1.5848116313861254, pvalue=0.1389944275158753)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">La statistica del test t \u00e8 <strong>-1,5848<\/strong> e il corrispondente valore p a due code \u00e8 <strong>0,1389<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Le due ipotesi per questo t-test su un particolare campione sono le seguenti:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> :<\/strong> \u00b5 = 310 (il peso medio di questa specie di tartaruga \u00e8 di 310 libbre)<\/span><\/li>\n<li> <strong style=\"color: #000000;\">H <sub>A<\/sub> :<\/strong> <span style=\"color: #000000;\">\u00b5 \u2260310 (il peso medio non \u00e8<\/span> <em style=\"color: #000000;\">310<\/em> <span style=\"color: #000000;\">libbre)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Poich\u00e9 il valore p del nostro test <strong>(0,1389)<\/strong> \u00e8 maggiore di alfa = 0,05, non riusciamo a rifiutare l&#8217;ipotesi nulla del test.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Non abbiamo prove sufficienti per affermare che il peso medio di questa particolare specie di tartaruga sia diverso da 310 libbre.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Esempio 2: test t a due campioni in Python<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Un <a href=\"https:\/\/statorials.org\/it\/testa-i-tuoi-due-campioni\/\" target=\"_blank\" rel=\"noopener\">t-test a due campioni<\/a> viene utilizzato per verificare se le medie di due popolazioni sono uguali o meno.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ad esempio, supponiamo di voler sapere se il peso medio di due diverse specie di tartarughe \u00e8 uguale o meno.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per verificarlo, raccogliamo un semplice campione casuale di tartarughe di ciascuna specie con i seguenti pesi:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Campione 1<\/strong> : 300, 315, 320, 311, 314, 309, 300, 308, 305, 303, 305, 301, 303<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Campione 2<\/strong> : 335, 329, 322, 321, 324, 319, 304, 308, 305, 311, 307, 300, 305<\/span><\/p>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come utilizzare la funzione <a href=\"https:\/\/docs.scipy.org\/doc\/scipy\/reference\/generated\/scipy.stats.ttest_ind.html\" target=\"_blank\" rel=\"noopener\">ttest_ind()<\/a> nella libreria <strong>scipy.stats<\/strong> per eseguire questi due esempi di t-test:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> scipy. <span style=\"color: #3366ff;\">stats<\/span> <span style=\"color: #008000;\">as<\/span> stats<\/span>\n\n#define array of turtle weights for each sample\n<span style=\"color: #000000;\">sample1 = [300, 315, 320, 311, 314, 309, 300, 308, 305, 303, 305, 301, 303]<\/span>\n<span style=\"color: #000000;\">sample2 = [335, 329, 322, 321, 324, 319, 304, 308, 305, 311, 307, 300, 305]<\/span>\n\n#perform two sample t-tests<\/span>\nstats. <span style=\"color: #3366ff;\">ttest_ind<\/span> (a=sample1, b=sample2) \n\nTtest_indResult(statistic=-2.1009029257555696, pvalue=0.04633501389516516)<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">La statistica del test t \u00e8 <strong>\u20132,1009<\/strong> e il corrispondente valore p a due code \u00e8 <strong>0,0463<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Le due ipotesi per questo particolare t-test a due campioni sono:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> :<\/strong> \u00b5 <sub>1<\/sub> = \u00b5 <sub>2<\/sub> (il peso medio tra le due specie \u00e8 uguale)<\/span><\/li>\n<li> <strong style=\"color: #000000;\">H <sub>A<\/sub> :<\/strong> <span style=\"color: #000000;\">\u00b5<\/span> <sub style=\"color: #000000;\">1<\/sub> <span style=\"color: #000000;\">\u2260 \u00b5<\/span> <sub style=\"color: #000000;\">2<\/sub> <span style=\"color: #000000;\">(il peso medio tra le due specie non \u00e8 uguale)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Poich\u00e9 il valore p del test (0,0463) \u00e8 inferiore a 0,05, rifiutiamo l&#8217;ipotesi nulla.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ci\u00f2 significa che abbiamo prove sufficienti per affermare che il peso medio tra le due specie non \u00e8 uguale.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Esempio 3: test t di campioni accoppiati in Python<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Un <a href=\"https:\/\/statorials.org\/it\/test-t-per-campioni-accoppiati\/\" target=\"_blank\" rel=\"noopener\">test t per campioni accoppiati<\/a> viene utilizzato per confrontare le medie di due campioni quando ciascuna osservazione in un campione pu\u00f2 essere associata a un&#8217;osservazione nell&#8217;altro campione.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ad esempio, supponiamo di voler sapere se un determinato programma di allenamento \u00e8 in grado o meno di aumentare il salto verticale massimo (in pollici) dei giocatori di basket.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Per verificarlo, possiamo reclutare un semplice campione casuale di 12 giocatori di basket universitari e misurare ciascuno dei loro salti verticali massimi. Successivamente possiamo far utilizzare a ciascun giocatore il programma di allenamento per un mese e poi misurare nuovamente il salto verticale massimo alla fine del mese.<\/span><\/p>\n<p> <span style=\"color: #000000;\">I seguenti dati mostrano l&#8217;altezza massima del salto (in pollici) prima e dopo l&#8217;utilizzo del programma di allenamento per ciascun giocatore:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Anteriore<\/strong> : 22, 24, 20, 19, 19, 20, 22, 25, 24, 23, 22, 21<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Dopo<\/strong> : 23, 25, 20, 24, 18, 22, 23, 28, 24, 25, 24, 20<\/span><\/p>\n<p> <span style=\"color: #000000;\">Il codice seguente mostra come utilizzare la <a href=\"https:\/\/docs.scipy.org\/doc\/scipy\/reference\/generated\/scipy.stats.ttest_rel.html\" target=\"_blank\" rel=\"noopener\">funzione ttest_rel()<\/a> nella libreria <strong>scipy.stats<\/strong> per eseguire questo t-test con campioni accoppiati:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> scipy. <span style=\"color: #3366ff;\">stats<\/span> <span style=\"color: #008000;\">as<\/span> stats<\/span>\n\n#define before and after max jump heights\n<span style=\"color: #000000;\">before = [22, 24, 20, 19, 19, 20, 22, 25, 24, 23, 22, 21]<\/span>\n<span style=\"color: #000000;\">after = [23, 25, 20, 24, 18, 22, 23, 28, 24, 25, 24, 20]<\/span>\n\n#perform paired samples t-test<\/span>\nstats. <span style=\"color: #3366ff;\">ttest_rel<\/span> (a=before, b=after)\n\nTtest_relResult(statistic=-2.5289026942943655, pvalue=0.02802807458682508)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">La statistica del test t \u00e8 <strong>\u20132,5289<\/strong> e il corrispondente valore p a due code \u00e8 <strong>0,0280<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Le due ipotesi per questo particolare t-test per campioni accoppiati sono:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> :<\/strong> \u00b5 <sub>1<\/sub> = \u00b5 <sub>2<\/sub> (l&#8217;altezza media del salto prima e dopo l&#8217;utilizzo del programma \u00e8 uguale)<\/span><\/li>\n<li> <strong style=\"color: #000000;\">H <sub>A<\/sub> :<\/strong> <span style=\"color: #000000;\">\u00b5<\/span> <sub style=\"color: #000000;\">1<\/sub> <span style=\"color: #000000;\">\u2260 \u00b5<\/span> <sub style=\"color: #000000;\">2<\/sub> <span style=\"color: #000000;\">(l&#8217;altezza media del salto prima e dopo l&#8217;utilizzo del programma non \u00e8 uguale)<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Poich\u00e9 il valore p del test (0,0280) \u00e8 inferiore a 0,05, rifiutiamo l&#8217;ipotesi nulla.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ci\u00f2 significa che abbiamo prove sufficienti per affermare che l\u2019altezza media del salto prima e dopo l\u2019utilizzo del programma di allenamento non \u00e8 uguale.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Risorse addizionali<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u00c8 possibile utilizzare i seguenti calcolatori online per eseguire automaticamente vari test t:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/it\/un-calcolatore-del-test-t-di-esempio\/\" target=\"_blank\" rel=\"noopener\">Un esempio di calcolatore del test t<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/ta-test-calcolatrice-due-campioni\/\" target=\"_blank\" rel=\"noopener\">Calcolatore del test t a due campioni<\/a><br \/> <a href=\"https:\/\/statorials.org\/it\/calcolatore-di-test-per-campioni-accoppiati\/\" target=\"_blank\" rel=\"noopener\">Calcolatore t-Test per campioni accoppiati<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Un test di ipotesi \u00e8 un test statistico formale che utilizziamo per rifiutare o non riuscire a rifiutare un&#8217;ipotesi statistica. Questo tutorial spiega come eseguire i seguenti test di ipotesi in Python: Un test t del campione Test T a due campioni Test t per campioni accoppiati Andiamo! Esempio 1: un esempio di test t [&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 eseguire test di ipotesi in Python (con esempi) - Statorials<\/title>\n<meta name=\"description\" content=\"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.\" \/>\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\/test-di-ipotesi-di-python\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Come eseguire test di ipotesi in Python (con esempi) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-18T12:20:42+00:00\" \/>\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=\"4 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/\",\"url\":\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/\",\"name\":\"Come eseguire test di ipotesi in Python (con esempi) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/it\/#website\"},\"datePublished\":\"2023-07-18T12:20:42+00:00\",\"dateModified\":\"2023-07-18T12:20:42+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae\"},\"description\":\"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Casa\",\"item\":\"https:\/\/statorials.org\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Come eseguire test di ipotesi in python (con esempi)\"}]},{\"@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 eseguire test di ipotesi in Python (con esempi) - Statorials","description":"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.","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\/test-di-ipotesi-di-python\/","og_locale":"it_IT","og_type":"article","og_title":"Come eseguire test di ipotesi in Python (con esempi) - Statorials","og_description":"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.","og_url":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/","og_site_name":"Statorials","article_published_time":"2023-07-18T12:20:42+00:00","author":"Benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Benjamin anderson","Est. reading time":"4 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/","url":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/","name":"Come eseguire test di ipotesi in Python (con esempi) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/it\/#website"},"datePublished":"2023-07-18T12:20:42+00:00","dateModified":"2023-07-18T12:20:42+00:00","author":{"@id":"https:\/\/statorials.org\/it\/#\/schema\/person\/0896f191fb9fb019f2cd8623112cb3ae"},"description":"Questo tutorial spiega come eseguire test di ipotesi in Python, con diversi esempi.","breadcrumb":{"@id":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/it\/test-di-ipotesi-di-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Casa","item":"https:\/\/statorials.org\/it\/"},{"@type":"ListItem","position":2,"name":"Come eseguire test di ipotesi in python (con esempi)"}]},{"@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\/3244"}],"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=3244"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/posts\/3244\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/media?parent=3244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/categories?post=3244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/it\/wp-json\/wp\/v2\/tags?post=3244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}