create views and use them to plot more than one pn on same graph
[zc] / gnuplot / offset.sql
1 drop table if exists axis_offset;
2 create table axis_offset (
3         pn integer primary key,
4         x float not null,
5         y float not null
6 );
7
8 copy axis_offset from '/home/dpavlin/zc/gnuplot/offset.txt' with ( format text, delimiter ' ' );