Incanter is an R-like library for Clojure. Is there anything like this for Haskell?
            Asked
            
        
        
            Active
            
        
            Viewed 463 times
        
    2 Answers
6
            There are various bits and pieces, but certainly no "platform". I think Haskell would be great for statistics and data visualization so it's a pity.
Some of the bits and pieces:
- http://hackage.haskell.org/package/statistics
 - http://hackage.haskell.org/package/hmatrix
 - http://hackage.haskell.org/package/hmatrix-gsl-stats
 - http://hackage.haskell.org/package/random-fu
 - http://hackage.haskell.org/package/diagrams
 - http://hackage.haskell.org/package/Chart
 
And many others, but it's all very fragmented and disorganized.
        Grzegorz Chrupała
        
- 3,053
 - 17
 - 24
 
- 
                    Thanks a lot. Even just having a list of packages to look at is better than grepping through hackage. – Luke Hoersten Mar 07 '12 at 23:55
 - 
                    I also found http://hackage.haskell.org/package/csv-enumerator to be extremely useful for large CSV files. – Luke Hoersten Mar 16 '12 at 15:28