Multiple graphs from csv

Hi
i am new to plotly and python. i am trying to plot multiple scatter combined in one from csv.
i have sample data like this in csv.

image

Hi @hchaudhary146 welcome to the forum ! You can use the pandas function pd.read_csv to create a pandas DataFrame from your CSV file, and then you can plot its different columns in scatter plots as explained in https://plotly.com/python/line-and-scatter/. If you are new to plotly I encourage you to read through https://plotly.com/python/getting-started/ and https://plotly.com/python/creating-and-updating-figures/. The https://plotly.com/python/plotly-fundamentals/ chapter can also be useful.