2024-06-16 18:16:00 +02:00
|
|
|
id_other = find(csvString(:,3) == "Other" );
|
|
|
|
salaire_other = csvDouble(id_other,7);
|
2024-06-17 00:55:52 +02:00
|
|
|
histplot(10,salaire_other,normalization=%f);
|
|
|
|
xlabel('Salaires');
|
|
|
|
ylabel('Effectifs');
|
|
|
|
title('Distribution des salaires pour les autres');
|