UBC-MDS / magmaviz

MIT License
0 stars 3 forks source link

Create scatterplot function #6

Closed miyer26 closed 2 years ago

iamMoid commented 2 years ago

Thanks, will create a branch to work on the scatterplot function.

iamMoid commented 2 years ago

I am drafting the docstring for the scatterplot.py function and was deciding on the input variables. Three mandatory inputs would be the dataframe, x-axis, y-axis inputs. What if the user wants to add a categorical column as "color" to the chart? I can create an auxiliary variable with default value blank, like: c = "". The function itself will require two different plots based on the condition to check whether c is blank or a variable has been assigned.

iamMoid commented 2 years ago

@miyer26 PR with the scatterplot.py function is ready for you to review