- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
你能帮帮我吗?我想将一种线型更改为点线。我使用这些命令:
gnuplot> set terminal png size 750,210 nocrop butt font "/usr/share/fonts/truetype/ttf-liberation/LiberationSans-Regular.ttf" 8
gnuplot> set output "/root/data.png"
gnuplot> set xdata time
gnuplot> set timefmt "%Y-%m-%d"
gnuplot> set format x "%b %d"
gnuplot> set ylabel "item1"
gnuplot> set y2label "item2"
gnuplot> set y2tics
gnuplot> set datafile separator "|"
gnuplot> plot "/root/results.txt" using 1:2 title "item1" w lines lt 4, "/root/results.txt" using 1:3 title "item2" with lines
但我总是只得到品红色的颜色线。我使用了版本 4.6 补丁级别 0。感谢您的回复。
最佳答案
有几种方法可以使用set
命令更改线条颜色:
定义线条样式:
set style line 1 linetype 1 linecolor 7
set style line 2 linetype 1 linecolor rgb "#dd7700"
plot x linestyle 1, x**2 linestyle 2
您必须明确指定使用的线型。
如果未指定任何内容,请选择并增加 style 行而不是 type 行:
set style line 1 linetype 1 linecolor 7
set style line 2 linetype 1 linecolor rgb "#dd7700"
set style increment user
plot x, x**2
重新定义默认行type(4.6.0版本引入):
set linetype 1 linecolor 7
set linetype 2 linetype 1 linecolor rgb "magenta"
plot x, x**2
请注意,与线型不同,set linetype
的重新定义是持久的;它们不受 reset
的影响。要重置它们,您必须使用 set linetype 1 default
。
所以一个最小的绘图脚本看起来像:
reset
set terminal pngcairo dashed monochrome
set output "/root/data.png"
set xdata time
set timefmt "%Y-%m-%d"
set format x "%b %d"
set datafile separator "|"
set style data lines
plot "/root/results.txt" using 1:2 linetype 1, "" using 1:3 linetype 3
关于linux - gnuplot 线型不想改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21305572/
我是 ggplot 的新手,所以请耐心等待。我正在绘制 35 个小区域地理的增长预测,即使使用了很棒的 directlabels 对于一个地块来说,这是一个不健康的数量。图书馆。但是我需要所有系列进行
在我下面的图表中,我希望图例反射(reflect)实际的线型,即“距离”的蓝线也应该在图例中用虚线表示。我如何实现这一目标? 在我的代码下面。谢谢! data <- structure(list(Ye
我有一个使用 step-before 插值的折线图(尽管如果使用 step-after,同样的问题也适用)。我希望垂直线段的颜色比水平线段的颜色浅。我怎样才能做到这一点? 最佳答案 单一路径必须是单一
我正在使用 React 和 Google Charts,我刚刚发现一个我找不到解决方案的问题。 我有这个组件 这里是数据和选项的值: const data = [ ["Year",
我是一名优秀的程序员,十分优秀!