Emping: derives heuristic rules from nominal data

[ data-mining, program ] [ Propose Tags ]

utility that reads a table in a csv (comma separated) format that can be generated from Open Office Calc (spreadsheet), derives all shortest rules for a selected attribute, and writes them to a .csv file that can be read by OO Calc. If there are logical dependencies in the set of reduced rules, these are shown in a separate .csv file.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.3, 0.3.1, 0.4, 0.5, 0.5.1, 0.6
Dependencies base, parsec [details]
License LicenseRef-GPL
Copyright Hans van Thiel 2006 - 2007
Author Hans van Thiel
Maintainer hthiel.char@zonnet.nl
Category Data Mining
Home page j-van-thiel.speedlinq.nl/
Uploaded by HansVanThiel at 2007-05-21T12:30:09Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables emping
Downloads 7835 total (27 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-01-04 [all 7 reports]

Readme for Emping-0.2

[back to package description]
The compressed archive contains source files in the functional programming language Haskell.
Emping should run on any platform which has the Glasgow Haskell compiler installed.

The preferred way to install emping is through Cabal, for example:

$ runhaskell Setup.lhs configure --prefix=$HOME
$ runhaskell Setup.lhs build
$ runhaskell Setup.lhs install

where the commands might need to follow the prefix:
     /usr/bin/env
depending on your settings.

You might want to look at: http://www.haskell.org/haskellwiki/How_to_write_a_Haskell_program 

and/or the cabal documentation at: http://www.haskell.org/ghc/docs/latest/html/Cabal/index.html

for more information.

-------------------------------------------

Or, put the the source files in a directory of your choice and compile them with:

ghc -fglasgow-exts --make -O Main.hs -o emping

where ghc is the Haskell compiler and emping is the executable. 
(-fglasgow-exts is a required option and -O (upper case) optimizes the compilation)