You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 8, 2023. It is now read-only.
UI shows incorrect node state when two dataframes join.
To Reproduce
To help us reproducing this bug, please provide information below:
In [18]: df1=md.read_csv('Downloads/ml-20m/movies.csv')
In [19]: df2=md.read_csv('Downloads/ml-20m/ratings.csv')
In [20]: df1[['movieId', 'title']].merge(df2[['movieId', 'rating']], on="movieId").execute()