Source code for anchor_python_visualization.projection.projector

"""Abstract base class for projection method."""

__author__ = "Owen Feehan"
__copyright__ = "Copyright (C) 2021 Owen Feehan"
__license__ = "MIT"
__version__ = "0.1"

from abc import ABC

import pandas as pd


[docs]class Projector(ABC): """Projects the feature-space to lower dimensionality."""
[docs] def project(self, features: pd.DataFrame) -> pd.DataFrame: """Performs projection, while preserving a data-frame with identical row names. Args: features: data_frame containing only numerical embeddings (as columns) and with labelled row.names Returns: a data-frame of embeddings with identical order and row names, but changed columns. """ pass