Mike Lawrence
                                            Mike Lawrence
                                        
                                    dunno if it helps or not, but here's the code used by the package whose functions I'm using in my_script.R: warning("There were ", n_d, " divergent transitions after warmup.", "...
I think the problem is in notify_loggr where you only pass the first element of args to .makeMessage.
ok, think I fixed this, pull request here: https://github.com/smbache/loggr/pull/34
I’ve toyed with python-zarr and 7z, and so far as I can tell, if you start with a DirectoryStore and compress with 7z, you have to use the -tzip flag...
> Should move this issue to zarr-python? It doesn't seem like a spec issue Sure, the only reason I posted here is because the zarr-python issue page recommends putting feature...
> Even with sharding I would still recommend a much larger chunk size, as most zarr implementations will have poor performance with such small chunks. Ah, silly me. I'd forgotten...
A while ago I wrote code in my experiments package aria ( https://github.com/mike-lawrence/aria) that used netcdf (which is a subset of hdf5 fyi) to prep data stores for models (based...
FYI, I had issues with the RNetcdf package (hit some sort of bottleneck with very large models, leading to very slow file initialization), so have been looking at options for...
[furrr](https://github.com/DavisVaughan/furrr) supports progressr. Here's what I use: ```r #' Run a function on each element of a list in parallel #' #' This function runs a protopipe on each entry...
The nc-to-rvars conversion is done by the class_composition R6 class [here](https://github.com/mike-lawrence/aria/blob/main/aria/R/class_compositon.R), specifically the `nc_to_rvar` method [here](https://github.com/mike-lawrence/aria/blob/e38df3f20f3156157cd4b3f4a9782af77a8c1607/aria/R/class_compositon.R#L52)