作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试更深入地研究 Gadfly.jl,以便在 Julia 中进行绘图。我在 map 上绘制了几个站点的图,显示了每日降水量总和,但我对颜色条的大小很不满意。我找不到在文档中操作颜色栏大小的方法。有谁知道如何做到这一点?
这是绘制的 map :
最佳答案
使用主题更改颜色栏的样式。
最简单的方法就是更改键标签和标题的字体大小(图像上的 RRsum)。例如。添加 Theme(key_label_font_size=12pt, key_title_font_size=12pt)
对您的情节调用的论据。
例如:
plot(
z=(x,y) -> x*exp(-(x-round(Int, x))^2-y^2),
x=range(-8,stop=8,length=150),
y=range(-2, stop=2,length=150),
Geom.contour,
Theme(key_label_font_size=10pt, key_title_font_size=10pt)
)
Smaller colorbar
plot(
z=(x,y) -> x*exp(-(x-round(Int, x))^2-y^2),
x=range(-8,stop=8,length=150),
y=range(-2, stop=2,length=150),
Geom.contour,
Theme(key_label_font_size=15pt, key_title_font_size=15pt)
)
Bigger colorbar
关于 Julia :颜色条的牛虻大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64388222/
我正在尝试根据时间绘制数据: userId = 2 dateGiven = Datetime.date(2014,2,3) biometric = "heart-rate" df = DataFram
我是一名优秀的程序员,十分优秀!