Skip to content

Commit

Permalink
Plot v2 and associated updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Symbolics committed Dec 29, 2023
1 parent ba48a8c commit 7b917e1
Show file tree
Hide file tree
Showing 11 changed files with 354 additions and 249 deletions.
2 changes: 1 addition & 1 deletion content/en/blog/news/first-post/index.md
Expand Up @@ -92,7 +92,7 @@ horsepower vs. miles-per-gallon of the similar Vega-Lite data set:
(plot:plot
(vega:defplot hp-mpg
`(:title "Horsepower vs. MPG"
:data ,vgcars
:data (:values ,vgcars)
:mark :point
:encoding (:x (:field :horsepower :type :quantitative)
:y (:field :miles-per-gallon :type :quantitative)))))
Expand Down
26 changes: 26 additions & 0 deletions content/en/blog/news/summary-2023.md
@@ -0,0 +1,26 @@
---
title: "2023 End of Year Summary"
linkTitle: "2023 Summary"
date: 2023-12-29
description: >
Year end wrap-up
---

We started the year by working through the [examples from the first chapter of the Introduction to the Practice of Statistics](https://github.com/Lisp-Stat/IPS9). Whilst this is an excellent test for Lisp-Stat, Chapter 2 presented some major challanges to the plotting system, so the highlight for this year is Plot 2.0. This is a breaking change, however the fix for plots is relatively simple.

The updates for 2023 include:

* [IPS Chapter 1](https://github.com/Lisp-Stat/IPS9/blob/master/notebooks/Part%20I/Chapter%201%20Looking%20at%20Data.ipynb) complete
* [IPS Chapter 2](https://github.com/Lisp-Stat/IPS9/blob/master/notebooks/Part%20I/Chapter%202%20Data%20Relationships.ipynb) plotting
* [Sampling](/docs/manuals/data-frame/#sampling) data frames
* Adopted [cl-gists](https://github.com/Symbolics/cl-gists) so we can work with the Vega eco-system on Github
* Added [Lisp Linear Algebra](https://github.com/Lisp-Stat/lla), CFFI wrappers for BLAS and LAPACK
* Improved tutorials, examples and documentation
* Plot 2.0
* [Smoothers](https://github.com/Lisp-Stat/smoothers) for non-parametric regression
* Plot helpers for qq-plots and scatterplots
* New data sources: named data sets, URLs, embedded
* Publish plots to Github gists
* [Edit plots in Vega Edit online editor](/docs/tutorials/plotting/#vega-edit)
* Fully support multi-layer, multi-data set plotting

2 changes: 1 addition & 1 deletion content/en/blog/releases/release-1.0.0/index.md
Expand Up @@ -44,7 +44,7 @@ create a scatter plot of horsepower vs. miles per gallon:
(plot:plot
(vega:defplot hp-mpg
`(:title "Horsepower vs. MPG"
:data ,vgcars
:data (:values ,vgcars)
:mark :point
:encoding (:x (:field vgcars:horsepower)
:y (:field vgcars:miles-per-gallon)))))
Expand Down

0 comments on commit 7b917e1

Please sign in to comment.