1
I’m trying to run the VIF test for a two-stage MQO model, but the following shows up:
Warning message: In v1 * v2 : length of larger object is not Shorter object length multiple
Follows the model:
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 also:
##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"
Welcome to Stackoverflow! Take a look at how to improve your question so that we can help
– Tomás Barcellos