Skip to content

Commit 61a3f5d

Browse files
committed
sentence case
1 parent a42810a commit 61a3f5d

13 files changed

Lines changed: 33 additions & 33 deletions

File tree

doc/faq.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Frequently Asked Questions
2+
title: Frequently asked questions
33
---
44

5-
## Getting Started
5+
## Getting started
66

77
::: {.callout-note collapse="true"}
88
## What is ggsql?
@@ -34,7 +34,7 @@ ggsql is built in a modular way so we can gradually add new backends to it. Curr
3434
We have designed ggsql to be modular, both when it comes to the database input and the final rendering. For the first phase of the development we have chosen to use Vegalite as a renderer as it has allowed us to iterate quickly, but we do not envision Vegalite to remain the only, nor default writer in the future.
3535
:::
3636

37-
## Syntax & Usage
37+
## Syntax & usage
3838

3939
::: {.callout-note collapse="true"}
4040
## What's the difference between `VISUALISE` and `VISUALIZE`?

doc/gallery/examples/bar-chart.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Bar Chart"
2+
title: "Bar chart"
33
description: "Categorical comparisons using bars"
44
image: thumbnails/bar-chart.svg
55
categories: [basic, bar]
@@ -31,7 +31,7 @@ LABEL
3131

3232
## Variations
3333

34-
### Horizontal Bars
34+
### Horizontal bars
3535

3636
Use `PROJECT y, x TO cartesian` to flip the axes for horizontal bars:
3737

@@ -47,7 +47,7 @@ LABEL
4747
y => 'Count'
4848
```
4949

50-
### Auto-Count Bar Chart
50+
### Auto-count bar chart
5151

5252
When you don't specify a y aesthetic, ggsql automatically counts occurrences:
5353

doc/gallery/examples/faceted.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Faceted Plot"
2+
title: "Faceted plot"
33
description: "Small multiples showing data split by category"
44
image: thumbnails/faceted.svg
55
categories: [faceted, advanced]
@@ -29,7 +29,7 @@ LABEL
2929

3030
## Variations
3131

32-
### Grid Layout with Two Variables
32+
### Grid layout with two variables
3333

3434
Use `FACET rows BY cols` to create a grid layout:
3535

@@ -44,7 +44,7 @@ LABEL
4444
y => 'Bill Depth (mm)'
4545
```
4646

47-
### Free Scales
47+
### Free scales
4848

4949
Allow each facet to have independent axis scales with `SETTING free`:
5050

doc/gallery/examples/histogram.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ LABEL
2828

2929
## Variations
3030

31-
### Custom Bin Count
31+
### Custom bin count
3232

3333
Control the number of bins with `SETTING bins`:
3434

@@ -43,7 +43,7 @@ LABEL
4343
y => 'Count'
4444
```
4545

46-
### Custom Bin Width
46+
### Custom bin width
4747

4848
Set explicit bin width instead of count:
4949

@@ -58,7 +58,7 @@ LABEL
5858
y => 'Count'
5959
```
6060

61-
### Density Instead of Count
61+
### Density instead of count
6262

6363
Use `REMAPPING` to show density (proportion) instead of count:
6464

doc/gallery/examples/line-chart.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Line Chart"
2+
title: "Line chart"
33
description: "Time series visualization with proper date scaling"
44
image: thumbnails/line-chart.svg
55
categories: [basic, line, time-series]
@@ -31,7 +31,7 @@ LABEL
3131

3232
## Variations
3333

34-
### Multiple Lines by Category
34+
### Multiple lines by category
3535

3636
```{ggsql}
3737
SELECT Date, Temp, Month FROM ggsql:airquality

doc/gallery/examples/multi-layer.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Multi-Layer Plot"
2+
title: "Multi-layer plot"
33
description: "Combining multiple geometric layers in one visualization"
44
image: thumbnails/multi-layer.svg
55
categories: [layers, advanced]
@@ -33,7 +33,7 @@ LABEL
3333

3434
## Variations
3535

36-
### Different Aesthetics Per Layer
36+
### Different aesthetics per layer
3737

3838
Each layer can have its own aesthetic mappings using `MAPPING`:
3939

@@ -51,7 +51,7 @@ LABEL
5151
y => 'Value'
5252
```
5353

54-
### Layers from Different Data Sources
54+
### Layers from different data sources
5555

5656
Use `MAPPING ... FROM` to pull each layer from different CTEs:
5757

doc/gallery/examples/scatterplot.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Scatter Plot"
2+
title: "Scatter plot"
33
description: "Basic scatter plot mapping two numeric variables to position"
44
image: thumbnails/scatterplot.svg
55
categories: [basic, point]
@@ -28,7 +28,7 @@ LABEL
2828

2929
## Variations
3030

31-
### With Color by Species
31+
### With color by species
3232

3333
```{ggsql}
3434
VISUALISE bill_len AS x, bill_dep AS y, species AS color FROM ggsql:penguins

doc/gallery/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Example Gallery
2+
title: Example gallery
33
listing:
44
contents: examples
55
type: grid

doc/index.qmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ include-in-header:
2727
ggsql brings the elegance of the [Grammar of Graphics](get_started/grammar.qmd) to SQL. Write familiar queries, add visualization clauses, and see your data transform into beautiful, composable charts — no context switching, no separate tools, just SQL with superpowers.
2828

2929
::: {.hero-buttons}
30-
[Get Started](get_started/installation.qmd){.btn .btn-primary .btn-lg}
31-
[View Examples](gallery/index.qmd){.btn .btn-outline-primary .btn-lg}
30+
[Get started](get_started/installation.qmd){.btn .btn-primary .btn-lg}
31+
[View examples](gallery/index.qmd){.btn .btn-outline-primary .btn-lg}
3232
:::
3333
:::
3434

@@ -185,7 +185,7 @@ uv tool install ggsql
185185
::: {.features}
186186

187187
::: {.feature}
188-
### Familiar Syntax
188+
### Familiar syntax
189189

190190
Write standard SQL queries and seamlessly extend them with visualization clauses. Your existing SQL knowledge transfers directly.
191191

@@ -199,7 +199,7 @@ DRAW line
199199
:::
200200

201201
::: {.feature}
202-
### Grammar of Graphics
202+
### Grammar of graphics
203203

204204
Compose visualizations from independent layers, scales, and coordinates. Mix and match components for powerful custom visuals. The [grammar of graphics](get_started/grammar.qmd) provides you with a single mental model for every type of plot.
205205

@@ -213,7 +213,7 @@ FACET region
213213
:::
214214

215215
::: {.feature}
216-
### Built for Humans _and_ AI
216+
### Built for humans _and_ AI
217217

218218
The structured syntax makes it easy for AI agents to write, and for you to read, adjust, and verify.
219219

doc/syntax/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Syntax"
33
---
44

5-
## Main Clauses
5+
## Main clauses
66
ggsql augments the standard SQL syntax with a number of new clauses to describe a visualisation. Apart from `VISUALISE` needing to be the first, the order of these clauses is arbitrary, though grouping e.g. all `DRAW` clauses will lead to queries that are easier to reason about:
77

88
- [`VISUALISE`](clause/visualise.qmd) initiates the visualisation part of the query

0 commit comments

Comments
 (0)