Skip to content

zyblx/orange3

Β 
Β 

Repository files navigation

Orange Data Mining

Orange

Orange is a data mining and visualization toolbox for novice and expert alike. To explore data with Orange, one requires no programming or in-depth mathematical knowledge. We believe that workflow-based data science tools democratize data science by hiding complex underlying mechanics and exposing intuitive concepts. Anyone who owns data, or is motivated to peek into data, should have the means to do so.

Example Workflow

Contributing

GitHub Actions codecov Contributor count Latest GitHub commit

Want to get involved? Join us on Discord, introduce yourself in #general!

Take a look at our contributing guide, it might answer some questions, and it outlines the standards we adhere to.

Check out our widget development docs for a comprehensive guide on writing Orange widgets.

If you're looking for a good starting point, check out our good first issues.

The Orange Ecosystem

The development of Orange is primarily split into three repositories:

biolab/orange-canvas-core implements canvas elements,
biolab/orange-widget-base implements a widget window's interface elements,
biolab/orange3 brings it all together and implements the base data mining toolbox.

Additionally, add-ons implement additional widgets for more specific use cases. Anyone can write an add-on. Below is a list of our first-party add-ons:

biolab/orange3-text
biolab/orange3-bioinformatics
biolab/orange3-timeseries
biolab/orange3-single-cell
biolab/orange3-imageanalytics
biolab/orange3-educational
biolab/orange3-geo
biolab/orange3-associate
biolab/orange3-network

Setting up

  1. Set up a virtual environment. We recommend Miniconda.
    conda create python=3 --name orange3
  2. Fork your chosen repository.
    Press the fork button in top-right corner of the page
  3. Clone it.
    git clone ssh://git@github.com/<your-username>/<repo-name>
  4. Install it.
    pip install -e . or python setup.py develop

Now you're ready to work with git. See GitHub's guides on pull requests, forks if you're unfamiliar.
If you're having trouble, get in touch on Discord.

Installing

For easy installation, Download the latest released Orange version from our website.

Installing with Miniconda / Anaconda

Orange requires Python 3.6 or newer.

First, install Miniconda for your OS. Create virtual environment for Orange:

conda create python=3 --name orange3

In your Anaconda Prompt add conda-forge to your channels:

conda config --add channels conda-forge

This will enable access to the latest Orange release. Then install Orange3:

conda install orange3

To install the add-ons, follow a similar recipe:

conda install orange3-<addon name>

See specific add-on repositories for details.

Installing with pip

To install Orange with pip, run the following.

# Install some build requirements via your system's package manager
sudo apt install virtualenv build-essential python3-dev

# Create a separate Python environment for Orange and its dependencies ...
virtualenv --python=python3 --system-site-packages orange3venv
# ... and make it the active one
source orange3venv/bin/activate

# Install Orange
pip install orange3

Installing with winget (Windows only)

To install Orange with winget, run:

winget install --id  UniversityofLjubljana.Orange 

Starting Orange GUI

To start Orange GUI from the command line, run:

orange-canvas
# or
python3 -m Orange.canvas

Append --help for a list of program options.

About

🍊 πŸ“Š πŸ’‘ Orange: Interactive data analysis https://orange.biolab.si

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.5%
  • Other 0.5%