I am new using Orange using version 2.7 and I was wondering if someone can answer the following question: How to relate (not merge, not concatenate) 2 datasets in Orange? Thank you. I have one table “Basic Data” with some general data: caseId, age, gender, etc and a second table in which is stored some characteristics in a field called “Conditions” that are many for each caseid. Both databases are related in one to many relationships where the caseid is the primary key. So, my question is how can I relate both tables and then analyse data coming from both tables? Can I do it with some Orange widget or do I need to build a code in Python?
Orange data mining 2.7 How to relate (not merge, not concatenate) 2 datasets
291 Views Asked by LOrange At
1
There are 1 best solutions below
Related Questions in DATABASE
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- How to not load all database records in my TListbox in Firemonkey Delphi XE8
- microsoft odbc driver manager data source name not found and no default driver specified
- Cloud Connection with Java Window application
- Automatic background scan if user edit column?
- Jmeter JDBC Connection Configuration Parametrization of Database URL for accessing SQL Database
- How to grant privileges to current user
- MySQL: Insert a new row at a specific primary key, or alternately, bump all subsequent rows down?
- Inserting and returning autoidentity in SQLite3
- Architecture: Multiple Mongo databases+connections vs multiple collections with Express
- SQL - Adding a flag based on results within a query - best practice?
- Android database query not returning any results
- Developing a search and tag heavy website
- Oracle stored procedure wrapping compile error with inline comments
- Problems communicating with mysql in php
Related Questions in ORANGE
- Most Visualization Tools are Missing from Orange.Canvas (2015/06/15 source)
- Orange Bayes algorithm with continuous features
- How to use sample weights for a random forest classificator in Orange?
- Can I use Orange CN2 classifier to learn rules for one class only?
- orange3: ImportError: cannot import name '_variable'
- How to connect Orange SQL Table widget to Remote SQL Server
- Missing widget - how do I load one (Discretize)
- Orange doesnot Load when I ugraded from Windows 7 to 8.1 (64 bit)
- Orange Canvas: pythonw.exe has stopped working crashing
- PyQt4/5 in orange3 Python
- Orange: What happened with AttributeStatistics widget?
- Orange add-ons for Mac Os install OK but are not available in the canvas - any clue why?
- Python Orange Distributed Computing
- Import MySQL data into an Orange ExampleTable
- How do I create a new data table in Orange?
Related Questions in RELATE
- Show tree result between two table related with comma
- How to relate two column in PHP MYSQL
- Conditional Relate ID with email and name
- MATLAB: How can I cancel ("NaN" value) elements of a matrix based on another matrix's "NaN" values?
- How to relate objects with schema.org which are on different pages?
- Is there a swedish language pack for EPiServer Relate+ 2.0?
- Determining a rule: relate integer value to color #RGB
- Best Aproach to Relate A Entity Class to the Correspoding Table in a DataBase
- Episerver empty attribute
- Relate DB id's Mysql
- Find related columns in between two Table
- PySpark - Relating Rows to other Rows for filtering
- How can I insert the data from import tables to the model tables in sql?
- Simple Function to normalize related objects
- Orange data mining 2.7 How to relate (not merge, not concatenate) 2 datasets
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You will have to do it in Python. There is no widget for this.
In Orange 3 you can store the data into Postgres and execute the SQL query in a widget. Orange 2 also has several alternative widgets for SQL but I guess they always remained just buggy prototypes.