Spencer Lyon

Results 302 comments of Spencer Lyon

@oyamad interesting proposal. I would really like to be able to preserve the sparsity of the chain when simulating. I've done a bit more work with SparseMatrices.jl that I don't...

Ahh that’s no good. I’ll see if I can fix that up soon

Looks like you forgot to specify the type of basis matrix representation. Try `BasisMatrix(basis, Direct())` after running the code you provided

Yes, I think we still need to clean up that notebook.

This was very helpful, thank you for summarizing here. From the very last statement, it sounds like in Julia we need to order `Q(s', a, s)` and in python we...

Also need: - [x] New line at the end of a file - [ ] Decision regarding where `import` and `using` statements go. - [ ] Decision regarding use of...

Chase doesn't like ``` julia foo(x, y) = this_is_too_long_to_fit_on_one_line(bar, baz, bing, bog, boop) ``` He prefers ``` julia function foo(x, y) this_is_too_long_to_fit_on_one_line(bar, baz, bing, bog, boop) end ```

Thanks for reminding me about this. I think my guidelines will be pretty similar to John's. I've got about 1/3-1/2 of it written up [here](https://github.com/QuantEcon/QuantEcon.jl/blob/sl/styleguide/docs/style_guide.md)

Great suggestions. That's my preferred approach also.

Hi @Sean1708, yes @quinnj and I chatted a bit about this. I honestly am not familiar with postgres' window functions, but from the quick look at the docs it seems...