-
Notifications
You must be signed in to change notification settings - Fork 1
extractstrTR
The purpose of this transformer is extract a part of a column value (sub string) and update the column accordingly.
The specific configuration (as a Datasource) in the configuration file section parameters inclues the following parameters:
- column: The Column name
- start: start the substring at this position
- length: extract this length of the column value
Data sources configuration
- Inputs : 1 input
- Outputs : 1 output
Configuration example:
"transformers": [
{
"id": "T2",
"classname": "pipelite.transformers.extractstrTR",
"inputs" : [ "S1" ],
"outputs" : [ "S2" ],
"parameters": {
"column": "concept:name",
"start": 2,
"length": 3
}
}],
... ] ...
π Home
π Main concepts
π» Installation
π¨ Configuration
π Running
Supported Data Sources
π CSV File
π XES File
π Excel File
π€ ODBC
π’ SAP
π’ ABBYY Timeline
Supported Transformations
π Pass Through
πΆ Dataset Profiling
π Concat 2 Data sources
π SubString
π Column Transformation
π Join data sources
π Lookup
π€ Rename Column Name
Extending pipelite
β
how to
β
Adding new Data sources
β
Adding new Transformers
β
Adding new Pipelines