-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-analysis.js
132 lines (126 loc) · 3.71 KB
/
data-analysis.js
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
(function(Scratch) {
'use strict';
class DataAnalysis {
getInfo() {
return {
id: 'qxsckdataanalysis',
name: 'Data Analysis',
blocks: [
{
opcode: 'average',
blockType: Scratch.BlockType.REPORTER,
text: 'average of [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'maximum',
blockType: Scratch.BlockType.REPORTER,
text: 'maximum of [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'minimum',
blockType: Scratch.BlockType.REPORTER,
text: 'minimum of [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'median',
blockType: Scratch.BlockType.REPORTER,
text: 'median of [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 3 4 5'
}
}
},
{
opcode: 'mode',
blockType: Scratch.BlockType.REPORTER,
text: 'mode of [NUMBERS]',
arguments: {
NUMBERS: {
type: Scratch.ArgumentType.STRING,
defaultValue: '1 2 2 3 4 5'
}
}
},
{
opcode: 'variance',
blockType: Scratch.BlockType.REPORTER,
text: '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));