Shaun Jackman
Shaun Jackman
Yeah, Miller handles only tabular JSON files AFAIK.
```console $ jq '.*100 | floor | ./100'
That works! Thanks, @itchyny! As a feature request, `round` could optionally take an accuracy parameter such as `round(0.01)`.
I have an interest in this topic.
How do R packages specify their non-R dependencies? I maintain [Linuxbrew](http://brew.sh/linuxbrew), the port of Homebrew to Linux. It could be useful for installing those non-R dependencies. It does not require...
Science/HPC users often don't have root access. No one at my institution does. We install in `$HOME`.
When an R package depends on a system library, how is that library installed? Is it up to the user to use the native package manager to install those dependencies?
By "system library" I meant a non-R library that is required by a R package. By "native package manager" I meant apt/yum.
I'm surprised that on Mac OS I've never seen an `install.packages` build fail due to a missing system library. Have I just been lucky?