@@ -7,7 +7,7 @@ sidebar_label: Schools Data
77
88> This document provides a beginner's overview of the Zed language
99 using the [ zq command] ( ../commands/zq.md ) and
10- [ real-world data] ( https://github.com/brimdata/zed/blob/main /testdata/edu/README.md ) relating to California schools
10+ [ real-world data] ( https://github.com/brimdata/zed/blob/v1.18.0 /testdata/edu/README.md ) relating to California schools
1111and test scores.
1212
1313## 1. Getting Started
@@ -16,9 +16,9 @@ If you want to follow along by running the examples, simply
1616[ install zq] ( ../install.md ) and copy the
1717data files used here into your working directory:
1818```
19- curl https://raw.githubusercontent.com/brimdata/zed/main /testdata/edu/schools.zson > schools.zson
20- curl https://raw.githubusercontent.com/brimdata/zed/main /testdata/edu/testscores.zson > testscores.zson
21- curl https://raw.githubusercontent.com/brimdata/zed/main /testdata/edu/webaddrs.zson > webaddrs.zson
19+ curl https://raw.githubusercontent.com/brimdata/zed/v1.18.0 /testdata/edu/schools.zson > schools.zson
20+ curl https://raw.githubusercontent.com/brimdata/zed/v1.18.0 /testdata/edu/testscores.zson > testscores.zson
21+ curl https://raw.githubusercontent.com/brimdata/zed/v1.18.0 /testdata/edu/webaddrs.zson > webaddrs.zson
2222```
2323These files are all encoded in the human-readable [ ZSON format] ( ../formats/zson.md )
2424so you can easily have a look at them. ZSON is not optimized for speed but these
@@ -87,7 +87,7 @@ which emits
8787Nothing too tricky here. After a quick review of the shapes and types,
8888you will notice they are just three relatively simple tables, which is no surprise
8989since we obtained the original data from
90- [ SQLite database files] ( https://github.com/brimdata/zed/blob/main /testdata/edu/README.md ) .
90+ [ SQLite database files] ( https://github.com/brimdata/zed/blob/v1.18.0 /testdata/edu/README.md ) .
9191
9292## 3. Searching
9393
0 commit comments