How to use the dataprep.clean_vertex function in dataprep

To help you get started, we’ve selected a few dataprep examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github iamprem / summarizer / tryit.py View on Github external
    wordcloud = vertices.map(lambda l: dataprep.clean_vertex(l))
    vertices.cache()
github iamprem / summarizer / textrank.py View on Github external
    vertices = revsents.map(lambda l: dataprep.clean_vertex(l))
    revsents = revsents.cache()