* DomainExtractor

*SDV Enterprise Feature. This feature is available to our licensed users and is not currently in our public library. To learn more about the SDV Enterprise and its extra features, visit our website.

The DomainExtractor extracts domains from emails so that they can be used later for data science. It keeps the original emails so that the same exact emails can be recovered during the reverse transform.

from rdt.transformers.email import DomainExtractor

transformer = DomainExtractor()

Parameters

extracted_domain: Which parts of the overall email domain to extract during the transformation phase

Examples

from rdt.transformers.email import DomainExtractor

transformers = DomainExtractor(extracted_domain='top')

Last updated