Hadley Wickham

Results 991 issues of Hadley Wickham

Maybe `copy = "inline"` as an additional option?

feature
verb trans :robot:

Currently the header looks something like: ```R # Source: SQL [?? x 5] # Database: duckdb_connection ``` where a tibble looks like: ```R # A tibble: 53,940 × 10 ```...

feature

Neither name really conveys connection to the database. Not sure what they should be instead, but could make use a `db_` prefix? Maybe `db_table()` and `db_simulate()`? Then could add `db_query()`...

feature

feature
func trans :earth_africa:

As long as the generic contains `...`, `R CMD check` does not compare the method and generic args. See for sample package that verifies that. And R CMD check code...

OOP :ribbon:

```R if (is.null(version_label)) { version_label

implementation :sparkles:

If you have an if statement with a large `if` and small `else`: ```R if (cond) { # # # # # # # # } else { something() }...

implementation :sparkles:

i.e. `the

state :slot_machine:

One place to use a warning is where you wish you had originally made an error, but changing the behaviour now would break a lot of code.

side-effects :printer:

i.e. when do you need blank lines between lines of code?

implementation :sparkles: