如何在 Gadfly spy 函数中使用 xticks

how to use xticks in Gadfly spy function

我正在使用 Gadfly 包中的间谍函数来绘制热图或值矩阵。

我想为每一列显示一个特定的字符串,但我找不到正确的语法

plt = Gadfly.spy(mtx, x= ["a","b","c","d"])  #suppose mtx has 4 columns

谢谢!

根据 original request

using Gadfly

parameters = ["ξ₁", "η₁",  "ξ₂", "η₂"]
spy(rand(4,4), Scale.y_discrete(labels = i->parameters[i]), Scale.x_discrete, 
    Guide.ylabel("Parameters"), Guide.xlabel("Mode"))