Alan
Alan
Though I might not be the most entitled to answer to @behrica question, I'll try anyway since we have more or less the same desire to use more Clojure for...
Nope unfortunately. I ended up using something else Il Sab 6 Lug 2019, 14:38 Joshua Heimbach ha scritto: > I'm also experiencing the same issue using pdfboxing version > 0.1.14.1-SNAPSHOT....
`panthera.numpy` doesn't exist anymore, the nb has to be updated, in the meantime you can substitute that `require` with `(require [libpython-clj.require :refer [require-python]])` and `(require-python '[numpy :as np])`. Then the...
> > > I have not yet refactored everything in your notebooks. Stopped short of adding the python > init code to the 3 notebooks. If libpython-clj is there Python...
No problem! You can use [`drop-cols`](https://github.com/alanmarazzi/panthera/blob/36dbecfd581f77f5e300a2cb1c43bbca60663c83/src/panthera/pandas/reshape.clj#L776) like this to drop columns: ```clojure (pt/drop-cols dataset [:your :cols]) ``` Or if you prefer `drop` -> `(pt/drop dataset [:your :cols] {:axis "columns"})` or...
Hi! There's [this monograph](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/CriminisiForests_FoundTrends_2011.pdf) about random forest and its various declinations. Then there is Chapter 15 of [Elements of Statistical Learning](https://web.stanford.edu/~hastie/Papers/ESLII.pdf) which is very good. Unfortunately for XGBoost I can...
+1 for edn
You just hit one of the major limitations of notebooks: versioning simply doesn't work as intended with them. I guess we have to live with that if we want to...
This is a nice example of what is achievable in terms of tooling/presentation and size: https://github.com/jakevdp/PythonDataScienceHandbook