We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9760e1 commit 329f8c4Copy full SHA for 329f8c4
Orange/widgets/visualize/owvenndiagram.py
@@ -716,11 +716,7 @@ def table_concat(tables):
716
domain = Orange.data.Domain(attributes, class_vars, metas)
717
718
tables = list(map(lambda tab: tab.transform(domain), tables))
719
-
720
- # TODO: remove casting to Table when Corpus.concatenate becomes available
721
- new_table = Orange.data.Table.from_table(domain,
722
- Orange.data.Table.concatenate(tables, axis=0))
723
- return new_table
+ return tables[0].concatenate(tables, axis=0)
724
725
726
def copy_descriptor(descriptor, newname=None):
0 commit comments