File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ beforescript:
37
37
script :
38
38
- (cd clust && make && make install && make clean)
39
39
- echo "Preparing version $TRAVIS_BRANCH-$TRAVIS_COMMIT"
40
- - tar czf ml_$TRAVIS_OS_NAME-$TRAVIS_BRANCH.tgz *.q fresh/ xval/ util/ clust/ graph/ timeseries/ optimize/ requirements.txt LICENSE README.md
40
+ - tar czf ml_$TRAVIS_OS_NAME-$TRAVIS_BRANCH.tgz *.q fresh/ xval/ util/ clust/ graph/ timeseries/ optimize/ stats/ requirements.txt LICENSE README.md
41
41
- echo "Packaged as ml_$TRAVIS_OS_NAME-$TRAVIS_BRANCH.zip"
42
42
- if [[ "x$QLIC_KC" != "x" ]]; then
43
43
curl -fsSL -o test.q https://github.com/KxSystems/embedpy/raw/master/test.q;
Original file line number Diff line number Diff line change @@ -33,9 +33,10 @@ fresh.feat.absSumChange:{[data]
33
33
// and standard deviation) of an auto-correlation
34
34
fresh .feat.aggAutoCorr: {[data ]
35
35
n : count data ;
36
+ statsACF : $ [.ml.stats_break ;`adjusted ;`unbiased ];
36
37
autoCorrFunc : $ [(abs [var data ]<1e-10 )| 1 =n;
37
38
0 ;
38
- 1 _ fresh .i.acf [data ;$ [ .ml.stats_break ; `adjusted ; `unbiased ] pykw 1b ;`fft pykw n>1250 ]`
39
+ 1 _ fresh .i.acf [data ;statsACF pykw 1b ;`fft pykw n>1250 ]`
39
40
];
40
41
`mean`variance`median`dev ! (avg ;var ;med ;dev )@\: autoCorrFunc
41
42
}
You can’t perform that action at this time.
0 commit comments