DAZL Script Examples
steps:
- loadInline:
data:
- {month: '2025-01', product_line: 'A', revenue: 12000}
- {month: '2025-01', product_line: 'B', revenue: 9000}
- {month: '2025-02', product_line: 'A', revenue: 15000}
# Product B missing in Feb
- {month: '2025-03', product_line: 'A', revenue: 13000}
- {month: '2025-03', product_line: 'B', revenue: 11000}
output: multiData
- chart:
dataset: multiData
type: line
x_axis: month
y_axis: revenue
series: product_line
title: "Revenue by Product Line with Missing Data"