Skip to content

Commit af5514d

Browse files
committed
Merge branch 'centos'
2 parents 3a8b8d9 + 8e8b750 commit af5514d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A simple interface from [Elixir data][7] to the [Gnuplot graphing utility][1] th
44

55
Please visit the [Gnuplot demos gallery](http://gnuplot.sourceforge.net/demo/) to see all the possibilities, the [manual which describes the grammar](http://www.gnuplot.info/docs_5.2/Gnuplot_5.2.pdf), and the [examples folder](examples/).
66

7-
This is a conversion of the [Clojure Gnuplot library][4] by [aphyr][2]. This library can also be [called from Erlang](docs/erlang.md) and has been tested on OS X and Ubuntu 16.04.
7+
This is a conversion of the [Clojure Gnuplot library][4] by [aphyr][2]. This library can also be [called from Erlang](docs/erlang.md) and has been tested on OS X, Ubuntu 16.04 and CentOS 7.6.
88

99
[![Build Status](https://travis-ci.org/devstopfix/gnuplot-elixir.svg?branch=master)](https://travis-ci.org/devstopfix/gnuplot-elixir)
1010

@@ -141,8 +141,8 @@ ubuntu_stream = [0.002, 0.001, 0.001, 0.009, 0.204, 1.279, 12.858]
141141
datasets = for ds <- [clojure_gui, elixir_gui, elixir_png, ubuntu_t2m, ubuntu_stream], do: Enum.zip (points, ds)
142142

143143
G.plot([
144-
[:set, :title, "Render scatter plot"],
145-
[:set, :xlabel, "Points"],
144+
[:set, :title, "Time to render scatter plots"],
145+
[:set, :xlabel, "Points in plot"],
146146
[:set, :ylabel, "Elapsed (s)"],
147147
~w(set key left top)a,
148148
~w(set logscale xy)a,

docs/perf.PNG

829 Bytes
Loading

examples/perf.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ defmodule Perf do
77

88
def target,
99
do: [
10-
[:set, :term, :png, :size, '512,512', :font, "/Library/Fonts/FiraCode-Medium.ttf", 12],
10+
[:set, :term, :png, :size, '640,512', :font, "/Library/Fonts/FiraCode-Medium.ttf", 12],
1111
[:set, :output, png()]
1212
]
1313

1414
def commands,
1515
do: [
16-
[:set, :title, "Render scatter plot"],
17-
[:set, :xlabel, "Points"],
16+
[:set, :title, "Time to render scatter plots"],
17+
[:set, :xlabel, "Points in plot"],
1818
[:set, :ylabel, "Elapsed (s)"],
1919
~w(set key left top)a,
2020
~w(set logscale xy)a,

0 commit comments

Comments
 (0)