You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a feature request: a way of printing all lines that failed a test in the same pretty format as the summary. For example, I ran gp() on one of my packages and got the following note:
✖ avoid sapply(), it is not type safe. It might return a
vector, or a list, depending on the input data. Consider using
vapply() instead.
R/check.split.data.numerical.fit.R:18:34
R/check.split.data.numerical.fit.R:25:34
R/combine.replicates.R:37:19
R/get.combination.count.R:33:30
R/get.combination.count.R:34:34
... and 3 more lines
I'm interested in figuring out what those three other lines are. I assume it's possible to extract this information from the failed_positions() or similar, but I find that format a lot more difficult to parse than the summary.
The text was updated successfully, but these errors were encountered:
I have a feature request: a way of printing all lines that failed a test in the same pretty format as the summary. For example, I ran
gp()
on one of my packages and got the following note:I'm interested in figuring out what those three other lines are. I assume it's possible to extract this information from the
failed_positions()
or similar, but I find that format a lot more difficult to parse than the summary.The text was updated successfully, but these errors were encountered: