Skip to content

Commit

Permalink
bump compat entries for AoG and CairoMakie (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
palday authored Aug 14, 2024
1 parent 05a171b commit 93886a0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.PHONY: default clean cleanup publish render

default: render

cleanup:
rm -rf site_libs/

clean: cleanup
rm -rf .quarto/_freeze
rm -rf _freeze/

publish:
quarto publish gh-pages

render:
quarto render

preview:
quarto preview
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ TypedTables = "9d95f2ec-7b3d-5a63-8d20-e2491e220bb9"
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea"

[compat]
AlgebraOfGraphics = "0.6"
AlgebraOfGraphics = "0.6, 0.7, 0.8"
Arrow = "2"
CSV = "0.10"
CairoMakie = "0.11"
CairoMakie = "0.11, 0.12"
CategoricalArrays = "0.10"
Chain = "0.5,0.6"
DataAPI = "1"
Expand Down
6 changes: 2 additions & 4 deletions largescaledesigned.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,8 @@ let
plt *= mapping(
:wrdlen => "Word length",
:rt => (x -> 1000 / x) => "Speed of response (s⁻¹)",
color=:isword,
side=:isword,
)
plt *= (visual(Violin) + linear(; interval=:confidence))
color=:isword)
plt *= (mapping(; side=:isword) * visual(Violin) + linear(; interval=:confidence))
draw(
plt,
axis=(; limits=(nothing, (0.0, 2.8)));
Expand Down

0 comments on commit 93886a0

Please sign in to comment.