Questions tagged [orange]

Orange is a component-based data mining and machine learning software suite, featuring friendly yet powerful and flexible visual programming front-end for explorative data analysis and visualization. It includes comprehensive set of components for data preprocessing, feature scoring and filtering, modeling, model evaluation, and various exploration techniques.

Orange is a free and open-source component-based data mining and machine learning software suite, featuring a visual programming front-end for explorative data analysis and visualization. It includes a set of components for data preprocessing, feature scoring and filtering, modeling, model evaluation, and various exploration techniques. It is implemented mostly in Python and Cython, leveraging the cross-platform Qt framework for its GUI. Orange is distributed free under GNU GPL.

It is maintained by the Bioinformatics Laboratory of the Faculty of Computer and Information Science, University of Ljubljana, Slovenia.

332 questions
25
votes
4 answers

how to run easy_install using a particular python version

I have 3 python versions, I want to easy_install Orange using the second version. How can I do this? Unnecessary info: 2.1 in /usr/bin/python 2.6 in /Library/Frameworks/Python.framework/Versions/2.6/bin/python 3.1 in…
Lavanya
  • 2,286
  • 3
  • 15
  • 13
13
votes
1 answer

How to handle the connection event of widget output in Orange3?

I am developing an add-on widget for Orange3. Is there any way to handle the event of connection/disconnection of widget output? I would like to postpone heavy calculations for one of the outputs until this output is connected with the input of…
12
votes
7 answers

Converting Pandas DataFrame to Orange Table

I notice that this is an issue on GitHub already. Does anyone have any code that converts a Pandas DataFrame to an Orange Table? Explicitly, I have the following table. user hotel star_rating user home_continent gender 0 1 …
hlin117
  • 16,266
  • 25
  • 66
  • 87
11
votes
3 answers

Orange vs NLTK for Content Classification in Python

We need a content classification module. Bayesian classifier seems to be what I am looking for. Should we go for Orange or NLTK ?
philgo20
  • 5,407
  • 6
  • 31
  • 43
10
votes
3 answers

Can't install Orange: "error: command 'clang' failed with exit status 1"

I am trying to install Orange on my Mac OS X 10.7.3 (Lion) and I keep getting an error when using either pip or building from source. First, I was getting an error that read: error: command 'gcc-4.0' failed with exit status 1 I have Xcode 4, which…
Steve L
  • 1,574
  • 1
  • 15
  • 27
6
votes
2 answers

How do I create a new data table in Orange?

I am using Orange (in Python) for some data mining tasks. More specifically, for clustering. Although I have gone through the tutorial and read most of the documentation, I still have a problem. All the examples in docs and tutorials assume that I…
George Eracleous
  • 3,981
  • 5
  • 34
  • 49
5
votes
1 answer

How to connect Orange SQL Table widget to Remote SQL Server

I just installed Orange 3.3.9 on my Windows 7 workstation. I'm trying to connect to a remote MSSQL server instance using the "SQL Table" widget in Orange. When I double click the SQL Table widget I get what appears to be a dialog box to configure…
user1038638
  • 65
  • 1
  • 4
5
votes
2 answers

imputing missing values using a predictive model

I am trying to impute missing values in Python and sklearn does not appear to have a method beyond average (mean, median, or mode) imputation. Orange imputation model seems to provide a viable option. However, it appears Orange.data.Table is not…
sedeh
  • 5,252
  • 4
  • 37
  • 51
5
votes
0 answers

Lasso Regression with weighted input in Python

I am interested in doing Lasso Regression technique in Python. However, I would like to weight the input data for the algorithm. Can you suggest some libraries that can perform the Lasso regression taking into consideration the input weights? I…
Marco
  • 2,123
  • 4
  • 22
  • 28
4
votes
0 answers

Am I using PCA in Orange in a correct way?

I am analysing if 15 books can be grouped according to 6 variables (of the 15 books, 2 are written by an author, 6 by an other one, and 7 by an other one). I counted the number of occurrences of the variables and I calculated the percentage. Then I…
ACIU
  • 41
  • 1
4
votes
0 answers

Orange custom widget

I am trying to get the example given in Orange Development Tutorial to work with version 2.7. However, while I am able to test my widget from the Python shell, I can't get the custom widget that I generate to show up in the Orange Canvas GUI. All I…
Rebelzane
  • 41
  • 1
4
votes
1 answer

Association rules with pandas dataframe

I have a dataframe like this df = pd.DataFrame(data=[980,169,104,74], columns=['Count'], index=['X,Y,Z', 'X,Z','X','Y,Z']) Count X, Y, Z 980 X,Z 169 X 104 Y,Z 74 I want to be able to extract…
dooms
  • 1,317
  • 2
  • 12
  • 26
4
votes
1 answer

Importing Orange returns "ImportError: no module named orange"

I'd like to use the Orange package for scientific analysis . Installation on x86_64 Ubuntu 12.04, with Python 2.7.3, went well, using sudo easy_install orange. However, the package doesn't seem to be available for direct use: 11:30:43 leon@t410i:~$…
Leon Derczynski
  • 535
  • 5
  • 15
3
votes
0 answers

Pandas dataframe to Orange table with setting role (feature or target)

I have a dataframe as follows df = pd.DataFrame({"A": ["a", "b", "c"], "B": ["d", "e", "f"], "C": ["yes", "no", "yes"]}) I would like to convert df to orange table and set A and B as categorical attributes and then set C as the class variable…
3
votes
1 answer

Why can't I save using Save Data or Save Model?

I cannot seem to save any of my models, nor any of the data created from their training. What am I missing? The input is >15,000 images created in ~200 classes.
RMass
  • 165
  • 1
  • 11
1
2 3
22 23