-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathindexing.test.ts
More file actions
461 lines (350 loc) · 17 KB
/
indexing.test.ts
File metadata and controls
461 lines (350 loc) · 17 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
import { assert } from "chai";
import { describe, it } from "mocha";
import { DataFrame, Series } from "../../dist/danfojs-node/src";
describe("Iloc and Loc based Indexing", function () {
describe("Iloc Index", function () {
it("throw error for wrong row index value", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(0 as any) }, Error, `rows parameter must be an Array. For example: rows: [1,2] or rows: ["0:10"]`);
});
it("throw error for wrong string split parameter", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["0;1"]); }, Error, `Invalid row split parameter: If using row split string, it must be of the form; rows: ["start:end"]`);
});
it("throw error for wrong string split value", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["0:a"]); }, Error, `Invalid row split parameter. Split parameter must be a number`);
});
it("throw error for string split values greater than 2", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["0:4:2"]); }, Error, `Invalid row split parameter: If using row split string, it must be of the form; rows: ["start:end"]`);
});
it("throw error for row index larger than series length", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc([0, 8]); }, Error, "Invalid row parameter: Specified index 8 cannot be bigger than index length 5");
});
it("throw error for non-numeric row index", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc([0, "4"]); }, Error, "Invalid row parameter: row index 4 must be a number");
});
it("df.iloc works for rows:[0,1]", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
let sf = df.iloc([0, 1]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("df.iloc works for rows:[1]", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
let sf = df.iloc([1]);
let expected = [2];
assert.deepEqual(sf.values, expected);
});
it("correct index is returned for df.iloc rows:[1, 2]", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data, { index: ["a", "b", "c", "d", "e"] });
let sf = df.iloc([1, 4]);
let expected = ["b", "e"];
assert.deepEqual(sf.index, expected);
});
it("row slice with string param works [0:2]", function () {
let data = [1, 2, 4, 5, 6, 20, 30, 40, 39, 89, 78];
let df = new Series(data);
let sf = df.iloc(["0:2"]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [1:]", function () {
let data = [1, 2, 34, 5, 620, 30, 409, 89, 78];
let df = new Series(data);
let sf = df.iloc(["1:"]);
let expected = [2, 34, 5, 620, 30, 409, 89, 78];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [:2]", function () {
let data = [1, 2, 34, 5, 6, 20, 30, 40, 39, 89, 78];
let df = new Series(data);
let sf = df.iloc([":2"]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [:]", function () {
let data = [1, 2, 3, 5, 20, 30, 4039, 89, 78];
let df = new Series(data);
let expected = [1, 2, 3, 5, 20, 30, 4039, 89, 78];
let sf = df.iloc([":"]);
assert.deepEqual(sf.values, expected);
});
it(`throw error for wrong start index size ["0:20"]`, function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["0:20"]); }, Error, `row slice [end] index cannot be bigger than 5`);
});
it(`throw error for wrong start index size ["-1:2"]`, function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["-1:2"]); }, Error, `row slice [start] index cannot be less than 0`);
});
it("check data after column slice", function () {
let data = [1, 2, 34, 5, 620, 30, 4039, 89, 78];
let df = new Series(data);
let sf = df.iloc([0, 1, 6]);
let expected = [1, 2, 4039];
assert.deepEqual(sf.values, expected);
});
it("iloc works for boolean array", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.iloc([true, true, false, true, false]);
let expected = [1, 2, 5];
assert.deepEqual(sf.values, expected);
});
it("iloc works for boolean array (all true)", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.iloc([true, true, true, true, true]);
let expected = [1, 2, 34, 5, 620];
assert.deepEqual(sf.values, expected);
});
it("iloc works for boolean array (all false)", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.iloc([false, false, false, false, false]);
let expected: any = [];
assert.deepEqual(sf.values, expected);
});
it("boolean iloc works for DataFrame", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.iloc({ rows: [false, false, false, true] });
const result = [['Pear', 10, 250]];
assert.deepEqual(subDf.values, result);
});
it("boolean iloc works for DataFrame with specified columns", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.iloc({ rows: [false, false, false, true], columns: [0, 2] });
const result = [['Pear', 250]];
assert.deepEqual(subDf.values, result);
});
it("boolean iloc works for DataFrame with Series bool selector", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.iloc({ rows: df["Count"].gt(10), columns: [0, 2] });
const result = [['Apples', 200], ['Banana', 40]]
assert.deepEqual(subDf.values, result);
});
})
describe("Loc Index", function () {
it("throw error for wrong row index value", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc(0 as any) }, Error, `rows parameter must be an Array. For example: rows: [1,2] or rows: ["0:10"]`);
});
it("throw error for wrong string split parameter", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc(["a;1"]); }, Error, `IndexError: Specified index (a;1) not found`);
});
it(`throw error for wrong string split parameter ("0;1")`, function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc(["0;1"]); }, Error, `IndexError: Specified index (0;1) not found`);
});
it("throw error for wrong string split end value", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc(["0:a"]); }, Error, `IndexError: Specified end index not found`);
});
it("throw error for string split values greater than 2", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc(["0:4:2"]); }, Error, `Invalid row split parameter: If using row split string, it must be of the form; rows: ["start:end"]`);
});
it("throw error for row index larger than series length", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc([0, 8]); }, Error, "IndexError: Specified index (8) not found");
});
it("throw error for non-numeric row index not found", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.loc([0, "4"]); }, Error, "IndexError: Specified index (4) not found");
});
it("df.iloc works for rows:[0,1]", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
let sf = df.loc([0, 1]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("df.iloc works for rows:[1]", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
let sf = df.loc([1]);
let expected = [2];
assert.deepEqual(sf.values, expected);
});
it("correct index is returned for df.loc([1, 4])", function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data, { index: ["a", "b", "c", "d", "e"] });
let sf = df.loc(["b", "e"]);
let expected = ["b", "e"];
assert.deepEqual(sf.index, expected);
});
it("row slice with string param works [0:2]", function () {
let data = [1, 2, 4, 5, 6, 20, 30, 40, 39, 89, 78];
let df = new Series(data);
let sf = df.loc(["0:2"]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [1:]", function () {
let data = [1, 2, 34, 5, 620, 30, 409, 89, 78];
let df = new Series(data);
let sf = df.loc(["1:"]);
let expected = [2, 34, 5, 620, 30, 409, 89, 78];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [:2]", function () {
let data = [1, 2, 34, 5, 6, 20, 30, 40, 39, 89, 78];
let df = new Series(data);
let sf = df.loc([":2"]);
let expected = [1, 2];
assert.deepEqual(sf.values, expected);
});
it("row slice with string param works [:]", function () {
let data = [1, 2, 3, 5, 20, 30, 4039, 89, 78];
let df = new Series(data);
let expected = [1, 2, 3, 5, 20, 30, 4039, 89, 78];
let sf = df.loc([":"]);
assert.deepEqual(sf.values, expected);
});
it(`throw error for wrong start index size ["0:20"]`, function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["0:20"]); }, Error, `row slice [end] index cannot be bigger than 5`);
});
it(`throw error for wrong start index size ["-1:2"]`, function () {
let data = [1, 2, 34, 5, 6];
let df = new Series(data);
assert.throws(function () { df.iloc(["-1:2"]); }, Error, `row slice [start] index cannot be less than 0`);
});
it("check data after column slice", function () {
let data = [1, 2, 34, 5, 620, 30, 4039, 89, 78];
let df = new Series(data);
let sf = df.loc([0, 1, 6]);
let expected = [1, 2, 4039];
assert.deepEqual(sf.values, expected);
});
it("loc works for boolean array", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.loc([true, true, false, true, false]);
let expected = [1, 2, 5];
assert.deepEqual(sf.values, expected);
});
it("loc works for boolean array (all true)", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.loc([true, true, true, true, true]);
let expected = [1, 2, 34, 5, 620];
assert.deepEqual(sf.values, expected);
});
it("loc works for boolean array (all false)", function () {
let data = [1, 2, 34, 5, 620];
let df = new Series(data);
let sf = df.loc([false, false, false, false, false]);
let expected: any = [];
assert.deepEqual(sf.values, expected);
});
it("boolean loc works for DataFrame", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.loc({ rows: [false, false, false, true] });
const result = [['Pear', 10, 250]];
assert.deepEqual(subDf.values, result);
});
it("boolean loc works for DataFrame with specified columns", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.loc({ rows: [false, false, false, true], columns: ["Name", "Price"] });
const result = [['Pear', 250]];
assert.deepEqual(subDf.values, result);
});
it("boolean loc works for DataFrame with Series bool selector", function () {
const data = {
"Name": ["Apples", "Mango", "Banana", "Pear"],
"Count": [21, 5, 30, 10],
"Price": [200, 300, 40, 250]
};
const df = new DataFrame(data);
const subDf = df.loc({ rows: df["Count"].gt(10), columns: ["Name", "Price"] });
const result = [['Apples', 200], ['Banana', 40]]
assert.deepEqual(subDf.values, result);
});
it("loc with no matches create a Empty DataFrame conserving columns information", function () {
const data = {
"Name": [ "Apples", "Mango", "Banana", "Pear" ],
"Count": [ 21, 5, 30, 10 ],
"Price": [ 200, 300, 40, 250 ]
};
const df = new DataFrame(data);
const subDf = df.loc({ rows: df["Count"].gt(50) });
assert.deepEqual(subDf.values, []);
assert.deepEqual(subDf.shape, [ 0, 3 ]);
assert.deepEqual(subDf.columns, [ "Name", "Count", "Price" ]);
assert.deepEqual(subDf.dtypes, [ "string", "int32", "int32" ]);
});
it("loc works with column names containing colons", function () {
const data = {
"my:column": [1, 2, 3, 4],
"time:timestamp": ["2023-01-01", "2023-01-02", "2023-01-03", "2023-01-04"],
"normal_column": [10, 20, 30, 40]
};
const df = new DataFrame(data);
// Test accessing a single column with a colon
const singleCol = df.loc({ columns: ["my:column"] });
const singleColExpected = [[1], [2], [3], [4]];
assert.deepEqual(singleCol.values, singleColExpected);
assert.deepEqual(singleCol.columns, ["my:column"]);
// Test accessing multiple columns with colons
const multiCol = df.loc({ columns: ["my:column", "time:timestamp"] });
const multiColExpected = [[1, "2023-01-01"], [2, "2023-01-02"], [3, "2023-01-03"], [4, "2023-01-04"]];
assert.deepEqual(multiCol.values, multiColExpected);
assert.deepEqual(multiCol.columns, ["my:column", "time:timestamp"]);
// Test accessing a mix of columns with and without colons
const mixedCol = df.loc({ columns: ["my:column", "normal_column"] });
const mixedColExpected = [[1, 10], [2, 20], [3, 30], [4, 40]];
assert.deepEqual(mixedCol.values, mixedColExpected);
assert.deepEqual(mixedCol.columns, ["my:column", "normal_column"]);
});
})
});