Grant McDermott
Grant McDermott
A nice to have in the interim would be support for sup-t intervals _a la_ [Olea & Plagborg-Møller](https://scholar.harvard.edu/files/plagborg/files/conf_band.pdf). I have some mock-up code ready to go, but need to focus...
Stoked to see this back up and running! (As an aside, the relentless performance gains of DuckDB are truly impressive.) Two suggestions: 1. ~~Please consider the **collapse** R package ([link](https://github.com/SebKrantz/collapse))....
**Is your feature request related to a problem? Please describe.** For some time, it's been possible to open up a [terminal in VS Code's editor area](https://code.visualstudio.com/docs/terminal/basics#_terminals-in-editor-area), by toggling the `"terminal.integrated.defaultLocation":...
Just ran into an issue where the Hive partition types are not being registered correctly out of the gate. In particular, integer or numeric folder divisions like `month=1` are being...
_Originally raised at https://github.com/JuliaData/DataFrames.jl/issues/3444 but moving here as it seems to be an upstream issue._ Hi folks. I recently gave a workshop where I was extolling the virtues of [DuckDB](https://duckdb.org/)...
Closes #14. Closes #16. Addresses #9 (even if it doesn't provide a formal fix). This PR introduces a formal `"parttree"` class and provides a native `plot.parttree` method using base R...
**What package is missing from Amazon Linux 2023? Please describe and include package name.** `glpk` = Gnu Linear Programming Kit The website is here: https://www.gnu.org/software/glpk/glpk.html **Is this an update to...
In the first example, we have an incorrect window layout _vis-a-vis_ the plotted points. (See the bottom right pane.) ``` r tinyplot::tinyplot(mpg ~ wt, facet = cyl ~ gear, data...
First spotted by @zeileis here: https://github.com/grantmcdermott/tinyplot/pull/190#issuecomment-2267002593 Examples: ``` r library(tinyplot) x = 0:100/10 tinyplot(sin(x) ~ x) ```  ``` r tinyplot(log(x+1) ~ x) ```  ``` r tinyplot(jitter(x) ~ x)...
Specifically, it only seems to be working for the first facet. Tweaked example from the README, where we use `grid = grid()` instead of `grid = TRUE`. ``` r library(tinyplot)...