We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
comut/comut/comut.py
Line 1045 in 0ee1408
There is no limitation for the value of the groups:
The value of the groups does not matter as long as samples in the same group have the same value.
However, if group column has str type, than np.isnan() will throw exception as:
group
str
np.isnan()
This will be easily solved with changing to df.isna().
df.isna()
The text was updated successfully, but these errors were encountered:
This is a patch for the issue vanallenlab#13
a7455ac
No branches or pull requests
comut/comut/comut.py
Line 1045 in 0ee1408
There is no limitation for the value of the groups:
However, if
group
column hasstr
type, thannp.isnan()
will throw exception as:This will be easily solved with changing to
df.isna()
.The text was updated successfully, but these errors were encountered: