-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstats.js
More file actions
130 lines (123 loc) · 3.28 KB
/
stats.js
File metadata and controls
130 lines (123 loc) · 3.28 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
class Stats {
getInfo() {
return {
id: 'stats',
name: '数据分析',
blocks: [
{
opcode: 'average',
blockType: Scratch.BlockType.REPORTER,
text: '平均数自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'maximum',
blockType: Scratch.BlockType.REPORTER,
text: '最大值自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'minimum',
blockType: Scratch.BlockType.REPORTER,
text: '最小值自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'median',
blockType: Scratch.BlockType.REPORTER,
text: '中位数自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'mode',
blockType: Scratch.BlockType.REPORTER,
text: '众数自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 2 3 4 5'
}
}
},
{
opcode: 'variance',
blockType: Scratch.BlockType.REPORTER,
text: '方差自 [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
}
]
};
}
average(args) {
const numbers = args.NUMBERS.split(' ').map(Number);
const sum = numbers.reduce((a, b) => a + b, 0);
return sum / numbers.length;
}
maximum(args) {
const numbers = args.NUMBERS.split(' ').map(Number);
return Math.max(...numbers);
}
minimum(args) {
const numbers = args.NUMBERS.split(' ').map(Number);
return Math.min(...numbers);
}
median(args) {
const numbers = 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 = 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 = 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 Stats());