Thanks. Hadn't noticed about
plot '-'
! I thought it takes only file names
Regards,
Mahmood
On Thursday, February 20, 2014 10:04 AM, sfeam <eam...@gm...> wrote:
On Wednesday, 19 February 2014 09:52:14 PM Mahmood Naderan wrote:
>
> Hi
> I want to draw a 1D plot with the following data points
> "name" "value"
> A1 2
> A2 10
>
> and something which looks like
>
>
>
> A1 A2
> ----+------------+-------
> 2 10
>
> All I see in the examples are 2D plots.
set term dumb
set border 0
set xzeroaxis
unset ytics
set xtics axis scale 0.1 offset 0,1
set xrange [0:12]
plot '-' using 2:(0):1 with labels offset 0,1
A1 2
A2 10
e
A1 A2
+...........+...........+............+...........+...........+...........+
0 2 4 6 8 10 12
>
> Any hint is greatly appreciated.
>
> Regards,
> Mahmood
|