File: replace_test.go

package info (click to toggle)
golang-github-kshedden-dstream 0.0~git20190512.c4c4106-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 596 kB
  • sloc: makefile: 30
file content (39 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
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
package dstream

import "testing"

func TestReplaceColumn1(t *testing.T) {

	x := [][]interface{}{
		{
			[]float64{5, 8, 1},
			[]float64{2, 1, 3, 1},
		},
		{
			[]float64{5, 8, 1},
			[]float64{2, 1, 3, 1},
		},
		{
			[]float64{2, 3, 4},
			[]float64{1, 2, 1, 1},
		},
	}

	da := NewFromArrays(x, []string{"x0", "x1", "x2"})

	v := []float64{2, 3, 4, 5, 6, 7, 8}
	dx := ReplaceColumn(da, "x2", v)

	x[2] = []interface{}{
		[]float64{2, 3, 4},
		[]float64{5, 6, 7, 8},
	}
	db := NewFromArrays(x, []string{"x0", "x1", "x2"})

	for j := 0; j < 2; j++ {
		if !EqualReport(dx, db, true) {
			t.Fail()
		}
		dx = MemCopy(dx, true)
	}
}