This commit is contained in:
2024-06-09 23:30:18 +02:00
parent db1adbcd7d
commit 2a2618f0d1
6 changed files with 96 additions and 4 deletions

View File

@@ -0,0 +1 @@
boxplot(age);

15
EXO2/scripts/q5.sce Normal file
View File

@@ -0,0 +1,15 @@
Q = quart(exp)
IQR = Q(3) - Q(1)
min_xp = min(exp);
max_xp = max(exp);
mean(exp)
median(exp)
Unique_vals = unique(exp);
Freq = histc(exp, Unique_vals);
[max_Freq, max_Index] = max(Freq);
exp_mode = Unique_vals(max_Index);
stdev(exp)
boxplot(exp);