Fabian Greimel
Fabian Greimel
I adapted Fons' `generate.jl` notebook to handle plain markdown pages (via Franklin.jl). It works fine to deploy to github pages https://greimel.github.io/18S191-reduced/ - but the preview within the notebook doesn't work...
@delphinH @likanzhan The code in https://github.com/greimel/18S191-reduced should work fine. Instructions 1. Put your notebooks in the `notebooks/` folder 2. update `newwebsite/book_model_small.json` 3. Put any pure md files in `website/` 4....
I don't think that this would make a difference, since the manifest has been added to the repo. Probably there are Pkg server issues?
I turned this PR into a [template repository](https://github.com/greimel/pluto-course-template) (see the [website this template generates](https://greimel.github.io/pluto-course-template)) Instructions (see also the README in the template repo) 1. Put your notebooks in the `notebooks/`...
Though this case x-axes should link by column, shouldn't they? But you are right that more customisability is better.
`linefill()` does that http://juliaplots.org/AlgebraOfGraphics.jl/stable/API/recipes/#AlgebraOfGraphics.linesfill Unfortunately it is not covered in the docs yet.
Can you add some fake data to make your example runnable? Then it will be easier to help.
@Nosferican, @kir0ul here's how you would do it with AoG: ```julia using AlgebraOfGraphics, CairoMakie using DataFrames: DataFrame using Chain: @chain using DataFrameMacros: @transform df = @chain begin DataFrame(x = [0:5;...
That would be `visual(Band)`.
I wanted to implement this at some point but I didn't finish. I've just put the code into a draft PR https://github.com/greimel/AoGExtensions.jl/pull/16 so that you have a look. Here's an...