I expect this to work:  ```js Plot.areaY(data, {x: "date", reduce: "count", interval: "day"}).plot() ``` After all, it works for a line:  ```js Plot.lineY(data, {x: "date", reduce: "count", interval: "day"}).plot() ``` Instead it seems you have to set the **y** option to anything:  ```js Plot.areaY(data, {x: "date", y: true, reduce: "count", interval: "day"}).plot() ```