# create some random data x and y
import numpy as np
x = np.random.random(100)*10
y = np.random.random(100)*10

# create and plot a 2-d scatter plot from scratch
from marvin.utils.plot.scatter import plot
output = plot(x, y)