x = 0.1*(1..100)
y = 0.1*(100..1)
t = table(x,y)
plot(t)
这是我编写的代码,但函数plot
失败了,无法在DolphinDB GUI中显示。在数据浏览器中只返回一个表。怎么改正呢?
发布于 2022-03-21 20:13:31
函数chartType的默认plot
是"LINE“。
必须将附加部分:{multiYAxes:}设置为true以支持多个Y轴.修正后的代码是
x = 0.1*(1..100)
y = 0.1*(100..1)
t = table(x,y)
plot(t, extras={multiYAxes: true} )
https://stackoverflow.com/questions/71510114
复制相似问题