I am trying to implement the following link http://data-sorcery.org/category/pca/ and found myself stuck trying to load the necessary Incanter libraries, i.e.
(use '(incanter core stats charts datasets))
The only dependency that I have for Incanter is [incanter "1.5.4"]
. Is this enough to load the libraries, am I just missing something?
I am not really sure how to load the 4 highlighted libraries in the link. To note I have been able to use Incanter previously in the REPL.
Edit: My text editor has the following
(ns my-namespace.filename
(:use [incanter.core]
[incanter.stats]
[incanter.charts]
[incanter.datasets]))
(def iris (to-matrix (get-dataset :iris)))
(view iris)
which returns the error CompilerException javax.net.ssl.SSLProtocolException: handshake alert: unrecognized_name, compiling:(pca.clj:11:22)
The error seems to stem from the inner part, namely the get-dataset... which I am unsure how to fix.