Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试确定是否可以在 Gadfly 图表上显示基础数据点。我知道我可以显示与特定点相关联的标签,但是如何在图表本身上显示实际值?
例如,从 Gadfly 文档中,假设我有这个图表:
plot(x=rand(10), y=rand(10))
如何在图表本身的 x 和 y 向量中显示结果值?
实际上,很容易得到一个字符串表示,例如string(3).
string(3)
以下情况如何:
using Gadfly N = 10 xx = rand(1:10, N) # N random integers between 1 and 10 yy = rand(1:10, N) labels = map(string, zip(x,y)) plot(x=xx, y=yy, label=labels, Geom.label, Geom.point)
这给出了如下内容:
一种方法是通过标签字符串向量将值输入到 Gadfly:
label_vec = ["4", "4", "7", "7", "9", "1", "8", "10", "11", "2"] plot(x=rand(10), y=rand(10), Labels = label_vec, Geom.label)
将 ints/floats 解析成字符串是一件很痛苦的事情,如果你可以将它们作为 ints/floats 直接输入到 Gadfly 那就太好了。
有没有人有更好的方法?