Skip to content

Commit 5ebdf38

Browse files
committed
fix typo; update date
1 parent b232fbe commit 5ebdf38

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ The user can control the following aspects by adding the respective parameter to
4444
- `fontsize`: int, Control the font size of the labels (default: 16) .
4545
- `grid`: bool, Draw a grid in the background if TRUE (=1) (default: FALSE)
4646
- `height`: scalar, Height of the canvas plot (default: 600).
47+
- `title`: string: set an overall title for the plot(s).
4748
- `key`: bool, If the `factor` series is provided, a legend shows the color and point pattern for each distinct value of the `factor` variable. Default: 1 (TRUE).
4849
- `key_fontsize` int, Control the font size for the key. Default: 14
4950
- `key_position`: string, Controls the position of the legend in each subplot (use standard gnuplot options). default: "top left".
@@ -65,8 +66,16 @@ The user can control the following aspects by adding the respective parameter to
6566
- `use_circles`: bool, Draw circles instead of points if set to 1 (TRUE), default: 0 (FALSE).
6667
- `width`: scalar, Width of the canvas plot (default: 900).
6768

69+
6870
# Changelog
6971

72+
* **v0.99 (Jule 2024)**
73+
* Add new parameter `title` for setting an overall title
74+
* Internal refactoring: Switch to gretl's built-in gridplot aparatus which means that all the graphics file formats supported by gretl can be used.
75+
* It also means that usage via gretlcli in "display" mode works.
76+
* In case the user's specification calls for just a single plot, no "multiplot" is created.
77+
* The graphical interface is enhanced, with more options.
78+
7079
* **v0.98 (April 2024)**
7180
* Make width, height, fontsizes and pointsize a function of the number of variables for better readability in case of many variables.
7281
* Set parameter `transparency per default to 90.

src/PairPlot.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
author = Artur Tarassow and Allin Cottrell
22
email = atecon@posteo.de
33
version = 0.99
4-
date = 2024-06-10
4+
date = 2024-07-03
55
description = Scatterplot matrix with factor separation
66
tags = C88
77
min-version = 2024a

src/PairPlot_help.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ The user can control the following aspects by adding the respective parameter to
6969

7070
# Changelog
7171

72-
* **v0.99 (June 2024)**
73-
* Add new parameter `title` for setting an oveall title
72+
* **v0.99 (Jule 2024)**
73+
* Add new parameter `title` for setting an overall title
7474
* Internal refactoring: Switch to gretl's built-in gridplot aparatus which means that all the graphics file formats supported by gretl can be used.
7575
* It also means that usage via gretlcli in "display" mode works.
7676
* In case the user's specification calls for just a single plot, no "multiplot" is created.

src/PairPlot_sample.inp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set verbose off
33

44
include PairPlot.gfn
55

6-
scalar SAMPLE = # Select an example, 1 to 6
6+
scalar SAMPLE = 1 # Select an example, 1 to 6
77

88
if SAMPLE == 1 # simple plot of the iris data
99
open iris.gdt --frompkg=PairPlot --quiet

0 commit comments

Comments
 (0)