The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
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[@]dogado.de.

autotestR

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.

Instalação

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
devtools::install_github("https://github.com/Luiz-Garcia-R/autotestR.git")

Funcionalidades principais

Uso básico

library(autotestR)

# Teste t independente
grupo1 <- rnorm(30, 10, 2)
grupo2 <- rnorm(30, 12, 2)
teste.t(grupo1, grupo2)

# Teste qui-quadrado
var1 <- sample(c("A", "B"), 100, replace = TRUE)
var2 <- sample(c("Sim", "Não"), 100, replace = TRUE)
teste.qui(var1, var2)

# ANOVA com pós-teste
g1 <- rnorm(20, 5)
g2 <- rnorm(20, 7)
g3 <- rnorm(20, 6)
teste.anova(g1, g2, g3)

# Teste de correlação
x <- rnorm(30)
y <- x + rnorm(30, 0, 1)
teste.correlacao(x, y)

Contato

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.
Health stats visible at Monitor.