orange2
orange2 copied to clipboard
DEPRECATED: Orange 2 (Python 2) data mining suite. NEW: https://github.com/biolab/orange3
I am using Ubuntu 16.04.1 LTS and installed Orange with the following commands: sudo apt-get install python3-pip sudo pip3 install orange3 sudo apt install python3-pyqt5 sudo apt install python3-pyqt5.qtwebkit sudo...
I was trying to create data tables from Python list of list. I found that there was a problem with importing the values correctly for some relatively large numbers. It...
Hello, everyone: when I come to deal with the problem that an instance is related with 2 or more labels, what should I do? deadly hope that someone can help...
I am dealing with continuous features and discrete class_var, i.e. ```py atts = ['a','b','c','d'] domain = Orange.data.Domain([Orange.feature.Continuous(x) for x in atts[:-1]] + [Orange.feature.Discrete(atts[-1])]) data = Orange.data.Table(domain) data.append([1,2,3,0]) ``` However, it...
Hi, Can anyone help with the error below when I call the code? import Orange iris = Orange.data.Table("iris.tab") pca = Orange.projection.linear.Pca(iris) transformed_data = pca(iris) ERROR: import Orange iris = Orange.data.Table("iris.tab")...
When installing Orange 3.3.7, I noticed the directory `Orange/widgets/_highcharts/`. The [Highcharts JavaScript charting library is licensed under the CreativeCommons - Non Commercial 3.0](https://shop.highsoft.com/highcharts#non-com) license, and may not be compatible with...
@kernc I use a build-in installer in Anaconda, when I finish it and run I always get the jupyter's homepage. I really want to use the Anaconda but it have...
Hi all, I'm trying to use the SQLReader class in python script widget to access a sqlite database placed in a different path than orange itself. Here's the code: ```...
Installing Orange on an Ubuntu machine is a big hassle. Have you considered releasing Orange on a ppa repository?