edsnlp.processing.helpers
DataFrames = None
module-attribute
spec = importlib.util.find_spec(module.value)
module-attribute
DataFrameModules
Bases: Enum
Source code in edsnlp/processing/helpers.py
9 10 11 12 |
|
PANDAS = 'pandas'
class-attribute
PYSPARK = 'pyspark.sql'
class-attribute
KOALAS = 'databricks.koalas'
class-attribute
get_module(df)
Source code in edsnlp/processing/helpers.py
26 27 28 29 |
|
check_spacy_version_for_context()
Source code in edsnlp/processing/helpers.py
32 33 34 35 36 37 38 39 40 41 |
|
slugify(chained_attr)
Slugify a chained attribute name
PARAMETER | DESCRIPTION |
---|---|
chained_attr |
The string to slugify (replace dots by _)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The slugified string |
Source code in edsnlp/processing/helpers.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|