outliers.glm | R Documentation |
Encontrar outliers de un GLM. Usa las distancias de Cook e identifica los outliers. Ver la funcion cooks.distance, para mas detalles.
outliers.glm(model, dataframe)
model |
Modelo con GLM y LM. |
dataframe |
Dataframe con el cual se ajustó el modelo. |
Un grafico de outliers y una lista con los outliers detectados.
data(iris)
modelo <- glm(Petal.Width ~ Petal.Length, family = gaussian("log"), data=iris)
outliers.glm(modelo, iris)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.