Skip to content

Commit

Permalink
Remove deprecated keyword from read_csv for CMS_WPWM_7TEV_MUON
Browse files Browse the repository at this point in the history
  • Loading branch information
achiefa committed Dec 5, 2024
1 parent b063e04 commit 890eee1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def read_corrmatrix(nb_datapoints: int) -> np.ndarray:
"""
corrmat = pd.read_csv(
"./rawdata/covmat.corr", names=[f'{i}' for i in range(nb_datapoints)], delim_whitespace=True
"./rawdata/covmat.corr", names=[f'{i}' for i in range(nb_datapoints)], sep=r'\s+'
)
return corrmat.iloc[:, :].values

Expand Down

0 comments on commit 890eee1

Please sign in to comment.