Skip to content

Commit

Permalink
feat: Updated example function call statement
Browse files Browse the repository at this point in the history
  • Loading branch information
iamMoid committed Jan 19, 2022
1 parent 781357e commit 1e355f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/magmaviz/scatterplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ def scatterplot(df, x, y, c="", t="", o=0.5, s=50, xtitle="", ytitle="", ctitle=
Example
-------
>>> from magmaviz.magmaviz import scatterplot
>>> scatterplot(iris, "Sepal.Length", "Sepal.Width", Species)
>>> from vega_datasets import data
>>> scatterplot(data.iris(), "sepalLength", "sepalWidth", "species",
"Iris Sepal Length vs Sepal Width across Species",
1.0, 50, "Sepal Length", "Sepal Width", "", False, False, True)
"""

# Basic checks to see if parameters passed to function call contain expected values
Expand Down

0 comments on commit 1e355f7

Please sign in to comment.