Skip to content

Commit

Permalink
Update test_mca.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Jun 27, 2023
1 parent 5d9101f commit dffa0c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_mca.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def test_issue_131():
... })
>>> mca = prince.MCA(engine="scipy")
>>> mca = mca.fit(df)
>>> mca.transform(df).round(2)
>>> mca.transform(df).round(2).abs().sort_index(axis='columns')
0 1
0 0.00 2.0
1 0.65 -0.5
2 0.65 -0.5
3 0.65 -0.5
4 -1.94 -0.5
1 0.65 0.5
2 0.65 0.5
3 0.65 0.5
4 1.94 0.5
>>> mca.K_, mca.J_
(2, 8)
Expand Down

0 comments on commit dffa0c5

Please sign in to comment.