Garrick Aden-Buie

Results 394 comments of Garrick Aden-Buie

IIUC, these are all equivalent forms of the same `log(log(2))` call where the default value of `base` was explicitly provided but `code_feedback()` fails to notice that they're the same. ```...

Hi @apreshill, we're ready (or very close to being ready) to migrate gradethis to the rstudio org and to wire up pkgdown deploys to Netlify. Could you talk me through...

```r aa `aa()` accepts more than one argument name that begins with `y`. As a result, R cannot figure out which argument you want to pass `2` to. Check how...

I implemented a version of this that — rather than taking the option as a character argument as in `gradethis_default("")` — is instead a list of functions that access the...

> Just want to say another good reason for this are when americian vs british spelling will be used in a solution. Rather than having to specify multiple solutions to...

```r grade_code()(list2env(list(.user_code = "mean(1, 1)", .solution_code = "mean(1, trim = 1)"))) #> ``` These are equivalent but the user code is graded as incorrect.

Note to self about possible solution. We can't know which specific function will run for an S3 generic without evaluating at least one argument. We might not even know _which_...

Here's a reprex as this stands now. @garrettgman do you have any suggestions for the messages we wish to see? ``` r pkgload::load_all("~/work/gradethis") #> Loading gradethis (a8f772102d5b51c2ff3810d45fb4f532f94d8a72) code_feedback("sqrt(1)", "sqrt(1 +...