UNPKG

n8n-nodes-clean-data

Version:

A custom n8n node to clean data using Recursive Feature Elimination (RFE) powered by Python.

6 lines (5 loc) 274 B
import { INodeType, INodeTypeDescription, INodeExecutionData, IExecuteFunctions } from 'n8n-workflow'; export declare class CleanData implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }