Data Tools for Elixir
Data Tools for Elixir
Eventually, the goal is to create a set of libraries that work nicely together to support using elixir for data analysis.
http://allintheeyes.github.io/elyanah/apps/numeric/doc/api-reference.html
So far, we've got some infix operators for matrix/vector math, for example:
iex> use Elyanah.Numeric
nil
iex> [[1,2],[3,4],[5,6]] * [[1,2,3],[4,5,6]]
[[9, 12, 15], [19, 26, 33], [29, 40, 51]]
I'm going to work on developing something loosely equivalent to a pandas dataframe that can be used for machine learning.