@@ -7,7 +7,7 @@ sidebar_label: Schools Data
7
7
8
8
> This document provides a beginner's overview of the Zed language
9
9
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
11
11
and test scores.
12
12
13
13
## 1. Getting Started
@@ -16,9 +16,9 @@ If you want to follow along by running the examples, simply
16
16
[ install zq] ( ../install.md ) and copy the
17
17
data files used here into your working directory:
18
18
```
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
22
22
```
23
23
These files are all encoded in the human-readable [ ZSON format] ( ../formats/zson.md )
24
24
so you can easily have a look at them. ZSON is not optimized for speed but these
@@ -87,7 +87,7 @@ which emits
87
87
Nothing too tricky here. After a quick review of the shapes and types,
88
88
you will notice they are just three relatively simple tables, which is no surprise
89
89
since 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 ) .
91
91
92
92
## 3. Searching
93
93
0 commit comments