I\'m trying to call a function from the cluster module, like so:
import sklearn db = sklearn.cluster.DBSCAN()
and I get the following error
Place this line on top of the python file
from sklearn import cluster
That should do it :))