I am new to kedro, and I don't know if I am asking the right question here.
Is it possible on kedro mlflow ui to plot x and y lists?
I am running kedro pipeline with mlflow. I have catalog.yaml which I log metrics and artifacts.
The end goal is:
kedro run 1 # generate x1[1,2,3,4] and y1=[1,2,2,2] these numbers are just examples
kedro run 2 # generate x2[1,2,3,4] and y2=[3,1,2,1] these numbers are just examples
kedro run 3 # generate x2[1,2,3,4] and y2=[1,3,3,3] these numbers are just examples
then kedro mlflow ui
select run1, run2, and run3 then click compare.
on scatter plot ---> able to select x1, x2, and x3 and for y axis able to select y1, y2, and y3
then I should be able to see plot with three lines.
thank you for your help.