-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathqxsckdataanalysis.js
More file actions
154 lines (146 loc) · 4.6 KB
/
qxsckdataanalysis.js
File metadata and controls
154 lines (146 loc) · 4.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
(function(Scratch) {
'use strict';
Scratch.translate.setup({
zh: {
name: '数据分析',
average: '[NUMBERS] 的平均数',
maximum: '[NUMBERS] 的最大数',
minimum: '[NUMBERS] 的最小数',
median: '[NUMBERS] 的中位数',
mode: '[NUMBERS] 的众数',
variance: '[NUMBERS] 的方差',
},
en: {
name: 'data analysis',
average: 'average of [NUMBERS]',
maximum: 'maximum of [NUMBERS]',
minimum: 'maximum of [NUMBERS]',
median: 'minimum of [NUMBERS]',
mode: 'mode of [NUMBERS]',
variance: 'variance of [NUMBERS]',
}
});
class dataAnalysis {
getInfo() {
return {
id: 'qxsckdataanalysis',
name: Scratch.translate({ id: 'name', default: 'Data Analysis' }),
blocks: [
{
opcode: 'average',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'average', default: 'average of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'maximum',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'maximum', default: 'maximum of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'minimum',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'minimum', default: 'minimum of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'median',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'median', default: 'median of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'mode',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'mode', default: 'mode of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 2 3 4 5'
}
}
},
{
opcode: 'variance',
blockType: Scratch.BlockType.REPORTER,
text: Scratch.translate({ id: 'variance', default: 'variance of [NUMBERS]' }),
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
}
]
};
}
average(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
const sum = numbers.reduce((a, b) => a + b, 0);
return sum / numbers.length;
}
maximum(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
return Math.max(...numbers);
}
minimum(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
return Math.min(...numbers);
}
median(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
const sorted = numbers.sort((a, b) => a - b);
const middle = Math.floor(sorted.length / 2);
if (sorted.length % 2 === 0) {
return (sorted[middle - 1] + sorted[middle]) / 2;
} else {
return sorted[middle];
}
}
mode(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
const counts = new Map();
let maxCount = 0;
let mode = null;
for (const number of numbers) {
let count = counts.get(number) || 0;
count++;
counts.set(number, count);
if (count > maxCount) {
maxCount = count;
mode = number;
}
}
return mode;
}
variance(args) {
const numbers = Scratch.Cast.toString(args.NUMBERS).split(' ').map(Number);
const mean = this.average(args);
const squaredDifferences = numbers.map(x => (x - mean) ** 2);
const sum = squaredDifferences.reduce((a, b) => a + b, 0);
return sum / numbers.length;
}
}
Scratch.extensions.register(new dataAnalysis());
})(Scratch);