visualisation-utils 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -28,7 +28,7 @@ gnuplot as a backend.
28
28
 
29
29
 
30
30
  ~~~ .bash
31
- cat | scatter-plot <<'END'
31
+ scatter-plot -o scatter-plot.png <<'END'
32
32
  1 1
33
33
  2 4
34
34
  3 9
@@ -37,9 +37,9 @@ cat | scatter-plot <<'END'
37
37
  END
38
38
  ~~~
39
39
 
40
- This incantation will bring up the gnuplot gui with the following graph:
40
+ It will produce the following image:
41
41
 
42
- ![gui](https://raw.github.com/programmiersportgruppe/visualisation-utils/master/doc/gnuplot-gui.png)
42
+ ![gui](doc/scatter-plot.png)
43
43
 
44
44
  time-line
45
45
  =========
@@ -89,7 +89,7 @@ Prints a heat map visualising the distribution of
89
89
  geo coordinate samples.
90
90
 
91
91
  ~~~ .bash
92
- cat | heat-map <<'END'
92
+ heat-map -o heat-map.png <<'END'
93
93
  38.6,-90.5
94
94
  38.6,-90.5
95
95
  40.5,-74.3
@@ -104,7 +104,7 @@ END
104
104
 
105
105
  This will render to the following visualisation:
106
106
 
107
- ![map](https://raw.github.com/programmiersportgruppe/visualisation-utils/master/doc/heat-map.png)
107
+ ![map](doc/heat-map.png)
108
108
 
109
109
 
110
110
  TODO
data/bin/time-line CHANGED
@@ -75,7 +75,6 @@ set style line 12 lc rgb '#808080' lt 0 lw 1
75
75
  set grid back ls 12
76
76
 
77
77
  set yrange [0:#{values.length}]
78
- set lmargin 5
79
78
  set rmargin 5
80
79
 
81
80
  set ytics (#{coords.map{|pair| '"' + pair[0].gsub("_", " ") + '"' + " " + pair[1].to_s}.join(", ") })
data/doc/heat-map.png CHANGED
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module VisualisationUtils
2
- VERSION = "0.7.0"
2
+ VERSION = "0.8.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visualisation-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-29 00:00:00.000000000 Z
12
+ date: 2015-06-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: trollop
@@ -48,8 +48,8 @@ files:
48
48
  - bin/overlay
49
49
  - bin/scatter-plot
50
50
  - bin/time-line
51
- - doc/gnuplot-gui.png
52
51
  - doc/heat-map.png
52
+ - doc/scatter-plot.png
53
53
  - doc/time-line.png
54
54
  - lib/visualisation-utils.rb
55
55
  - lib/visualisation-utils/version.rb
data/doc/gnuplot-gui.png DELETED
Binary file