-
Notifications
You must be signed in to change notification settings - Fork 54
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
Updated fix for Isssue #120 #212
Conversation
bug: brought the output of `plotLoadings()` on MINT objects in line with the other methods Within `plotLoadings.mint.pls()`, adjusted the value of `block` in the `plotLoadings.mixo_pls()` call. This means that both the `X` and `Y` loading values are returned, rather than just `X`
Sorry if this new PR causes any confusion @aljabadi. Due to the PR #180 being merged, I needed to make a new PR. I noticed while making new test cases (as part of PR #206) for Unsure as to why the |
bug: when `plotLoadings()` is run on `mint.(s)pls` objects, the inputted `study` parameter is now checked Prior to this commit, the `check.input.plotLoadings()` call within `plotLoadings.mint.pls()` did not pass the `study` parameter through, meaning that the checks that exist were not being utilised at all
test: added test case for `mint.(s)pls` in `test-plotLoadings.R` to ensure coverage of diff also adjusted `is()` calls to `inherits()` to see if this solves `vignette.Rmd` issue - unlikely
@aljabadi the same issue is occurring as was identified in Issue #170 and rectified in PR #174. I checked Interestingly, this issue has not arisen on pushed commits after this PR. As can be seen in PR #218, no issues of I'm really not sure how to address this issue. Any help would be welcomed |
Hi @Max-Bladen, the builds we wish to pass are in |
@Max-Bladen since each commit in this PR does not carry useful information, we use
The commit message can be something like |
bug: brought the output of
plotLoadings()
on MINT objects in line with the other methodsWithin
plotLoadings.mint.pls()
, adjusted the value ofblock
in theplotLoadings.mixo_pls()
call. This means that both theX
andY
loading values are returned, rather than justX
.