gnuplot2.scr
来自「这是Getting Started With Sqlite 的相关示例代码和帮助」· SCR 代码 · 共 17 行
SCR
17 行
# Run this as follows:## $ gnuplot gnuplot2.scr## This requires the file 'ibm.dat'#set terminal png # gnuplot recommends setting terminal before outputset output "graph2.png" # The output filename; to be set after settingset xdata time # The x axis data is timeset timefmt "%d-%b-%y" # The dates in the file look like 10-Jun-04set format x "%b %d" # On the x-axis, we want tics like Jun 10set bars 6plot ["31-May-04":"11-Jun-04"] 'ibm.dat' using 1:2:3:4:5 with financebars
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?