Skip to content

Commit

Permalink
remove pd namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
GYHHAHA committed Oct 14, 2022
1 parent 2f3c952 commit cef9e9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas/tests/frame/methods/test_cov_corr.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ def test_corrwith_spearman_with_tied_data(self):
{
"A": [2, 5, 8, 9],
"B": [2, np.nan, 8, 9],
"C": pd.Series([2, np.nan, 8, 9], dtype="Int64"),
"C": Series([2, np.nan, 8, 9], dtype="Int64"),
"D": [0, 1, 1, 0],
"E": [0, np.nan, 1, 0],
"F": pd.Series([0, np.nan, 1, 0], dtype="Float64"),
"F": Series([0, np.nan, 1, 0], dtype="Float64"),
"G": [False, True, True, False],
"H": pd.Series([False, pd.NA, True, False], dtype="boolean"),
"H": Series([False, pd.NA, True, False], dtype="boolean"),
},
)
ser_list = [
Expand Down

0 comments on commit cef9e9a

Please sign in to comment.