Forest Fang
Forest Fang
I can confirm this is working for me
You can install with `devtools::install_github("harryprince/h3r", ref="bug-fix/Makefile")` to get this PR version. Also shameless plug, I built an H3 binding using V8 and h3.js, which imports all public JS APIs with...
That was the hope then I found that I need a scalable knn implementation, which distracted me to work on https://github.com/saurfang/spark-knn. Unfortunately I no longer have time pursuing this project....
Maybe you can build an assembly jar on your personal laptop or on an AWS instance? That'd give you flexibility if you need to make any changes to the code.
As much as I love `var {p, q} = {p: 1, q: 2};` in JS, I agree it is pretty confusing to differentiate it from positional unpacking. I like `c(x
Not yet. Funny that I use destructive assignments in Js and Scala day and night but this is not a feature that I miss often when it comes to R....
For anyone who is looking for ways to attach stacktrace in rmarkdown under non-interactive mode, this worked for me (stealing from `try_capture_stack` and `tracer`): ```r knit_hooks = list( evaluate =...
maybe? that sounds reasonable. pull request is welcomed. if you are not sure how to get it to work, please open a pull request with a failing test case that...
Yes. You simply run `transform` again on the training data to get the K neighbors for every point in the dataset. https://github.com/saurfang/spark-knn/blob/master/spark-knn-core/src/test/scala/org/apache/spark/ml/knn/KNNSuite.scala#L31
You are more than welcome to submit a PR. I personally have not used this package for a long long time.