Bonsoir tt le monde

Mon objectif est de réaliser une segmentation clients sachant que les individus sur lesquels porte la segmentation ont un comportement différent de remboursement de crédit (remb à terme VS remb anticipé). Donc je commence par faire une ACM. Mon code est le suivant :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
proc corresp data=proj.tab_acm outc=coord(rename=(_type_ =typ_obs _name_ =id) keep = _name_  _type_ dim1-dim10)
outf=eff_percent dim=10 noprint;
tables id_client, statut_pret type_pret cmontant_pret ctaux_pret marque cmontant_vehicule
c_age region csp sit_familiale sit_immob ctaux_effort c_rap;
by statut_pret;
supplementary puissance_fiscale;
run;
variable statut_pret ( remb à terme / remb anticipé)
Est ce que le "by statut_pret" est pertinent ?

Par ailleurs j'ai des erreurs que je n'arrive pas à comprendre.
messages d'erreurs :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
NOTE: Chi-Square statistics and degrees of freedom are only valid when the table of observed
      frequencies is an ordinary two-way contingency table.
ERROR: DIMENS=10 is too large for a 4 by 29 contingency table.
NOTE: The above message was for the following BY group:
      Statut du prêt=Rembt_A_Terme
ERROR: Data set PROJ.TAB_ACM is not sorted in croissant sequence. The current BY group has Statut du
       prêt = Rembt_Anticipe and the next BY group has Statut du prêt = Rembt_A_Terme.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.COORD may be incomplete.  When this step was stopped there were 0
         observations and 12 variables.
WARNING: Table WORK.COORD non remplacée car cette étape a été interrompue.
WARNING: The data set WORK.EFF_PERCENT may be incomplete.  When this step was stopped there were 0
         observations and 6 variables.
WARNING: Table WORK.EFF_PERCENT non remplacée car cette étape a été interrompue.
NOTE: PROCEDURE CORRESP used (Total process time):
      real time           0.05 secondes
      cpu time            0.04 secondes
Merci par avance