FCA basic algorithms
Project description
FCA algorithms
This is a module providing a set of commonly used algorithms in FCA, RCA, and some of its variants. Its general intention is to provide an easy to use API so that it's easier to create other programs using these algorithms. Since it's built with python, the overall performance is not expected to be outstanding. Having that said, the chosen algorithms have a somewhat low algorithmic temporal complexity.
CLI
FCA
Plot a hasse diagram from a context
fca_cli -c input.csv --show_hasse
The context is expected to be a csv
with the following format
name | attr1 | attr2 |
---|---|---|
obj1 | x | |
obj2 | x | |
obj3 | x | x |
obj4 |
Output files
fca_cli -c input.csv --show_hasse --output_dir path/to/folder/
Will create two files, one representing the hasse graph, the other one with a concept for each line. The line is the index in the hasse graph.
RCA
To plot the hasse diagrams of the contexts 1 and 2 after applying RCA with exists
fca_cli -k context_1.csv context_2.csv -r relation_1_2.csv relation_2_1.csv --show_hasse
to specify operator
fca_cli -k context_1.csv context_2.csv -r relation_1_2.csv relation_2_1.csv --show_hasse -o forall
FCA utils
Module for FCA basics such as retrieving concepts, drawing a hasse diagram, etc
Getting formal concepts
from fca.api_models import Context
c = Context(O, A, I)
concepts = c.get_concepts(c)
Getting association rules
from fca.api_models import Context
c = Context(O, A, I)
c.get_association_rules(min_support=0.4, min_confidence=1)
Drawing hasse diagram
from fca.plot.plot import plot_from_hasse
from fca.api_models import Context
c = Context(O, A, I)
hasse_lattice, concepts = c.get_lattice(c)
plot_from_hasse(hasse_lattice, concepts)
TODO
- Make algorithms to be able to work with streams (big files)
Contributors
- Ramshell (Nicolas Leutwyler)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fca-algorithms-0.2.2.tar.gz
.
File metadata
- Download URL: fca-algorithms-0.2.2.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0439fe3f14270e6907f6e4ebd11542e30c524326645be976d6724b793153daa |
|
MD5 | dc94e4adfd8909323386330145b952eb |
|
BLAKE2b-256 | 81bf6a1de6a30781abb2ed0dd987b1a6c4a6741b0271eb329835dc2a45e6b2a1 |
File details
Details for the file fca_algorithms-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: fca_algorithms-0.2.2-py3-none-any.whl
- Upload date:
- Size: 27.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c97b64e8a32766e14c22d30d2187cb886709d9399e6cad60ee18955de8f4c58 |
|
MD5 | 9df0f1813d637f2de63f6237578b2219 |
|
BLAKE2b-256 | 83f697224bedcf73fd697b835ef8fe8d41d42e71302f71d890f9ec6904123705 |