Alex Kyllo

Results 9 comments of Alex Kyllo

I needed to do this today (generate a P(Alive) for each customer for each date in the study period), and doing a `groupby` on customer then `apply`ing `calculate_alive_path` was too...

Thanks for looking into it. My NVIDIA driver version is 460.39. I am able to run other CUDA code on it. I didn't change any options, I just tried to...

I like this and think there's good precedent for `>>` as an R-style pipe operator in Python, as both [dplython](https://github.com/dodger487/dplython) and [siuba](https://github.com/machow/siuba) use it.

C++ learner here, I was just starting this exercise and trying to understand the use of `unique_ptr`. If `left` and `right` return a `unique_ptr` to a tree node, that means...

This happens when you call the constructor `MTCNN()` inside a loop (or within a function that you're repeatedly calling). If you move the call to the constructor outside of the...

Hi @v-a-s-a I am a data scientist at Microsoft and active user of some of the Azure-related R packages like {AzureStor}. I am interested in adopting {targets} in my workflow,...

> I am naive to Azure Storage, and I am wondering about a few specifics: > > * For blob storage (I assume that's what we'll use, unless file storage...

Arbitrary KQL operators can be used by surrounding with % E.g. `filter(Url %matches regex% "https://docs.microsoft.com/([^/]*)/cli/azure/")` gets translated correctly as `| where ['Url'] matches regex 'https://docs.microsoft.com/([^/]*)/cli/azure/'` The one that doesn't work...

There's a good workaround for this, you can express it using the Kusto syntax within a `mutate` expression ```r mutate(rn = row_number(1, prev(group) != group)) ``` gets translated to ```...