Tyler Benster

Results 50 issues of Tyler Benster

I would like to underline some text. From [Text documentation](https://giovineitalia.github.io/Compose.jl/v0.5/index.html#Text-1), this would seem possible: > More general formatting for the SVG backend is [documented here](https://www.w3.org/TR/SVG/text.html) which in turn describes the...

As part of trying to understand #420, I went to console: Click for full output ```julia help?> table ``` ```julia search: table mutable struct ismutable coeftable CoefTable iswritable isimmutable Patchable...

Introspec seems really neat, but the [current documentation](https://giovineitalia.github.io/Compose.jl/latest/tutorial/#Trees-can-be-visualized-with-introspect) isn't sufficient to understand the "why" of the tool, or how/when it is useful. Perhaps a few sentences explaining the "decoder ring"...

Thought it'd be useful to highlight that AoG plots are "just" Makie

```julia Xs = repeat(collect(1:100), 10) Ys = sin.(Xs) + randn(1000)*0.2 df = DataFrame(x=Xs, y=Ys) df = transform(groupby(df, ["x"]), "y" => mean, "y" => minimum, "y" => maximum) data(df) * mapping(:x,...

This is less an AOG issue than a general irk with grammar of graphics. Dealing with 2D data is a bit unwieldly. ```julia matrix = rand(100,100) matrix_df = DataFrame(matrix, string.(collect(1:size(matrix,2))))...

Frequently for papers, we need to report the fit of a line (slope/intercept) or other analysis. Right now, it's not clear how to access `lin_model` https://github.com/JuliaPlots/AlgebraOfGraphics.jl/blob/43490022019177245af28f4b935b9686d683d4c9/src/transformations/linear.jl#L17

I'm not sure how to do `x .> "Young" ` Is there a way to make `Young` a `CategoricalValue`? ``` julia> x = CategoricalArray(["Old", "Young", "Middle", "Young"], levels=["Young", "Middle", "Old"],...

Thanks for this package! Curious if there's a way to do `pip install -e .` or `python setup.py develop` or other method for installing a local python package? Thanks!

I may be missing something, but it doesn't seem like ThreadProc is doing anything..? ``` using Dagger import Dagger: @par function count_threads() n = Threads.nthreads() a = zeros(n) Threads.@threads for...