jtrakk
jtrakk
As I said in the [corresponding issue](https://github.com/JuliaPlots/Makie.jl/issues/963) on Makie, I really want to handle missingness explicitly myself. I don't want tools to ignore missings without my intentionally requesting it. In...
> AoG should basically just copy what StatsModels is doing ```jl julia> lm(@formula(y ~ x), DataFrame(x=[1,2,3,4], y=[11, 25, 30, missing])) StatsModels.TableRegressionModel{LinearModel{GLM.LmResp{Array{Float64,1}},GLM.DensePredChol{Float64,LinearAlgebra.CholeskyPivoted{Float64,Array{Float64,2}}}},Array{Float64,2}} y ~ 1 + x Coefficients: ──────────────────────────────────────────────────────────────────── Coef. Std....
This can also affect facet order and barplot bar order.
I like "mean(val)" better than "val_mean".
Hierarchical facets would be really useful for visualizing data with multiple discrete groupings. What do you think - any chance of this in AoG?
> I asked because distill is designed for scientific document, and it offers a very flexible figure layout. See https://rstudio.github.io/distill/figures.html where you'll find way to spread a figure on the...
If you do add `async`/`await` support, I hope it'd be for the general `async`/`await` API, so it can support structured concurrency libraries like [Trio](https://trio.readthedocs.io) instead of only the `asyncio` library....
> Which of the other operators are not supported? ~, +, and & should all more or less work at run time. If they don't then that's a bug but...
To give an example, this form works in Python but not Julia. I don't succeed with `fmt` either. Python: ```py In [2]: "{:,}".format(123456) Out[2]: '123,456' ``` Julia: ```jl julia> printfmt("{:,}",...
I was thinking something like `Circle(5)` for a circle with radius 5. In fact, a circle doesn't need a radius either.