Skip to content
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

Validate f function in epi[x]_slide; give better feedback if doesn't take enough args #168

Closed
brookslogan opened this issue Jul 26, 2022 · 4 comments
Assignees
Labels
P1 medium priority REPL Improved print, errors, etc.

Comments

@brookslogan
Copy link
Contributor

See this example:

epi_slide(jhu_csse_county_level_subset, function(x) print(x))
Error in .f(.x, ...) : unused argument (list())

The error message isn't that informative, and seems like it might be fairly commonly encountered. (I have trouble remembering the g arg despite discussing it for a while.)

We can check that f takes enough arguments beforehand. I believe I have something along these lines for a different function in #102. (See fn_max_n_args definition and use.)

@brookslogan brookslogan added P1 medium priority REPL Improved print, errors, etc. labels Jul 26, 2022
@brookslogan brookslogan changed the title Validate f function in epi_slide; give better feedback if doesn't take enough args Validate f function in epi[x]_slide; give better feedback if doesn't take enough args Mar 20, 2023
@brookslogan
Copy link
Contributor Author

I've hit this while trying to use lm.fit or slice_min as the computation, which may give more confusing error messages than the above.

@brookslogan
Copy link
Contributor Author

Having checks also hit the above cases might require something more detailed than checking fn_max_n_args, such as requiring the number of positional args before seeing any ... to be at least the number of mandatory arguments for the slide. (This might require explicitly forwarding some things to comp_one_group that previously we forwarded via ..., but might catch slice_min even though it takes more than enough args.)

@nmdefries
Copy link
Contributor

I've hit this while trying to use lm.fit or slice_min as the computation

Both lm.fit and slice_min take two positional args before ..., and are successfully passed x and g by epi_slide. The errors

epi_slide(jhu_csse_county_level_subset, slice_min, before=2L)
# Error in `.f()`:
# ! Problem while computing indices.
# Caused by error in `UseMethod()`:
# ! no applicable method for 'group_keys' applied to an object of class "rlang_data_pronoun"
epi_slide(jhu_csse_county_level_subset, lm.fit, before=2L)
# Error in .f(.x, ...) : incompatible dimensions

both come from internal arg validation by the provided function, so this behavior seems correct. (Also, since both functions already take 2 args before ... the approach proposed above wouldn't catch them; we could check arg names?)

@nmdefries
Copy link
Contributor

Closed in #302

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
P1 medium priority REPL Improved print, errors, etc.
Projects
None yet
Development

No branches or pull requests

2 participants