joining column from two tables without having any common column or any node that can plot data from two tables

I'm trying to merge/join two columns from two different tables but I don't have any common column to join. Basically I want to plot a distribution of two columns present in two tables. Is there ant node that can plot data from two tables?

Than you can use an artifical join column.

Append to each table a counter node, which generates a number starting from 0. Join on this column using full outer join. And you get both tables next to each other.

Does this help?

Best, Iris

No appending new column didn't help as appended columns come as different columns with missing values.

I tried concatenate node and it works for my purpose.

Anyways Thanks Iris :)