Postagens

Cluster Economia

Imagem
   Inteligência artificial indutiva não supervisionada (Machine Learning) para classificação  - Cluster analysis Tipos de Machine Learning                                     ML UL Clustering Fonte de Dados Sebrae Cidade: Caxias do Sul Tabela Excel dos Dados   Cidade Regiao Cid_reg Habitantes IDH Rend_Cap Cap_Empr Teci_Emr Gov_Descn Org_Prod Ins_Compet Edu_Empr Piracicaba SE Pir_SE 439 0,785 1,14 0,54 0,695 0,796 0,598 0,761 0,004 Sao_Car SE SC_SE 252 0,805 1,08 0,686 0,653 0,812 0,564 0,788 0,002 Sao_Jose SE SJ_SE 461 0,797 1,17 0,613 0,73 0,648 0,597 0,769 0,011 Mon_Clar SE MC_SE 409 0,77 0,65 0,481 0,651 0,696 0,549 0,666 0,124 Rondono CO Ron_CO 232 0,755 0,84 0,452 0,509 0,626 0,567 0,651 0 Anápolis CO Aná_CO 387 0,737 0,79 0,481 0,645 0,695 0,562 0,708 0 Camp_Gra NE CG_NE 410 0,72 0,63 0,458 0,565 0,683 0,571 0,59 0,584 Petroli NE Pet_NE 349 0,697 0,61 0,419 0,43 0,678 0,52...

PCA-Perfil

 data apolin; input Perfil $ Habitantes IDH Rend_Cap Cap_Empr Teci_Emr        Gov_Descn Org_Prod Ins_Compet Edu_Empr; datalines; Cafe 75.18421053 19.74528947 0.676578947 0.466684211 0.489184211 0.582368421 0.469763158 0.487 0.017421053 Gado 409.5 0.745 0.64 0.4695 0.608 0.6895 0.56 0.628 0.354 Indus 450 0.791 1.155 0.5765 0.7125 0.722 0.5975 0.765 0.0075 Soja 232 0.755 0.84 0.452 0.509 0.626 0.567 0.651 0 ; proc print; run; /* input Perfil $ Habitantes IDH Rend_Cap Cap_Empr Teci_Emr        Gov_Descn Org_Prod Ins_Compet Edu_Empr; */ Title "PCA-Biplot"; proc prinqual data=apolin plots=(MDPref)                   /* project onto Prin1 and Prin2 */               ; /* use COV scaling */    transform identity(Habitantes IDH Rend_Cap Cap_Empr Teci_Emr        Gov_Descn Org_Prod Ins_Compet Edu_Empr);  /* identity transform */   ...