celoMine


NameceloMine JSON
Version 0.0.7 PyPI version JSON
download
home_pagehttps://github.com/JeanBertinR/celoMine
SummaryPredictive machine learning for Celonis
upload_time2023-06-01 14:40:50
maintainer
docs_urlNone
authorJean BERTIN
requires_python
licenseGPL-v3
keywords celonis process mining machine learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # celoMine
<div align="center">
  <img src="./celoMine_logo.png" alt="Logo celoMine" width="50%">
</div>

[![PyPI Downloads](https://img.shields.io/pypi/dm/celoMine.svg?label=PyPI%20downloads)](
https://pypi.org/project/celoMine/)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-Ask%20questions-blue.svg)](
https://stackoverflow.com/questions/tagged/celomine)
[![Nature Paper](https://img.shields.io/badge/Article-Process-Mining--blue)](
https://www.journals.elsevier.com/engineering-applications-of-artificial-intelligence/forthcoming-special-issues/artificial-intelligence-for-process-mining)


celoMine brings predictive machine learning to your Celonis analyses to enable deep process insights and data-driven decision-making.
This powerful python framework leverage machine learning algorithms and visualization techniques within your Celonis analyses to drive process optimization.

- **Source code:** https://github.com/JeanBertinR/celoMine
- **Bug reports:** https://github.com/JeanBertinR/celoMine/issues
- **Report a security vulnerability:** https://tidelift.com/docs/security



## Requirements

- Python 3.x
- pandas
- scikit-learn
- matplotlib

## Installation

You can install the `celoMine` package using `pip`. Here's the installation command from your terminal:

```shell
pip install celoMine
```
Make sure you have Python and pip installed on your system before running this command.
After the installation, you can import the package in your Python code using the following line:
```python
import celoMine
```
That's all it takes to install the package and import it into your project.

## Usage

### Analyzing Event Logs

The `AnalyseEventLog` class allows you to preprocess and analyze event log data. Here is an example of how to use it:

```python
from analyse_event_log import AnalyseEventLog

# Create an instance of AnalyseEventLog
log_analyzer = AnalyseEventLog()

# Load event log data from a CSV file
log_analyzer.load_data('event_log.csv')

# Preprocess the data
log_analyzer.preprocess_data()

# Train a machine learning model
log_analyzer.train_model()

# Get the accuracy of the model
accuracy = log_analyzer.get_model_accuracy()

# Visualize the event log data
log_analyzer.visualize_data()
```

### Visualizing Event Logs
The `VisualizeEventLog` class allows you to visualize event log data. Here is an example of how to use it:

```python
from visualize_event_log import VisualizeEventLog

# Create an instance of VisualizeEventLog
log_visualizer = VisualizeEventLog()

# Load event log data from a CSV file
log_visualizer.load_data('event_log.csv')

# Plot the frequency of events over time
log_visualizer.plot_event_frequency()

# Plot the distribution of events by category
log_visualizer.plot_event_category_distribution()
```

### Contributing
Contributions are welcome! If you have any suggestions or find any issues, please open an issue or submit a pull request.

### License
This project is licensed under the GPL v3 License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JeanBertinR/celoMine",
    "name": "celoMine",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "celonis,process mining,machine learning",
    "author": "Jean BERTIN",
    "author_email": "<jeanbertin.ensam@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/5a/97/25e809ef269aba911d5d1b993a3889fc9af7a9efeb9b39ab769371c6e8d1/celoMine-0.0.7.tar.gz",
    "platform": null,
    "description": "# celoMine\r\n<div align=\"center\">\r\n  <img src=\"./celoMine_logo.png\" alt=\"Logo celoMine\" width=\"50%\">\r\n</div>\r\n\r\n[![PyPI Downloads](https://img.shields.io/pypi/dm/celoMine.svg?label=PyPI%20downloads)](\r\nhttps://pypi.org/project/celoMine/)\r\n[![Stack Overflow](https://img.shields.io/badge/stackoverflow-Ask%20questions-blue.svg)](\r\nhttps://stackoverflow.com/questions/tagged/celomine)\r\n[![Nature Paper](https://img.shields.io/badge/Article-Process-Mining--blue)](\r\nhttps://www.journals.elsevier.com/engineering-applications-of-artificial-intelligence/forthcoming-special-issues/artificial-intelligence-for-process-mining)\r\n\r\n\r\nceloMine brings predictive machine learning to your Celonis analyses to enable deep process insights and data-driven decision-making.\r\nThis powerful python framework leverage machine learning algorithms and visualization techniques within your Celonis analyses to drive process optimization.\r\n\r\n- **Source code:** https://github.com/JeanBertinR/celoMine\r\n- **Bug reports:** https://github.com/JeanBertinR/celoMine/issues\r\n- **Report a security vulnerability:** https://tidelift.com/docs/security\r\n\r\n\r\n\r\n## Requirements\r\n\r\n- Python 3.x\r\n- pandas\r\n- scikit-learn\r\n- matplotlib\r\n\r\n## Installation\r\n\r\nYou can install the `celoMine` package using `pip`. Here's the installation command from your terminal:\r\n\r\n```shell\r\npip install celoMine\r\n```\r\nMake sure you have Python and pip installed on your system before running this command.\r\nAfter the installation, you can import the package in your Python code using the following line:\r\n```python\r\nimport celoMine\r\n```\r\nThat's all it takes to install the package and import it into your project.\r\n\r\n## Usage\r\n\r\n### Analyzing Event Logs\r\n\r\nThe `AnalyseEventLog` class allows you to preprocess and analyze event log data. Here is an example of how to use it:\r\n\r\n```python\r\nfrom analyse_event_log import AnalyseEventLog\r\n\r\n# Create an instance of AnalyseEventLog\r\nlog_analyzer = AnalyseEventLog()\r\n\r\n# Load event log data from a CSV file\r\nlog_analyzer.load_data('event_log.csv')\r\n\r\n# Preprocess the data\r\nlog_analyzer.preprocess_data()\r\n\r\n# Train a machine learning model\r\nlog_analyzer.train_model()\r\n\r\n# Get the accuracy of the model\r\naccuracy = log_analyzer.get_model_accuracy()\r\n\r\n# Visualize the event log data\r\nlog_analyzer.visualize_data()\r\n```\r\n\r\n### Visualizing Event Logs\r\nThe `VisualizeEventLog` class allows you to visualize event log data. Here is an example of how to use it:\r\n\r\n```python\r\nfrom visualize_event_log import VisualizeEventLog\r\n\r\n# Create an instance of VisualizeEventLog\r\nlog_visualizer = VisualizeEventLog()\r\n\r\n# Load event log data from a CSV file\r\nlog_visualizer.load_data('event_log.csv')\r\n\r\n# Plot the frequency of events over time\r\nlog_visualizer.plot_event_frequency()\r\n\r\n# Plot the distribution of events by category\r\nlog_visualizer.plot_event_category_distribution()\r\n```\r\n\r\n### Contributing\r\nContributions are welcome! If you have any suggestions or find any issues, please open an issue or submit a pull request.\r\n\r\n### License\r\nThis project is licensed under the GPL v3 License.\r\n",
    "bugtrack_url": null,
    "license": "GPL-v3",
    "summary": "Predictive machine learning for Celonis",
    "version": "0.0.7",
    "project_urls": {
        "Homepage": "https://github.com/JeanBertinR/celoMine"
    },
    "split_keywords": [
        "celonis",
        "process mining",
        "machine learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f99cfcb45a5f93c60ead421341ff3df336d3d08211c80a8071f0eb6eeac94a6",
                "md5": "ae6626a2fb9392ac2a3f60d14fa225a7",
                "sha256": "d1ede8271623b98b565381ba8b12d6414ea99889ec2b1cc9f276226ff15d44f2"
            },
            "downloads": -1,
            "filename": "celoMine-0.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ae6626a2fb9392ac2a3f60d14fa225a7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 17006,
            "upload_time": "2023-06-01T14:40:48",
            "upload_time_iso_8601": "2023-06-01T14:40:48.044970Z",
            "url": "https://files.pythonhosted.org/packages/9f/99/cfcb45a5f93c60ead421341ff3df336d3d08211c80a8071f0eb6eeac94a6/celoMine-0.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a9725e809ef269aba911d5d1b993a3889fc9af7a9efeb9b39ab769371c6e8d1",
                "md5": "e31987aaaa147a6bb515b8efd2333baf",
                "sha256": "21bb95606af6276b122f9928546b7446aefbe9fbd507c6fe79d622d2887029fd"
            },
            "downloads": -1,
            "filename": "celoMine-0.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "e31987aaaa147a6bb515b8efd2333baf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 16668,
            "upload_time": "2023-06-01T14:40:50",
            "upload_time_iso_8601": "2023-06-01T14:40:50.139301Z",
            "url": "https://files.pythonhosted.org/packages/5a/97/25e809ef269aba911d5d1b993a3889fc9af7a9efeb9b39ab769371c6e8d1/celoMine-0.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-01 14:40:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JeanBertinR",
    "github_project": "celoMine",
    "github_not_found": true,
    "lcname": "celomine"
}
        
Elapsed time: 0.07957s