Skip to content

Commit

Permalink
reafactor: change cross correlation function name to be consistent wi…
Browse files Browse the repository at this point in the history
…th others
  • Loading branch information
strixy16 committed Dec 19, 2024
1 parent 3205410 commit 8b34c25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/readii/analyze/correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ def getSelfCorrelations(correlation_matrix:pd.DataFrame,



def getCrossCorrelationMatrix(correlation_matrix:pd.DataFrame,
vertical_feature_name:str = "_vertical",
horizontal_feature_name:str = "_horizontal") -> pd.DataFrame:
def getCrossCorrelations(correlation_matrix:pd.DataFrame,
vertical_feature_name:str = "_vertical",
horizontal_feature_name:str = "_horizontal") -> pd.DataFrame:
"""Get the cross correlation matrix subsection for a correlation matrix. Gets the top right quadrant of the correlation matrix so vertical and horizontal features are correctly labeled.
Parameters
Expand Down

0 comments on commit 8b34c25

Please sign in to comment.