ODS OUTPUT summary = work.stats ; PROC MEANS DATA = livre.voitures MEAN ; VAR conso_ville ; CLASS type ; RUN ; DATA work.stats ; SET work.stats ; xsys = "2" ; ysys = "2" ; when = "A" ; function = "LABEL" ; xc = type ; y = conso_ville_mean ; /* coordonnées */ text = COMPRESS(nobs)!!" modèles" ; color= "white" ; position = "8" ; /* légèrement sous le point (Xc, Y), centré */ RUN ; AXIS1 LABEL=(ANGLE=90) ; PROC GCHART DATA = livre.voitures ; VBAR type / SUMVAR=conso_ville TYPE=MEAN RAXIS=axis1 ANNOTATE=work.stats ; RUN ; QUIT ;