Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions book/navigating_structured_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ Daphne
The next few examples will use the following table:

```nu
let data = [[date temps condition ];
[2022-02-01T14:30:00+05:00, [ 38.24, 38.50, 37.99, 37.98, 39.10 ], 'summy` ],
[2022-02-02T14:30:00+05:00, [ 35.24, 35.94, 34.91, 35.24, 36.65 ], 'sunny' ],
[2022-02-03T14:30:00+05:00, [ 35.17, 36.67, 34.42, 35.76, 36.52 ], 'cloudy' ],
[2022-02-04T14:30:00+05:00, [ 39.24, 40.94, 39.21, 38.99, 38.80 ], 'rain' ],
]
let data = [
[date temps condition ];
[2022-02-01T14:30:00+05:00, [38.24, 38.50, 37.99, 37.98, 39.10], 'sunny' ],
[2022-02-02T14:30:00+05:00, [35.24, 35.94, 34.91, 35.24, 36.65], 'sunny' ],
[2022-02-03T14:30:00+05:00, [35.17, 36.67, 34.42, 35.76, 36.52], 'cloudy' ],
[2022-02-04T14:30:00+05:00, [39.24, 40.94, 39.21, 38.99, 38.80], 'rain' ]
]
```

::: details Expand for a visual representation of this data
Expand Down
Loading