The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
autotestR é um pacote R voltado para simplificar a realização dos principais testes estatísticos usados na área de biociências, com funções amigáveis que geram gráficos automáticos e explicações claras, facilitando a vida de pesquisadores e estudantes brasileiros.
Você pode instalar a versão de desenvolvimento do autotestR diretamente do GitHub com:
# Instale o pacote devtools se ainda não tiver
install.packages("devtools")
# Instale autotestR do GitHub
::install_github("https://github.com/Luiz-Garcia-R/autotestR.git") devtools
library(autotestR)
# Teste t independente
<- rnorm(30, 10, 2)
grupo1 <- rnorm(30, 12, 2)
grupo2 teste.t(grupo1, grupo2)
# Teste qui-quadrado
<- sample(c("A", "B"), 100, replace = TRUE)
var1 <- sample(c("Sim", "Não"), 100, replace = TRUE)
var2 teste.qui(var1, var2)
# ANOVA com pós-teste
<- rnorm(20, 5)
g1 <- rnorm(20, 7)
g2 <- rnorm(20, 6)
g3 teste.anova(g1, g2, g3)
# Teste de correlação
<- rnorm(30)
x <- x + rnorm(30, 0, 1)
y teste.correlacao(x, y)
Se tiver dúvidas, sugestões ou quiser contribuir, abra uma issue ou envie um pull request no repositório GitHub.
Obrigado por usar o autotestR!
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.