-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdj-size.gplot
More file actions
32 lines (29 loc) · 956 Bytes
/
dj-size.gplot
File metadata and controls
32 lines (29 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#################################################
# Used to generate distribution of word-class sizes
#
set term postscript eps enhanced color 28
set out 'dj-size.eps'
# set term png
# set out 'dj-size.png'
set logscale y
set format y "10^{%4T}"
set xrange [0:10]
set title "Number of sections having N connectors"
set ylabel "Number of sections"
set xlabel "Number of connectors"
plot "dj-size.dat" using 1:2 with lines linewidth 5 title "", \
#################################################
# Used to generate distribution of word-class sizes
#
set term postscript eps enhanced color 28
set out 'dj-wsize.eps'
# set term png
# set out 'dj-size.png'
set logscale y
set format y "10^{%4T}"
set xrange [0:10]
set title "Observations of sections having N connectors"
set ylabel "Observations of sections"
set xlabel "Number of connectors"
plot "dj-size.dat" using 1:3 with lines linewidth 5 title "", \
#################################################