Skip to content

Commit

Permalink
style: remove spaces after docstrings, remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
strixy16 committed Dec 19, 2024
1 parent d5aa70a commit 3205410
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/readii/analyze/correlation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import pandas as pd

from readii.data.select import validateDataframeSubsetSelection
from readii.utils import logger


Expand Down Expand Up @@ -96,7 +95,6 @@ def getSelfCorrelations(correlation_matrix:pd.DataFrame,
pd.DataFrame
Dataframe containing the vertical self correlations from the correlation matrix.
"""

# Get the rows and columns with the same feature type name suffix
self_correlations = correlation_matrix.filter(like=feature_type_name, axis=0).filter(like=feature_type_name, axis=1)

Expand Down Expand Up @@ -163,8 +161,6 @@ def getSelfAndCrossCorrelations(correlation_matrix:pd.DataFrame,
cross_correlations : pd.DataFrame
Dataframe containing the cross correlations from the correlation matrix.
"""


try:
vertical_correlations, horizontal_correlations = getSelfCorrelations(correlation_matrix, vertical_feature_name), getSelfCorrelations(correlation_matrix, horizontal_feature_name)

Expand Down

0 comments on commit 3205410

Please sign in to comment.