How can I achieve a cross join in R ? I know that "merge" can do inner join, outer join. But I do not know how to achieve a cross join in R.
Thanks
|
How can I achieve a cross join in R ? I know that "merge" can do inner join, outer join. But I do not know how to achieve a cross join in R. Thanks |
||||
|
|
|
Is it just
From documentation of
|
|||
|
|
|
If speed is an issue, I suggest checking out the excellent You didn't provide example data. If you just want to get all combinations of two (or more individual) columns, you can use
If you want to do a cross join on two tables, I haven't found a way to use CJ(). But you can still use data tables:
Explanation of the
You can also turn this into a function, so it's cleaner to use:
|
||||
|
|
|
@danas showed there is an easy built-in way, but I'll leave my answer here in case it is useful for other purposes.
and showing that it works with some built-in data sets:
|
||||
|
|