From 4d2c534bbf164b625d3127393fb629d0d51766aa Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 13 Aug 2024 22:49:52 -0500 Subject: [PATCH 1/3] simple makefile --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c32174c --- /dev/null +++ b/Makefile @@ -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 From fdf527ce4a4b70a3be38be04a324a832417f5742 Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 13 Aug 2024 22:50:12 -0500 Subject: [PATCH 2/3] bump compat entries for AoG and CairoMakie --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index da00f4f..5a824dd 100644 --- a/Project.toml +++ b/Project.toml @@ -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" From a09192503ccd28e5349d051a1fe79b0cd28f5908 Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Tue, 13 Aug 2024 23:18:28 -0500 Subject: [PATCH 3/3] code fix --- largescaledesigned.qmd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/largescaledesigned.qmd b/largescaledesigned.qmd index 296fd9d..cdb2bca 100644 --- a/largescaledesigned.qmd +++ b/largescaledesigned.qmd @@ -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)));