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
See errors in https://github.com/mixOmicsTeam/mixOmics/runs/5959674958?check_suite_focus=true
The docs for mthods::is says it takes a vector as class2:
mthods::is
But it's not true, as we see in the code:
Which throws the most unhelpful error if more than one class is provided as of R 4.2.
?inherits says that
?inherits
inherits indicates whether its first argument inherits from any of the classes specified in the what argument.
So the fix is possibly as easy as changing is -> inherits
The text was updated successfully, but these errors were encountered:
fix: api: is -> inherits. Resolves #208
e8bac30
6f7bedf
Remaining fix for mixOmicsTeam#162
829ceab
Closes mixOmicsTeam#169. Related to mixOmicsTeam#199, mixOmicsTeam#208.
aljabadi
Successfully merging a pull request may close this issue.
See errors in https://github.com/mixOmicsTeam/mixOmics/runs/5959674958?check_suite_focus=true
The docs for
mthods::is
says it takes a vector as class2:But it's not true, as we see in the code:
![image](https://user-images.githubusercontent.com/28503057/162606667-e40de7c8-f699-4b8a-bcac-92940e9714fb.png)
Which throws the most unhelpful error if more than one class is provided as of R 4.2.
possible solution
?inherits
says thatSo the fix is possibly as easy as changing is -> inherits
The text was updated successfully, but these errors were encountered: