Robert Gregg

Results 6 issues of Robert Gregg

This is coming from a discussion I started on [discourse](https://discourse.julialang.org/t/flux-cpu-type-stability/76610/2). It looks like there is a type stability issue when using the `cpu()` function where the culprit seems to be...

[Cellular Potts Models](https://en.wikipedia.org/wiki/Cellular_Potts_model) are a type of grid-base ABM that are common when trying to modeling cellular behaviors (e.g. chemotaxis). What's interesting about them is that agents span multiple but...

discussion
discrete
grid

Hello, Love this package, really fixes some issues I have with `geom_jitter()`. I just wanted to point out a small issue I'm having with the groupOnX argument. When I remove...

This is in response to a discourse question: https://discourse.julialang.org/t/jumpproblem-hopping-constants-callback/86045?u=robertgregg Essentially, it would be nice to be able to modify `hopping_constants` in a callback to simulate a moving boundary separates two...

First off, interesting package! I think my issue is more with StrideArrays and LinearAlgebra not meshing well and Bumper is caught in the middle. The error I'm getting comes from...

```julia using GLM using DataFrames df1 = DataFrame(y = rand(10)) df2 = DataFrame(y = rand(10)) model = lm(@formula(y~1),df1) y = predict(model,df2) ``` Gives the following error: `ERROR: ArgumentError: collection must...