Roel Verbelen

Results 5 comments of Roel Verbelen

I am faced with a similar error issue that only occurs on shinyapps.io, but not locally. ``` Error in value[[3L]](cond) : wstring_convert::to_bytes ``` I am using a Postgres (version 11.11)...

Have you added the *Start in* directory to your system `PATH`? I believe should solve your issue. See the detailed instructions [here](https://github.com/plotly/orca/#installation) under Windows. It includes a [link](https://www.computerhope.com/issues/ch000549.htm) to tutorial...

You can use the `rpart.predict.leaves()` function from the `treeClust` package. See the documentation [here](https://www.rdocumentation.org/packages/treeClust/versions/1.1-7/topics/rpart.predict.leaves).

Thanks @josef-pkt for pointing that out. Unfortunately, that doesn't seem to work for the example above: ``` result.summary() # works result.save('test_model.pickle', remove_data=True) new_result = sm.load('test_model.pickle') new_result.summary() # fails ``` Same...

Hi @josef-pkt My motivation for using `.summary()` after `.remove_data()` is that I'm setting up modelling pipelines where I build (many) GLMs in a python script, save the GLMs and then...