I need to inner-join 2 dataframes: routes and sources. Joining should be on routes.source=sources.row number. And I don't see how to do it (in Python/Pandas you'd just do right_index=True). I've checked the DataFrames.jl doc, and can't see how to join on row number. Nor I could convert row number into another column.
Routes:
Sources:


A
DataFramedoes not have a row index, unlike e.g. a pandas DataFrame.If you want to join on the row number, you can just create it as a column:
and then
to perform an inner join where the
sourcecolumn ofroutesand therow_numcolumn ofsourcesare used to perform the join.