Gregor de Cillia

Results 14 comments of Gregor de Cillia

Have you tried increasing the `delay` parameter in `webshot::webshot()`? Sometimes, the images produced by `webshot` are blank because the startup animation is not finished when the snapshot is taken.

You can use `jsonlite::fromJSON(content, simplifyVector = FALSE)` to disable all simplifications. Those simplifications include the automatic conversion of certain nested vectors to arrays/dataframes. See also the parameters `simplifyMatrix` and `simlifyDataFrame`...

I would prefer a syntax without quotes for example ```r form = list( log(NonD) ~ log(BodyWgt) + log(BrainWgt) + I(Sleep^2), Dream ~ BodyWgt + BrainWgt:Danger, log(Sleep) ~ BrainWgt * Danger...

I second that feature. This would also make it possible to auto-generate tooltips as suggested in https://github.com/r-lib/downlit/issues/18 by using fairly straightforward post processing of the generated articles. read autolink tibble...

If anyone wants to implement a variable step adams-bashforth-moulton stepper in odeint, here is some mathematical bakground: http://www.aip.de/groups/soe/local/numres/bookcpdf/c16-7.pdf. An implementation of a controlled 4th order adams-moulton method and a controlled...

Just a technical note. Depricating the low-level functions (irmi, rangerImpute and regressionImpute) is not really necessary. We could just use the new high-level `vimpute()` in the docs as the "recommended...

Not sure if introducing braking changes is worth it although I totally agree that the dataset as the first argument makes more sense especially for usage with the native pipe...

Screenshot: SDMX downloads are available for unregistered users on the external STATcube instance ![image](https://user-images.githubusercontent.com/9311130/187090864-7eb3e0a0-def8-4255-84e1-60d1d8f280e4.png)

This table should cover all possible annotations from `STATcube` |Anmerkungscode |Text deutsch |Text englisch | |:--------------|:--------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------| |A |Verkreuzung nicht erlaubt |Crosstabulation not allowed | |C |Verbinden nicht erlaubt |Merge not...

I just got notice that this issue is of importance when it comes to the html tables that are generated for our new website. The generated tables should be able...