I'm trying to run the VIF test for a two-stage MQO model, but the following warning appears:
Warning message: In v1 * v2: length of largest object is not multiple of the length of the smaller object
Follow the template:
lm(MEDIA_9EF_JUNTO ~ nona_D_esperado + ID_DEPENDENCIA_ADM + ID_LOCALIZACAO + nona_TAXA_PARTICIPACAO_9EF + ICG + NIVEL_SOCIO_ECONOMICO + Zlocalização, data=nona_serie_final_excluido))
follows the class of variables as well:
##VERIFICANDO CLASSES
> class(quinta_serie_final_excluido$MEDIA_5EF_JUNTO)
[1] "numeric"
> class(quinta_D_esperado)
[1] "numeric"
> class(quinta_serie_final_excluido$ID_DEPENDENCIA_ADM)
[1] "integer"
> class(quinta_serie_final_excluido$ID_LOCALIZACAO)
[1] "integer"
> class(quinta_TAXA_PARTICIPACAO_5EF)
[1] "numeric"
> class(quinta_serie_final_excluido$ICG)
[1] "integer"
> class(quinta_serie_final_excluido$NIVEL_SOCIO_ECONOMICO)
[1] "integer"
> class(quinta_serie_final_excluido$Zlocalização)
[1] "integer"