我的.csv文件组织如下:
'button'
我想在y轴上绘制(row1-row2)的差异,并将伪彩色0绘制为x轴。
到目前为止,我已经尝试了
$(document).on('ready', function () {
// functions
function appendButtons (numButtons) {
var $button,
i;
// create the buttons
for (i = 0; i < numButtons; i) {
$button = $('<button>Button' + ++i + '</button>')
.appendTo('.main-container');
}
// bind the clicks after the buttons creation
$('button').on('click', function () {
alert('Button\'s click listener');
});
}
// init
appendButtons(3);
});
抛出
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- HTML -->
<div class="main-container"></div>
另一方面
425;490
160;343
390;487
35;231
...
似乎有效但却抛出
plot "test.txt" using $0:($1-$2)
在控制台中。
所以我的问题: 什么是正确的语法?
答案 0 :(得分:1)
plot 'text.txt' using 0:($1-$2)
或
plot 'text.txt' using ($1-$2)