Diogo B. Provete
Diogo B. Provete
As instruções para criação da matriz estão incorretas, ao rodar retorna um erro. O correto é como está na resolução do exercício.
No exercício dizia "Crie um fator chamado tr, com dois níveis (“cont” e “trat”) para descrever 300 locais de amostragem, 15 de cada tratamento." Na verdade o correto seria **30**...
``` penguins %>% nest_by(species) %>% mutate(corr_especies = cor(data$bill_length_mm, data$bill_depth_mm, use = "na.or.complete"))%>% summarise(corr_especies, .groups = "keep") ``` vai me retornar uma tabela com os nomes das espécies e as respectivas...
Hi Brian, I'm having a hard time trying to use the code you provided as an example. It seems it's an error when the function tried to retrieve information from...
You mentioned that there's an internal function to do that, but it will spit out a bunch of stuff. Is there an easy way to extract just the trait value...
Hi @uyedaj , just to remind you to see if there's a simple way to extract the posterior distribution of the regression line from the output object to calculate the...