Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cooperhammond/exmantica
https://github.com/cooperhammond/exmantica
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cooperhammond/exmantica
- Owner: cooperhammond
- Created: 2022-03-01T15:15:54.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-08T14:31:52.000Z (almost 3 years ago)
- Last Synced: 2024-10-25T01:26:18.192Z (2 months ago)
- Language: JavaScript
- Size: 297 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# exmantica
> The consciousness of good intentions disdains ambiguity.
— Alexander Hamilton, _Federalist No. 1_## Goal
This project will be an attempt to create a tool for easy use and access of probability tables. It will likely be in the form of a Javascript webpage with the ability to import/export files. Hopefully this will be a useful tool for those online prophets who want to be precise, public, and bold in their predictions.
Order of tasks is (very) roughly as follows:
- [x] Creation of variables that can referenced in table creation
- [ ] Allow creation of multiple boolean variable tables, such as:
- |X|P(X)|
|-|-|
|+X|`.4`|
|-X|`.6`|
- [ ] Allow creation of conditional boolean variable tables, such as:
- |Y|X|P(X\|Y)|
|-|-|------|
|+Y|+X|`.4`
|+Y|-X|`.6`
|-Y|+X|`.3`
|-Y|-X|`.7`
- [ ] Move from marginal and conditional distribution tables to joint distribution tables (formatting TBD):
- |X|Y|P(X,Y)|
|-|-|-|
|+X|+Y|`.xxx`
|+X|-Y|`.xxx`
|-X|+Y|`.xxx`
|-X|-Y|`.xxx`
- [ ] Go from a joint distribution table to a set of marginal and conditional probability tables
- [ ] Variables with more than 2 states
- [ ] Perform queries on the data, so rather than finding a table `P(X,Y)`, `P(X)`, or `P(X|Y)`, simply enter it as a query and get the table/number.
- [ ] Import and export a set of tables
- [ ] An embeddable export option for blogs
- [ ] Save a document to the cloud that can be linked to for public reference.