-
Notifications
You must be signed in to change notification settings - Fork 4
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
Allow for NA values in optional horizon time difference checks (#140) #146
Conversation
… to check failure and remove early return. Resolves #138
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.
lgtm
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.
Not sure. The diffs should have updated automatically when the other PR's were merged in. That's how it always worked before. GitHub has been a bit strange recently, like when it closed the PR when the branch it was pointing to was deleted. I'm, 100% sure in the past it just redirected the PR to |
But was this pattern you were observing based on the before R-universe workflow? In that workflow, there were always a chain of pull requests In this case, you had A, B, and C all pointing to the I would recommend creating each new branch from main in the future. |
Sometimes I need the features in the other PRs too.
|
Actually, thinking about it, it does make sense why it didn't work as I expected. As mentioned above I do often need to build on previous PRs. But what seems to be actually needed in this situation is a merge in between: isaacs/github#750 (comment) and three-dot-and-two-dot-git-diff-comparisons |
Should be reviewed after #144 & #145 are merged
This PR allows for NA values in optional horizon time difference checks by subsetting
tbl
to complete cases of relevant columns. This ensures rows that may not be targeting relevant to modeling task do not cause false check failure.Resolves #140