This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mark": "line", | |
"height": 80, | |
"width": 300, | |
"encoding": { | |
"x": {"field": "estimating-date-time", "type": "temporal"}, | |
"y": {"field": "ETA-variance", "type": "quantitative"}, | |
"row": {"field": "PLATFORM"} | |
}, | |
"data": {"values": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"ETA-variance": 56, | |
"arrival-time": "2021-07-31 07:13:39", | |
"estimating-date-time": "2021-07-31 07:09:42", | |
"PLATFORM": "L20-2" | |
}, | |
{ | |
"ETA-variance": 87, | |
"arrival-time": "2021-07-31 07:13:39", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by GNU Octave configure 4.2.0, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure LD_LIBRARY_PATH=/opt/OpenBLAS/lib CPPFLAGS=-I/opt/OpenBLAS/include LDFLAGS=-L/opt/OpenBLAS/lib --enable-64 | |
## --------- ## | |
## Platform. ## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns dw-pos-study.pairwise-match | |
(:use incanter.stats) | |
(:use utils-yushen.util) | |
(:use clojure.test)) | |
;; This package tries to find the most likely match between words independent of order in two phrases. | |
;; Care is taken to be efficient in order to support plausible approximate match of names between users' text nad a database. | |
(defn switch [[x y]] | |
[y x]) |