Data Prep Sheet

Action Principale : boxPlot

Preparation Code

Script awaiting validation
Copied!
1DATA casuser.ventes_produits;
2 call streaminit(123);
3 DO region = 'Nord', 'Sud', 'Est', 'Ouest';
4 DO produit_id = 1 to 5;
5 DO i = 1 to 100;
6 ventes = 100 + (produit_id * 20) + rand('Normal', 0, 25);
7 IF rand('Uniform') < 0.05 THEN ventes = ventes * 2.5; /* Ajout de quelques valeurs aberrantes */
8 OUTPUT;
9 END;
10 END;
11 END;
12RUN;
Actions using this script
  • percentile boxPlot En cours
  • No other action uses this exact script.