我有一个 incanter 时间序列图表,我似乎无法在正确的序列标签上生成它。我的数据如下所示:
__________________________
| :Time | :Count | :Name |
| 12344 | 0 | "A" |
| 12344 | 1 | "B" |
| 12344 | 2 | "C" |
| 12345 | 4 | "A" |
我尝试将系列标签设置为一小组字符串,但第一个系列的图表上只显示第一个值。我绘制图表的(不正确的示例)代码如下所示:
(view (time-series-plot :Time :Count
:x-label "Date"
:y-label "Points"
:title "My Cool Graph"
:legend true
:group-by :Name
:series-label "A" "B" "C"
:data data-to-graph
:points true
))
任何指针都非常感谢。