I have two tables that each contain columns of latitude and longitude coordinates (thus they're all floats), so four columns all day. My first goal was to concatenate the respective columns together so as to have just one table, with two longer columns containing everything.
Bear with me, I'm not using pandas, but essentially a dumbed-down module called datascience.
Attempt one looks like
test_list = np.concatenate(airbnb.column('latitude'), stations.column('latitude'))
but I get back TypeError
Traceback (most recent call last) <ipython-input-27-8a5f584e9d8f> in <module> ----> 1 test_list = np.concatenate(airbnb.column('latitude'), stations.column('latitude')) <__array_function__ internals> in concatenate(*args, **kwargs) TypeError: only integer scalar arrays can be converted to a scalar index
any suggestions?