2024-06-12 20:45:45 +02:00
|
|
|
mean(csvDouble(:,6)) //moyenne
|
|
|
|
min(csvDouble(:,6)) //min
|
|
|
|
max(csvDouble(:,6)) //max
|
|
|
|
median(csvDouble(:,6)) //médianne
|
|
|
|
quart(csvDouble(:,6)) //quartile
|
|
|
|
iqr(csvDouble(:,6)) //interquartile
|
|
|
|
stdev(csvDouble(:,6)) //ecart-type
|
2024-06-09 23:30:18 +02:00
|
|
|
|
2024-06-12 20:45:45 +02:00
|
|
|
exp = tabul(csvDouble(:,6))
|
|
|
|
[occurence_tri,indice_tri] = gsort(exp(:,2))
|
|
|
|
liste_exp = exp(:,1)
|
|
|
|
mode = liste_exp(33) //mode
|
2024-06-09 23:30:18 +02:00
|
|
|
|
2024-06-12 20:45:45 +02:00
|
|
|
atomsInstall("stixbox")
|
|
|
|
atomsLoad("stixbox")
|
|
|
|
boxplot(csvDouble(:,6),"whisker",0.25,"orientation","horizontal")
|