{"id":13507168,"url":"https://github.com/ayrat555/clope","last_synced_at":"2025-05-05T20:55:40.568Z","repository":{"id":57483481,"uuid":"87713695","full_name":"ayrat555/clope","owner":"ayrat555","description":"Elixir implementation of CLOPE: A Fast and Effective Clustering Algorithm for Transactional Data","archived":false,"fork":false,"pushed_at":"2020-07-14T12:57:50.000Z","size":48,"stargazers_count":22,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-03T08:56:31.571Z","etag":null,"topics":["categorical-attributes","clustering","clustering-algorithm","elixir"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayrat555.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-09T14:18:18.000Z","updated_at":"2024-05-27T20:03:45.000Z","dependencies_parsed_at":"2022-08-28T17:01:47.030Z","dependency_job_id":null,"html_url":"https://github.com/ayrat555/clope","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayrat555%2Fclope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayrat555%2Fclope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayrat555%2Fclope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayrat555%2Fclope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayrat555","download_url":"https://codeload.github.com/ayrat555/clope/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252576920,"owners_count":21770720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["categorical-attributes","clustering","clustering-algorithm","elixir"],"created_at":"2024-08-01T02:00:25.885Z","updated_at":"2025-05-05T20:55:40.550Z","avatar_url":"https://github.com/ayrat555.png","language":"Elixir","funding_links":[],"categories":["Algorithms and Data structures"],"sub_categories":[],"readme":"# Clope\n\nCLOPE: A Fast and Effective Clustering Algorithm for Transactional Data\n\nThe algorithm's description\nhttp://www.inf.ufrgs.br/~alvares/CMP259DCBD/clope.pdf\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed as:\n\n  1. Add `clope` to your list of dependencies in `mix.exs`:\n\n```elixir\n  def deps do\n    [{:clope, \"~\u003e 0.1.4\"}]\n  end\n```\n\n  2. Ensure `clope` is started before your application:\n\n```elixir\n  def application do\n    [applications: [:clope]]\n  end\n```\n\n## How to use\n\n```elixir\niex\u003e input = [\n  {\"transaction1\", [\"object1\", \"object2\", \"object3\"]},\n  {\"transaction2\", [\"object1\", \"object5\"]},\n  {\"transaction3\", [\"object2\", \"object3\"]},\n  {\"transaction4\", [\"object1\", \"object5\"]}\n]\niex\u003e result = input |\u003e Clope.clusterize(2)\n[\n  [\n    {\"transaction1\", [\"object1\", \"object2\", \"object3\"]},\n    {\"transaction3\", [\"object2\", \"object3\"]}\n  ],\n  [\n    {\"transaction2\", [\"object1\", \"object5\"]},\n    {\"transaction4\", [\"object1\", \"object5\"]}\n  ]\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayrat555%2Fclope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayrat555%2Fclope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayrat555%2Fclope/lists"}