Skip to content

Commit 18b9cb7

Browse files
committed
nyc taxis
1 parent dc25196 commit 18b9cb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/getting-started/example-datasets/nyc-taxi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Notice there are columns for the pickup and dropoff dates, geo coordinates, fare
152152

153153
Let's run a few queries. This query shows us the top 10 neighborhoods that have the most frequent pickups:
154154

155-
```sql runnable settings={'enable_parallel_replicas':1}
155+
```sql runnable
156156
SELECT
157157
pickup_ntaname,
158158
count(*) AS count
@@ -164,7 +164,7 @@ LIMIT 10;
164164

165165
This query shows the average fare based on the number of passengers:
166166

167-
```sql runnable settings={'enable_parallel_replicas':1} view='chart' chart_config='eyJ0eXBlIjoiYmFyIiwiY29uZmlnIjp7InhheGlzIjoicGFzc2VuZ2VyX2NvdW50IiwieWF4aXMiOiJhdmcodG90YWxfYW1vdW50KSIsInRpdGxlIjoiQXZlcmFnZSBmYXJlIGJ5IHBhc3NlbmdlciBjb3VudCJ9fQ'
167+
```sql runnable view='chart' chart_config='eyJ0eXBlIjoiYmFyIiwiY29uZmlnIjp7InhheGlzIjoicGFzc2VuZ2VyX2NvdW50IiwieWF4aXMiOiJhdmcodG90YWxfYW1vdW50KSIsInRpdGxlIjoiQXZlcmFnZSBmYXJlIGJ5IHBhc3NlbmdlciBjb3VudCJ9fQ'
168168
SELECT
169169
passenger_count,
170170
avg(total_amount)

0 commit comments

Comments
 (0)