I am working with Azure Data Lake Analytics for the first time and I am unsure how to merge 2 datasets like I would with pandas in python.
I am merging two datasets that have different timestamps but I need to line them up if they are within a specific timespan. This is straight forward in python.
Example python code: pandas.merge_asof(trades, quotes, on='time', by='ticker', tolerance=pd.Timedelta('2ms'))
Full example can be found here: click here
It seems like I can use python in my script however, I am not sure how I would get two datasets into the python function to do this merge.