-
Notifications
You must be signed in to change notification settings - Fork 17
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
Fixing some reported issues #280
Conversation
Probably best to review and merge this PR after #279, will rebase as soon as it is merged |
0bca182
to
42f1101
Compare
Fixed another R4.3.1 issue that broke the reshaping from long to wide using a subgroup variable in process capability. From my side, this is ready to be reviewed now @vandenman |
@vandenman I'm rebasing this now, could you try to review this before end of the week? This should definitely be in the upcoming release... |
1a29d0a
to
51f0d0b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two minor comments, if you have time for them they would be nice to fix but otherwise, this can be merged.
@@ -91,7 +91,8 @@ msaAttribute <- function(jaspResults, dataset, options, ...) { | |||
jaspResults[["AAAtableGraphs"]] <- createJaspContainer(gettext("Attributes Agreement Analysis")) | |||
jaspResults[["AAAtableGraphs"]]$position <- 16 | |||
} | |||
jaspResults[["AAAtableGraphs"]] <- .aaaTableGraphs(ready = ready, dataset = dataset, measurements = measurements, parts = parts, operators = operators, options = options, standards = standards) | |||
jaspResults[["AAAtableGraphs"]] <- .aaaTableGraphs(ready = ready, dataset = dataset, measurements = measurements, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look quite right, but I guess this was already the case?
As in, two lines above you do
jaspResults[["AAAtableGraphs"]] <- createJaspContainer(gettext("Attributes Agreement Analysis"))
and here you do
jaspResults[["AAAtableGraphs"]] <- .aaaTableGraphs(...)
which means that you overwrite everything that was in jaspResults[["AAAtableGraphs"]]
before. I mean, it probably works because it already worked before, but it's not very pretty.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think there is quite a bit in the measurement systems analysis that is not pretty, I would keep this for now, as I have a bigger rewrite of this part planned for early next year...
Co-authored-by: Don van den Bergh <[email protected]>
Based on #279 to make the unit tests work.