Tomas Fiers
Tomas Fiers
The copyright line can be hidden with ```yaml sphinx: config: html_show_copyright: false ``` Source: https://jupyterbook.org/en/stable/advanced/html.html#adding-a-license-to-your-html-footer Maybe this option could be a bit more discoverable.
I am wondering the same. Replacing some `Real`s by `Number`s, and `0`s by `zero(x)`s, already makes a surprising number of things work: ```julia > using Distributions > using Unitful: mV,...
`pdf` does have units, namely the reciprocal of the independent variable's. (As the pdf is a density, we have eg 0.24 probability mass per 1 mV, at some voltage). You...
A short alternative, for if you only care about retina'ing PyPlot Figures, and don't mind that matplotlib's `(figwidth, figheight)` is not the exact same as the actual png's: ```julia using...
Tested this on my windows laptop, it works well. Thanks @xzackli !
On second thought, this solution gives a problem when creating custom packages that depend on PyPlot, and that expect PyPlot's `__init__` to have been called in their own `__init__` --...
My current solution is calling a custom function `autodisplay_figs()` (see below) at the start of the notebook. You can call it manually; I call it in the `__init__` of a...
Suggested by @jwahlstrand in #629: having `ENV["GTK_AUTO_IDLE"] = false` before import fixes it for them and for me.
Can confirm this on Windows as well (exact same problem & workaround as described by @cems2). Previously installed extensions seemed to keep working though.
I gave this a go a while back: https://github.com/JuliaStats/Distributions.jl/compare/master...tfiers:Distributions.jl:master I implemented unit support for `Exponential` and `LogNormal`, and wrote [tests](https://github.com/tfiers/Distributions.jl/blob/3b9690/test/units.jl) and documentation. Changes done to make this work: - Replace...