Daniel
Daniel
Using https://github.com/jupyterhub/jupyterhub-deploy-docker/tree/master/examples/jupyterlab as a template I added ``` export DOCKER_SPAWN_CMD="start-singleuser.sh --SingleUserNotebookApp.default_url=/lab" ``` to `.bashrc.` I thought one could simply set that here https://github.com/jupyterhub/jupyterhub-deploy-docker/blob/d2bed7a1ce5e2b140e0eea6c3781bbd7154268e7/.env#L30 but apparently not. Spawner fails completely! Maybe...
Thanks for your reply! Unfortunatelly this did not work for me. The docker volume gets created even earlier than that as far as I understand. I ended up changing the...
Thank you very much. I have another dataset that uses the ISO codes and I need to match them. I can share the matching table once I've created it if...
I think I am hitting a similar issue. Here the `colormap` is completely ignored: ``` dd = DataFrame(x = [rand(10)..., 10 .+ rand(10)...], c = [repeat('a', 10)..., repeat('b', 10)...]) plt...
You could do ``` x |> @filter(_.Age>2) |> @select(occursin("Full Name")) |> DataFrame ```
Alright sounds great. I think it would be best to let the estim_decoration function take coef and vcov instead of the p value. Then users can decide what they would...
So we basically just want the old behavior back, right? Or does this need more fixes?
Please let me know if I should change anything in the PR. :)
I tried to add a teset but for me the earlier testset "linear model with weights" errors already. I feel like it is related to the PR but I am...
@nalimilan you were of course correct. I fixed that and added tests (all test passing now). However, I made a mess with autoformatting in vscode. What would be the best...