Alexey Shiklomanov
Alexey Shiklomanov
Actually, I guess the executable is a change in the XML, and I already changed that to a model ID, which correctly points to the ED git revision executable.
Closed by #1619
I'm also interested in this feature, as I would like to use this library to diagnose a nasty and difficult-to-reproduce hang. > Hm, I could order top by "last executed...
For what it's worth, `dplyr` functions seem to preserve attributes. Using a custom `iris_test.csvy` file with this header: ```r #--- #class: data.frame #fields: #- name: Sepal.Length # class: numeric #...
Also, subsetting `tbl_df` using `[` and `[[` seems to preserve attributes _unless you're selecting rows_. ```r str(z[, 1]) # Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 150 obs. of 1 variable: #...
Sorry, one more: Further subsetting of the vectors will drop the attributes: ```r str(z[[1]]) # atomic [1:150] 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ... # -...
@billdenney For your use case (which I frequently see as well), perhaps you could have a look at a new package I've started developing -- [`metar`](https://github.com/ashiklom/metar) -- which tries to...
Not in C, but a first pass at this might look something like this. It uses the fact that if `con
How would you feel about using [`future`](https://github.com/HenrikBengtsson/future) for parallelization? That will allow the user to control exactly which parallelization backend they would like to use (via environment variables or the...
Yeah, I think metadata would definitely be part of this! I was actually envisioning an R object that combines a Hector core (which, AFAICT, is some kind of pointer?) with...