Incanter is a Clojure-based, R-like platform for statistical computing and graphics.

learn more… | top users | synonyms

1
vote
1answer
37 views

Why does Incanter return number instead of sequence when result is one value?

I am having an issue that can be reduced to the following problem: When the result of a query is one value, sel / $ returns a number, when it is more than one value, it is a sequence: (with-data ...
1
vote
1answer
49 views

Use of incanter $map some clarification

Assume an incanter dataset, freqs, of k columns of integers. I want to convert say 2 of the columns into values between 0 to 1 by dividing each column value by a fixed value, say 20. I can do this ...
1
vote
1answer
36 views

Ways to quickly update an element of a matrix in Incanter, Clojure?

Suppose I have a 3x3 matrix (def myMatrix (matrix (range 9) 3)) ; A 3x3 matrix ; ------------- ; 0.00e+00 1.00e+00 2.00e+00 ; 3.00e+00 4.00e+00 5.00e+00 ; 6.00e+00 7.00e+00 8.00e+00 I can ...
0
votes
1answer
80 views

How to use macro in clojure to view xy-plot with many lines?

I try to write macro that takes dataset as argument and views all data from dataset on single xy-plot. For example,i create dataset (def test-data [["RECALL" "CAFE" "CLIPPERS"] [0 0 0] [14 15 13] ...
3
votes
1answer
131 views

Clojure / Incanter Data Transformations Capabilities

I'm considering Clojure / Incanter as an alternative to R and just wondering if clojure / incanter have the capabilities to do the following: Import the result of a SQL statement as a data-set ( I ...
3
votes
1answer
113 views

Unable to create matrix in incanter 1.4.0

I am playing around with incanter as I am learning clojure and I keep getting an error message when I try to create a matrix in REPL under lein: user=> (use 'incanter.io) nil user=> (use ...
1
vote
0answers
101 views

Step-by-step procedure for nested logistic regression in Incanter

After finding this enormously helpful guide in R, it got me wondering how I might do something similar in Incanter. Being relatively new to Incanter, it would be lovely if someone could reproduce this ...
0
votes
0answers
31 views

How to fit data to distributions with Incanter

Is there a good way to fit data to distributions with Incanter similar to fitdistr in R?
2
votes
1answer
114 views

Idiomatic way to add error bars to plot in Incanter

I'm creating a plot of a robot's belief of its distance to a landmark. The x-axis is number of measurements, and the y-axis is distance to landmark, which should include error bars to indicate the ...
1
vote
1answer
170 views

How can I create an Incanter series based on a range of values

I've got an Incanter dataset with 3 columns: a date/timestamp, a response time and a message size. What I'd like to do is create a scatter plot with the date/timestamp on the x axis and response times ...
7
votes
2answers
328 views

Is there something like Incanter for Haskell?

Incanter is an R-like library for Clojure. Is there anything like this for Haskell?
3
votes
1answer
222 views

How to manipulate legend in Incanter chart

I'm trying to include a legend in an Incanter chart, but I'm having some troubles getting what I want: I want to be able to instantiate a chart with no data first (using [] [] as my x y arguments), ...
2
votes
1answer
198 views

How to display an incanter graph in Jpanel

Does anyone know how to display an incanter chart to jpanel without reverting to jfreechart?
1
vote
1answer
391 views

Modified Bessel functions of order (n)

I'm using Incanter and Parallel Colt for a project, and need to have a function that returns the modified Bessel function of an order n for a value v. The Colt library has two methods for order 0 ...
1
vote
2answers
127 views

Vectorized approach to creating a matrix from the outer product of two vectors

New to Incanter, and was wondering what a vectorized solution to creating a matrix based on the results of the pair-wise product of two lists, would look like. To be clearer, I have two lists that I ...
4
votes
1answer
199 views

Incanter-numpy interop

I would like to use Clojure's Incanter, but I'd like to mix in calls to Python's extensive Numpy/Scipy numerical libraries. Is there an interoperability bridge between Incanter and Numpy that allows ...
1
vote
2answers
243 views

Load complex MATLAB .mat file in clojure / Incanter

In my quest to get ride of MATLAB and replace it with Incanter / Clojure I need to be able to load or at least convert a few terabytes of matlab .mat files. As these are rather complex mat files, ...
7
votes
1answer
371 views

Importing a CSV with different row widths into Incanter?

I'm trying to import a CSV file with rows of many different lengths into Incanter using the read-dataset function. Unfortunately, it appears to truncate the rows down to the length of the first row. ...
4
votes
3answers
246 views

What is the idiomatic way to obtain a sequence of columns from an incanter dataset?

What's the best way to get a sequence of columns (as vectors or whatever) from an Incanter data set? I thought of: (to-vect (trans (to-matrix my-dataset))) But Ideally, I'd like a lazy sequence. ...
6
votes
3answers
493 views

How can I modify a column in an Incanter dataset?

I'd like to be able to transform an individual column in an incanter data set, and save the resulting data set to a new (csv) file. What is the simplest way to do that? Essentially, I'd like to be ...
7
votes
1answer
289 views

Does Incanter have support for sparse matrices?

Does Incanter have support for sparse matrices (multiplication, decomposition, solving)?
9
votes
1answer
565 views

Scientific dataset manipulation in Clojure — reading ByteBuffers into matrices

I'm looking to use Clojure and Incanter for processing of a large scientific dataset; specifically, the 0.5 degree version of this dataset (only available in binary format). My question is, what ...
16
votes
6answers
3k views

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 ...
2
votes
2answers
435 views

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"] ...
6
votes
2answers
424 views

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 ...
4
votes
1answer
208 views

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 ...