Home
last modified time | relevance | path

Searched refs:join_funcs (Results 1 – 3 of 3) sorted by relevance

/dports/astro/py-astropy/astropy-5.0/astropy/table/
H A Doperations.py343 join_funcs=None): argument
394 join_funcs,
1035 def _apply_join_funcs(left, right, keys, join_funcs): argument
1041 for key, join_func in join_funcs.items():
1060 join_funcs=None, argument
1115 if join_funcs:
1135 left, right, keys, keys_left, keys_right, join_funcs)
1155 if join_funcs is not None:
1156 if not all(key in keys for key in join_funcs):
1159 left, right, keys = _apply_join_funcs(left, right, keys, join_funcs)
[all …]
/dports/astro/py-astropy/astropy-5.0/astropy/table/tests/
H A Dtest_operations.py601 t12 = table.join(t1, t2, join_funcs={'sc': join_skycoord(0.2 * u.deg)})
619 t12 = table.join(t1, t2, join_funcs={'sc': join_func})
636 t12 = table.join(t1, t2, join_type='outer', join_funcs={'col': join_func})
659 join_funcs = {'col': join_func}
660 t12 = table.join(t1, t2, join_type='outer', join_funcs=join_funcs)
672 left, right, keys = _apply_join_funcs(t1, t2, ('col', 'id'), join_funcs)
682 t12 = table.join(t1, t2, join_funcs={'col': join_func})
694 t12 = table.join(t1, t2, join_funcs={'col': join_func})
714 t12 = table.join(t1, t2, join_type='outer', join_funcs={'col': join_func})
789 table.join(t1, t2, keys_left=['a'], keys_right=['a'], join_funcs={})
/dports/astro/py-astropy/astropy-5.0/docs/table/
H A Doperations.rst1071 This is supported using the ``join_funcs`` argument.
1089 are provided beyond the ``join_funcs``. The code does not do a "pre-join"
1098 To join two tables on a |SkyCoord| key column we use the ``join_funcs`` keyword
1103 join_funcs={'sc': join_skycoord(0.2 * u.deg)}
1138 >>> t12 = join(t1, t2, keys='sc', join_funcs={'sc': join_skycoord(0.2 * u.deg)})