AnalysisPrep

Support data extraction for analysis and machine learning.

In order to extract data from several systems, I've combined some of the tools that make this easier.

For now, the Doctests are the best documentation for using these features. I'll write up some better demonstrations soon.

TODO:

This is a work in progress. There are several things I'd still like to add.

Installation

If available in Hex, the package can be installed as:

  1. Add analysis_prep to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:analysis_prep, "~> 0.1.0"}]
end
```
  1. Ensure analysis_prep is started before your application:
```elixir
def application do
  [applications: [:analysis_prep]]
end
```