Tyler Smith

Results 26 comments of Tyler Smith

I was unable to reproduce this error, and it looks like everything worked as expected for me.

I probably should have checked here first, but i have produced wrapped versions of the purrr iterators which produce progress bars using the `progress` package. You can find my very...

`drop_na` is not exactly as stated. It doesn't work correctly with list columns. ``` r library(dplyr) library(tidyr) tibble(a = list(NA)) %>% drop_na() #> # A tibble: 1 x 1 #>...

I am okay with that interpretation, but I feel like it misses the point. Could the documentation be altered to make clear that distinction and behavior? The description of `drop_na`...

@siegfried the weights are encoded in xgboosts DMatrix object. If you `debug(xgboost::xgb.train)` you can run your `fit` code and then `getinfo(data, "weight")` and get the following output: ``` Browse[2]> getinfo(data,...

In general this would seem difficult/impossible to work fully generally. Plots can be built up over multiple statements and multiple chunks of code. You can take the plot object itself...

Referencing an earlier comment from @Secrus: https://github.com/python-poetry/poetry/issues/7878#issuecomment-1535496388. > ...My guess would be that you have Poetry installed in the same environment as your project, which is discouraged and prone to...

@svaningelgem I observed the same issue while trying to use a `ThreadedMotoServer`. Instead, you can get this to work if you launch `moto_server` as a subprocess. I am currently using...

Sure...you could just have the body be `c(b = 2)`. I'm not sure that it is more or less contrived though.