Mike Lawrence

Results 63 issues of Mike Lawrence

Thank you for your work on this, it has enabled some of my work to accelerate where I needed to do some complex stats in an app and can now...

Excuse my general C naivete but would it be possible at all to have stan write it's csvs using `O_APPEND` mode whereby thw writer looks for the end of the...

I'm an unrepentant tabs-over-spaces guy, coming from RStudio and working to transition to VSCode+radian. I notice that in the radian console, all my tabs get converted to `^I`. It doesn't...

[This](https://stackoverflow.com/a/52458096/174902) SO answer provides code to determine if a package is pure-python or is a c-extension: ```python from importlib.machinery import ExtensionFileLoader, EXTENSION_SUFFIXES import inspect import logging import os import os.path...

*[edit: generalized for vectors by @bob-carpenter]* Add this signature for `to_matrix`: ```stan array[N_cols] vector[N_rows] arr_Vec ; matrix[N_rows,N_cols] mat_from_arr_Vec = to_matrix(arr_Vec) ;//proposed handling of new signature ``` and general signatures for...

feature
good first issue

Hi there, I'm on macOS 10.13.4, running python 3.6.5 installed via `brew install python`. I've tried installing billiard via pip (`pip3 install billiard`) as well as downloading the source and...

I've placed my png in /var/lib/AccountsService/users/mike/ and set permissions to 755 for both the png and dir, but I'm still getting the default user icon on the login screen. Any...

Attached is an archive demonstrating use of the visualization discussed at [this ggplot2-users thread](https://groups.google.com/forum/#!topic/ggplot2/ncPL698U81Q). Sorry I didn't formulate this as a pull request, but I don't have time at the...

feature
new plot

I'm playing with an R package that permits supplying the runtime args as a nested list, thereby making things flexible to future possible changes in what cmdstan accepts. To validate...

I was looking at what would be necessary to add parallelism to the computation of rstar, and thought this would work: ```r library(doMC) registerDoMC(4) rstar(x,uncertainty=T,trControl=caret::trainControl(allowParallel=T)) ``` But I see that...

feature