Mike Lawrence
                                            Mike Lawrence
                                        
                                    > The extra diagnostic files basically double the size of what you're writing to disk Yup, I know; I'm also capturing all info and writing to a proper compressed binary...
Wonder if we could model the step sizes with truncation to estimate the CDF and thereby % >= max? Anyone know if there's any theory on the expected distribution of...
I'm encountering this issue in Rstudio (v 2022.02.3 ). Here's my code: ```r library(DiagrammeR) ( create_graph() %>% add_node(label='L') %>% add_node(label='SIS') %>% add_node(label='fNIRS') %>% add_edge( from = 'L' , to =...
This is still broken. Anyone have any ideas?
Thanks! I for sure tried that and it didn't work when I did, but it works now. Must have been something else in my code preventing or overwriting it. Sorry...
Good call that the compute may be expected to get unweildy, so it should certainly be something that the user opts-in to rather than being on by default. I think...
> That also simplifies all the other code as the main change is that we do check stdout/stderr and wait for processes to finish. Hm, this part lost me; would...
Ok, gotcha. And we will be processing the stdout/stderr, just in a separate function that is called at-will by the user. Oh, wait! I was reading the processx docs the...
Oh, as an aside: using files for stdout/stderr should make it easier for users to enforce silent running. I've personally found it irksome how difficult it is to to eliminate...
Oh! just thought I'd note that I just encountered a "bug" in the released version of how we do things. I asked for a model to compile, then immediately made...