Andrew Johnson

Results 456 comments of Andrew Johnson

That particular change was for adding the control limit values at each split/re-baseline (more context in #370). If you want to add a custom label to a particular point, you...

Thanks for the report! Only certified PowerBI visuals support exporting to PDF/PowerPoint, so the development version of the visual (with the summary table) cannot be exported. I'm submitting the next...

You can use the conditional formatting inputs for this, you can see some [guides here](https://aus-doh-safety-and-quality.github.io/PowerBI-SPC/SummaryTable.html#conditional-formatting)

This is available in the development version of the visual, with the `Line Settings` menu for each line type including options for showing and formatting the values on the chart:...

Apologies for coming to this late, and this might be me misunderstanding the PR, but don't we already have a [vectorised binary version of `log_sum_exp`](https://github.com/stan-dev/math/blob/42d94c4840f681806ae0e0134120a4077a29e46c/stan/math/prim/fun/log_sum_exp.hpp#L106)? ![image](https://github.com/user-attachments/assets/3a63e1a0-72fc-46d1-874a-f05becfee440)

> @andrjohns the existing function returns a scalar, the feature request was for something that worked element wise and returned a container Isn't that what the vectorised binary version is...

I checked the current exposed signatures for `log_sum_exp` and the elementwise container returns are already present: ``` andrew@Andrews-MacBook-Air bin % ./stanc --dump-stan-math-signatures | grep log_sum_exp log_sum_exp(int, int) => real log_sum_exp(int,...

> The log_add_exp is more of an apply type operation. The signatures you posted above get most of the way there but I'd also want to include array of vectors/matrices....

Just confirmed that the highlighting is correct when treating the file as C++, the above issue only occurs when treating as C

> What I had before doesn't fix it but this does. We can stay on the log scale or we can internally log alpha and beta and calculate the log...