• Stars
    star
    196
  • Rank 191,519 (Top 4 %)
  • Language
    C
  • Created over 12 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A C library for statistical and scientific computing
Apophenia is an open statistical library for working with data sets and statistical or simulation models. It provides functions on the same level as those of the typical stats package (such as OLS, probit, or singular value decomposition) but gives the user more flexibility to be creative in model-building. Being in C, it is often an order of magnitude faster when searching for optima or running MCMC chains. The core functions are written in C, but experience has shown them to be easy to bind to Python/Julia/Perl/Ruby/&c.

http://apophenia.info/gentle.html provides an overview of the basics of using the library. If you want to know more about the package, see the web site, http://apophenia.info, or have a look at the textbook from Princeton University Press that coevolved with Apophenia, downloadable from http://modelingwithdata.org .


The quick summary for installation:

βˆ™ The library depends on the GNU Scientific Library and SQLite3. If you are using a system with a package manager of some sort, there is certainly a package for them. Be sure to include both the main package and the lib-, -dev, or -devel package. Sample package manager calls:

    sudo apt-get install make gcc libgsl0-dev libsqlite3-dev 
or 
    sudo yum install make gcc gsl-devel libsqlite3x-devel
or 
    sudo pacman -S make gcc gsl sqlite 

βˆ™ The prebuilt package, that has only basic prerequisites (no Autotools or m4) can be downloaded from another Git branch:

    #Download the zip file, via wget or your preferred downloading method:
    wget https://github.com/b-k/Apophenia/archive/pkg.zip

    #unzip and build
    unzip pkg.zip
    cd Apophenia-pkg
    ./configure
    make
    sudo make install

Or check out the branch via git:

    git clone https://github.com/b-k/Apophenia.git
    cd Apophenia
    git checkout pkg
    ./configure
    make
    sudo make install

βˆ™ This master branch of the git repository requires Autotools, so it can build the
package. Try (apt-get || yum install) autoconf automake libtool. If you have Autotools installed, then from this branch you can run:

    ./configure
    cd apophenia-1.0
    make 
    sudo make install

βˆ™ Find detailed setup instructions and some troubleshooting notes at
http://apophenia.info/setup.html .


Thanks for your interest. I do hope that Apophenia helps you learn more from your data.

--BK

PS: Lawyers, please note that a file named COPYING in the install/ directory describes how this package is licensed under GPLv2.

More Repositories

1

21st-Century-Examples

Examples for _21st Century C_ by Ben Klemens
C
332
star
2

py1040

A U.S. personal income tax calculator
Python
315
star
3

1040.js

A visual implementation of individual U.S. taxes
JavaScript
37
star
4

mms

The Malcontent Management System
TeX
32
star
5

wearin

The more you play your music files, the more they wear in
C
6
star
6

Rapophenia

C
6
star
7

narratives-distributions

A table of concrete micro-level narratives known to generate closed-form statistical distributions.
TeX
5
star
8

cat_notes

My notes and flash cards for category theory
TeX
5
star
9

modeling_examples

Collected examples of modeling
C
5
star
10

dataclub

Like a book club, but with data.
Jupyter Notebook
3
star
11

tweets-are-not-news

Remove headlines from news sites with titles including words like "lambasts", "blasts", "jabs"
JavaScript
3
star
12

git-isclean

Q: Would I lose any work by deleting a local clone of a git repository? A: Run this script to find out.
3
star
13

unicode-falafel

A proposal to add a falafel emoji to the Unicode standard
TeX
2
star
14

tea-tutorial

A tutorial introduction to Tea, an R package for survey processing
TeX
2
star
15

luminosity

A paper on the using light visible at night from space and poverty
C
2
star
16

ml_for_econometricians

Slides and demo script for a talk for IMF econometricians on machine learning
TeX
2
star
17

cmh.py

Cochrane-Mantel-Hanenszel statistic calculator
Jupyter Notebook
1
star
18

small-world-motifs

Count subgraphs and generate random graphs, using a Lua library for storing graphs in a Berkeley DB.
C
1
star
19

ethical-principles-for-disruption

A discussion of ethical principles for developers and technologists
1
star