{"id":492,"date":"2023-07-29T17:37:17","date_gmt":"2023-07-29T17:37:17","guid":{"rendered":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/"},"modified":"2023-07-29T17:37:17","modified_gmt":"2023-07-29T17:37:17","slug":"trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt","status":"publish","type":"post","link":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/","title":{"rendered":"Um guia para dt, qt, pt e rt em r"},"content":{"rendered":"<p><span style=\"color: #000000;\">A <strong>distribui\u00e7\u00e3o t de Student<\/strong> \u00e9 uma das distribui\u00e7\u00f5es mais comumente usadas em estat\u00edstica. Este tutorial explica como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es <strong>dt()<\/strong> , <strong>qt()<\/strong> , <strong>pt()<\/strong> e <strong>rt()<\/strong> .<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">dt<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">A fun\u00e7\u00e3o <b>dt<\/b> retorna o valor da fun\u00e7\u00e3o de densidade de probabilidade (pdf) da distribui\u00e7\u00e3o t de Student dada uma certa vari\u00e1vel aleat\u00f3ria <em>x<\/em> e graus de liberdade <em>df<\/em> . A sintaxe para usar dt \u00e9 a seguinte:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">dt(x, df)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">O c\u00f3digo a seguir demonstra alguns exemplos de <b>dt<\/b> em a\u00e7\u00e3o:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find the value of the Student t distribution pdf at x = 0 with 20 degrees of freedom<\/span>\ndt(x = 0, df = 20)\n\n#[1] 0.3939886\n<span style=\"color: #008080;\">\n#by default, R assumes the first argument is <em>x<\/em> and the second argument is <em>df<\/em><\/span>\ndt(0, 20)\n\n#[1] 0.3939886\n<span style=\"color: #008080;\">#find the value of the Student t distribution pdf at x = 1 with 30 degrees of freedom\n<span style=\"color: #000000;\">dt(1, 30)\n<\/span>\n<span style=\"color: #000000;\">#[1] 0.2379933\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Normalmente, ao tentar resolver quest\u00f5es sobre probabilidade usando a distribui\u00e7\u00e3o t de Student, voc\u00ea usar\u00e1 frequentemente <b>pt<\/b> em vez de <strong>dt<\/strong> . Uma aplica\u00e7\u00e3o \u00fatil de <strong>dt<\/strong> , entretanto, \u00e9 criar um gr\u00e1fico de distribui\u00e7\u00e3o t de Student em R. O c\u00f3digo a seguir ilustra como fazer isso:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#Create a sequence of 100 equally spaced numbers between -4 and 4<\/span>\nx &lt;- seq(-4, 4, length=100)\n\n<span style=\"color: #008080;\">#create a vector of values that shows the height of the probability distribution<\/span>\n<span style=\"color: #008080;\">#for each value in x, using 20 degrees of freedom<\/span>\ny &lt;- dt(x = x, df = 20)\n\n<span style=\"color: #008080;\">#plot x and y as a scatterplot with connected lines (type = \"l\") and add<\/span>\n<span style=\"color: #008080;\">#an x-axis with custom labels<\/span>\nplot(x,y, type = \"l\", lwd = 2, axes = FALSE, xlab = \"\", ylab = \"\")\naxis(1, at = -3:3, labels = c(\"-3s\", \"-2s\", \"-1s\", \"mean\", \"1s\", \"2s\", \"3s\"))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Isso gera o seguinte gr\u00e1fico:<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">ponto<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">A fun\u00e7\u00e3o <b>pt<\/b> retorna o valor da fun\u00e7\u00e3o de densidade cumulativa (cdf) da distribui\u00e7\u00e3o t de Student dada uma certa vari\u00e1vel aleat\u00f3ria <em>x<\/em> e graus de liberdade <em>df<\/em> . A sintaxe para usar pnorm \u00e9 a seguinte:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">ponto (x, df)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Em termos simples, <b>pt<\/b> retorna a \u00e1rea \u00e0 esquerda de um determinado valor <em>de x<\/em> na distribui\u00e7\u00e3o t de Student. Se voc\u00ea estiver interessado na \u00e1rea \u00e0 direita de um determinado valor de <em>x<\/em> , voc\u00ea pode simplesmente adicionar o argumento <strong>lower.tail = FALSE<\/strong><\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">pt(x, df, lower.tail = FALSO)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Os exemplos a seguir ilustram como resolver algumas quest\u00f5es de probabilidade usando pt.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Exemplo 1:<\/strong> <em>Encontre a \u00e1rea \u00e0 <strong>esquerda<\/strong> de uma estat\u00edstica t com valor de -0,785 e 14 graus de liberdade.<\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\">pt(-0.785, 14)\n\n#[1] 0.2227675\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Exemplo 2:<\/strong> <em>Encontre a \u00e1rea \u00e0 <strong>direita<\/strong> de uma estat\u00edstica t com valor de -0,785 e 14 graus de liberdade.<\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#the following approaches produce equivalent results\n\n#1 - area to the left<\/span>\n1 - pt(-0.785, 14)\n\n#[1] 0.7772325\n\n<span style=\"color: #008080;\">#area to the right<\/span>\npt(-0.785, 14, lower.tail = FALSE)\n\n#[1] 0.7772325 \n<\/span><\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Exemplo 3:<\/strong> <em>Encontre a \u00e1rea total em uma distribui\u00e7\u00e3o t de Student com 14 graus de liberdade localizada \u00e0 esquerda de -0,785 ou \u00e0 direita de 0,785.<\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong>pt <span style=\"color: #008080;\"><span style=\"color: #000000;\">(-0.785, 14)<\/span><\/span> + pt <span style=\"color: #008080;\"><span style=\"color: #000000;\">(0.785, 14, lower.tail = FALSE)<\/span><\/span>\n\n#[1] 0.4455351<\/strong><\/pre>\n<h2> <strong><span style=\"color: #000000;\">quantidade<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">A fun\u00e7\u00e3o <b>qt<\/b> retorna o valor da fun\u00e7\u00e3o de densidade cumulativa inversa (cdf) da distribui\u00e7\u00e3o t de Student dada uma certa vari\u00e1vel aleat\u00f3ria <em>x<\/em> e graus de liberdade <em>df.<\/em> A sintaxe para usar qt \u00e9 a seguinte:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">qt(x, df)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Em termos simples, voc\u00ea pode usar <strong>qt<\/strong> para descobrir qual \u00e9 a pontua\u00e7\u00e3o t do p- <sup>\u00e9simo<\/sup> quantil da distribui\u00e7\u00e3o t de Student.<\/span><\/p>\n<p> <span style=\"color: #000000;\">O c\u00f3digo a seguir demonstra alguns exemplos de <b>qt<\/b> em a\u00e7\u00e3o:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find the t-score of the 99th quantile of the Student t distribution with df = 20\n<\/span>qt(.99, df = 20)\n\n#[1][1]2.527977<span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">\n\n#find the t-score of the 95th quantile of the Student t distribution with df = 20<\/span>\nqt(.95, df = 20)\n\n#[1]1.724718\n\n<span style=\"color: #008080;\">#find the t-score of the 90th quantile of the Student t distribution with df = 20<\/span>\nqt(.9, df = 20)\n\n#[1]1.325341<\/span>\n<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Observe que os valores cr\u00edticos encontrados por <strong>qt<\/strong> corresponder\u00e3o aos valores cr\u00edticos encontrados na tabela de distribui\u00e7\u00e3o t, bem como aos valores cr\u00edticos que podem ser encontrados pela calculadora de distribui\u00e7\u00e3o t inversa.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">rt<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">A fun\u00e7\u00e3o <b>rt<\/b> gera um vetor de vari\u00e1veis aleat\u00f3rias que segue uma distribui\u00e7\u00e3o t de Student dado um comprimento de vetor <em>n<\/em> e graus de liberdade <em>df<\/em> . A sintaxe para usar rt \u00e9 a seguinte:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">rt(n, df)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">O c\u00f3digo a seguir demonstra alguns exemplos de <b>rt<\/b> em a\u00e7\u00e3o:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#generate a vector of 5 random variables that follows a Student t distribution\n#with df = 20<\/span>\nrt(n = 5, df = 20)\n\n#[1] -1.7422445 0.9560782 0.6635823 1.2122289 -0.7052825\n\n<span style=\"color: #008080;\">#generate a vector of 1000 random variables that follows a Student t distribution\n#with df = 40\n<span style=\"color: #000000;\">narrowDistribution &lt;- rt(1000, 40)\n\n<span style=\"color: #008080;\">#generate a vector of 1000 random variables that follows a Student t distribution\n#with df = 5\n<\/span>wideDistribution &lt;- rt(1000, 5)\n\n<span style=\"color: #008080;\">#generate two histograms to view these two distributions side by side, and specify\n#50 bars in histogram,<\/span>\npar(mfrow=c(1, 2)) #one row, two columns\nhist(narrowDistribution, breaks=50, xlim = c(-6, 4)) \nhist(wideDistribution, breaks=50, xlim = c(-6, 4))\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Isso gera os seguintes histogramas:<\/span><\/p>\n<p> <span style=\"color: #000000;\">Observe como a distribui\u00e7\u00e3o ampla \u00e9 mais ampla do que a distribui\u00e7\u00e3o estreita. Na verdade, especific\u00e1mos que os graus de liberdade na distribui\u00e7\u00e3o ampla eram 5, em compara\u00e7\u00e3o com 40 na distribui\u00e7\u00e3o estreita. Quanto menos graus de liberdade houver, mais ampla ser\u00e1 a distribui\u00e7\u00e3o t de Student.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Leitura adicional:<br \/> <a href=\"https:\/\/statorials.org\/pt\/estatologia-explica-conceitos-de-forma-simples-e-direta-facilitamos-o-aprendizado-de-estatistica\/\">Um guia para dnorm, pnorm, qnorm e rnorm em R<\/a><br \/> <a href=\"https:\/\/statorials.org\/pt\/estatologia-explica-conceitos-de-forma-simples-e-direta-facilitamos-o-aprendizado-de-estatistica\/\">Um guia para dbinom, pbinom, qbinom e rbinom em R<\/a><br \/><\/strong><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A distribui\u00e7\u00e3o t de Student \u00e9 uma das distribui\u00e7\u00f5es mais comumente usadas em estat\u00edstica. Este tutorial explica como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt() , qt() , pt() e rt() . dt A fun\u00e7\u00e3o dt retorna o valor da fun\u00e7\u00e3o de densidade de probabilidade (pdf) da distribui\u00e7\u00e3o 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":[],"class_list":["post-492","post","type-post","status-publish","format-standard","hentry","category-guia"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Um guia para dt, qt, pt e rt em R - Estatoriais<\/title>\n<meta name=\"description\" content=\"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().\" \/>\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\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Um guia para dt, qt, pt e rt em R - Estatoriais\" \/>\n<meta property=\"og:description\" content=\"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T17:37:17+00:00\" \/>\n<meta name=\"author\" content=\"Dr. benjamim anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. benjamim anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/\",\"url\":\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/\",\"name\":\"Um guia para dt, qt, pt e rt em R - Estatoriais\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/pt\/#website\"},\"datePublished\":\"2023-07-29T17:37:17+00:00\",\"dateModified\":\"2023-07-29T17:37:17+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666\"},\"description\":\"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Lar\",\"item\":\"https:\/\/statorials.org\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Um guia para dt, qt, pt e rt em r\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/pt\/#website\",\"url\":\"https:\/\/statorials.org\/pt\/\",\"name\":\"Statorials\",\"description\":\"O seu guia para a literacia estat\u00edstica!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/pt\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-PT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666\",\"name\":\"Dr. benjamim anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-PT\",\"@id\":\"https:\/\/statorials.org\/pt\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. benjamim anderson\"},\"description\":\"Ol\u00e1, sou Benjamin, um professor aposentado de estat\u00edstica que se tornou professor dedicado na Statorials. Com vasta experi\u00eancia e conhecimento na \u00e1rea de estat\u00edstica, estou empenhado em compartilhar meu conhecimento para capacitar os alunos por meio de Statorials. Saber mais\",\"sameAs\":[\"https:\/\/statorials.org\/pt\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Um guia para dt, qt, pt e rt em R - Estatoriais","description":"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().","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\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/","og_locale":"pt_PT","og_type":"article","og_title":"Um guia para dt, qt, pt e rt em R - Estatoriais","og_description":"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().","og_url":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/","og_site_name":"Statorials","article_published_time":"2023-07-29T17:37:17+00:00","author":"Dr. benjamim anderson","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Dr. benjamim anderson","Tempo estimado de leitura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/","url":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/","name":"Um guia para dt, qt, pt e rt em R - Estatoriais","isPartOf":{"@id":"https:\/\/statorials.org\/pt\/#website"},"datePublished":"2023-07-29T17:37:17+00:00","dateModified":"2023-07-29T17:37:17+00:00","author":{"@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666"},"description":"Este tutorial fornece uma explica\u00e7\u00e3o simples de como trabalhar com a distribui\u00e7\u00e3o t de Student em R usando as fun\u00e7\u00f5es dt(), qt(), pt() e rt().","breadcrumb":{"@id":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/pt\/trabalhando-com-distribuicao-t-de-estudante-em-r-dt-qt-pt-rt\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Lar","item":"https:\/\/statorials.org\/pt\/"},{"@type":"ListItem","position":2,"name":"Um guia para dt, qt, pt e rt em r"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/pt\/#website","url":"https:\/\/statorials.org\/pt\/","name":"Statorials","description":"O seu guia para a literacia estat\u00edstica!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/pt\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-PT"},{"@type":"Person","@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/e08f98e8db95e0aa9c310e1b27c9c666","name":"Dr. benjamim anderson","image":{"@type":"ImageObject","inLanguage":"pt-PT","@id":"https:\/\/statorials.org\/pt\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/pt\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr. benjamim anderson"},"description":"Ol\u00e1, sou Benjamin, um professor aposentado de estat\u00edstica que se tornou professor dedicado na Statorials. Com vasta experi\u00eancia e conhecimento na \u00e1rea de estat\u00edstica, estou empenhado em compartilhar meu conhecimento para capacitar os alunos por meio de Statorials. Saber mais","sameAs":["https:\/\/statorials.org\/pt"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts\/492","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/comments?post=492"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/posts\/492\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/media?parent=492"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/categories?post=492"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/pt\/wp-json\/wp\/v2\/tags?post=492"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}