-
Notifications
You must be signed in to change notification settings - Fork 3
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
Calculation of CLR transformation #2
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # .idea/workspace.xml
Hello Oleg, So it might be yes, then there might be something I do not understand. Shouldn't the mean be performed on each row of matrix X (if row i contains the features of sample i ) ? |
oh, if row i contains the features of sample i", so your X is an (nxp) matrix where n - samples, p - features then axis=1 is correct since we need a geometric mean per sample |
the currently used function looks as follows:
a small test example, if check the first two values by hand, you will see the mistake
Cheers,
Oleg