ttw/data_loader.py [345:351]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            self.X = numpy.array(self.X)
            self.X = PCA(n_components=n_components).fit_transform(self.X)

    def get(self, neighborhood, loc):
        obs = list()
        for key in get_orientation_keys(loc[0], loc[1]):
            if self.pca:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ttw/data_loader.py [374:380]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            self.X = numpy.array(self.X)
            self.X = PCA(n_components=n_components).fit_transform(self.X)

    def get(self, neighborhood, loc):
        obs = list()
        for key in get_orientation_keys(loc[0], loc[1]):
            if self.pca:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



