Skip to main content

FCA basic algorithms

Project description

build

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. The main algorithm that calculates formal concepts is inclose, and, in this version, it is implemented in C++. Considering this, the API is expected to behave somewhat acceptably.

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, Concept

c = Context(O : List[str], A : List[str], I : List[List[int]])
concepts = c.get_concepts(c) List[Concept]

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fca-algorithms-1.0.1.tar.gz (22.7 kB view details)

Uploaded Source

Built Distribution

fca_algorithms-1.0.1-py3-none-any.whl (27.3 kB view details)

Uploaded Python 3

File details

Details for the file fca-algorithms-1.0.1.tar.gz.

File metadata

  • Download URL: fca-algorithms-1.0.1.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for fca-algorithms-1.0.1.tar.gz
Algorithm Hash digest
SHA256 5163e656bacf1c77dfe9c7d9219ae3505ce11a3b7a1afeff87b5a07d4e21ad8f
MD5 1befb0569ce33b68c36ffe9adb773e51
BLAKE2b-256 dc0b3c067b0aae428008a843609feead1cabf8da6ac6bbe9d6c92958303fd211

See more details on using hashes here.

File details

Details for the file fca_algorithms-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fca_algorithms-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 40358d8213f87366b03d38b0512b02d1045e40ffd94b5cc884c944bd7052528e
MD5 e4836a83ce62f0501bbd78d22f0b969b
BLAKE2b-256 9e4abd93cddc782e5d267f7b950353ad7940294df3878a161a858342ed7c4363

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page