Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List of matrices format for multivariate ranks #8

Open
Quentin62 opened this issue Jul 6, 2021 · 0 comments
Open

List of matrices format for multivariate ranks #8

Quentin62 opened this issue Jul 6, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@Quentin62
Copy link
Contributor

In the multivariate case, the different dimension are concatenated in a matrix.
It would be more convenient to use list of matrices

Current format (big4 data):

          A.uefa B.uefa C.uefa D.uefa A.pl B.pl C.pl D.pl
1992-1993      1      2      3      4    1    2    3    4
1993-1994      1      3      2      4    1    3    2    4
1994-1995      1      3      2      4    1    2    4    3
1995-1996      1      3      2      4    1    2    3    4
1996-1997      1      2      3      4    1    3    2    4

New accepted format:

[[1]]
          A.uefa B.uefa C.uefa D.uefa
1992-1993      1      2      3      4
1993-1994      1      3      2      4
1994-1995      1      3      2      4
1995-1996      1      3      2      4
1996-1997      1      2      3      4

[[2]]
          A.pl B.pl C.pl D.pl
1992-1993    1    2    3    4
1993-1994    1    3    2    4
1994-1995    1    2    4    3
1995-1996    1    2    3    4
1996-1997    1    3    2    4

One advantage is to get rid of the m argument

@Quentin62 Quentin62 added the enhancement New feature or request label Jul 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant