This commit is contained in:
2024-06-09 21:32:28 +02:00
parent 776de65207
commit c1538de0d8
9 changed files with 106 additions and 6 deletions

3
EXO2/scripts/init.sce Normal file
View File

@@ -0,0 +1,3 @@
D = csvRead('data.csv');
DD = csvRead('data.csv',',','.','string');
genre = DD(:,3);

4
EXO2/scripts/q1.sce Normal file
View File

@@ -0,0 +1,4 @@
age = D(:, 2);
min_age = min(age);
max_age = max(age);
histplot(41,age);

4
EXO2/scripts/q2.sce Normal file
View File

@@ -0,0 +1,4 @@
exp = D(:,6);
min_xp = min(exp);
max_xp = max(exp);
histplot(34,exp);

0
EXO2/scripts/q3.sce Normal file
View File

0
EXO2/scripts/q4.sce Normal file
View File