Maximilian Paulisch
Maximilian Paulisch
Argh, sorry, I ran the reprex again and didn't check that it didn't contain the issue anymore. This only seems to happen when connection to SQLite before. Interesting.
Seems to be fixed now 👍
Which version of R would you recommend for Windows?
There is no possibility to directly get back the column names when creating the table, is there? dbplyr queries them via `SELECT * FROM WHERE 0 = 1` but of...
dbplyr doesn't know the column types, so it is not possible to simply translate `+` and `-` correctly for dates. Therefore, a custom function like `date_add()` and `date_diff()` would be...
What's the class of your connection?
@hadley What do you think?
You can simply remove the window order via `df_g |> window_order()`. > It seems to me that the group_by(year) should remove the effects any previous window_order(). I'm not sure that...
Now you've lost me... Can you create a reprex and clearly state what's your issue? Otherwise I can't really help you.
Your reprex is very complicated. Please try to boil it down next time. I think the essence is caught by: ``` r library(dplyr, warn.conflicts = FALSE) library(dbplyr, warn.conflicts = FALSE)...