incanter

Troubles Importing Clojure Libs in Paradise

I occasionally get this problem, and generally work around it, but it's rather frustrating. I have all of Incanter (check it out if you don't know it: it's superb) on my classpath. I try to import it (through a Slime REPL) like this: user> (use 'incanter.core), but fail. Doing this: user> (use 'clojure.contrib.def) works just fine, a...

Has anyone used Incanter in a web app to serve statistical graphs?

I'd like to serve up statistical graphs based on Incanter with a framework like Ring or Compojure in a Clojure environment. I haven't seen any examples or links that do this. Could someone steer me toward working examples? Would Enlive help out here as well? Thanks ...

Generating Random Numbers in Incanter

How do I use the random number generators in Parallel Colt from incanter? I've listed these dependencies in my project.clj file: :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"] [incanter/core "1.2.3"] [incanter/parallelcolt "0.9.4"]] And then I tried...

Fast vector math in Clojure / Incanter

I'm currently looking into Clojure and Incanter as an alternative to R. (Not that I dislike R, but it just interesting to try out new languages.) I like Incanter and find the syntax appealing, but vectorized operations are quite slow as compared e.g. to R or Python. As an example I wanted to get the first order difference of a vector u...