Source code for firelink.replace

from firelink.fire import Firstflame


[docs]class ConditionalReplace(Firstflame): """conidtional statement""" def __init__(self, col, val, cond): self.col = col self.val = val self.cond = cond
[docs] def transform(self, X, y=None): """transform""" pass