<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://gretlwiki.econ.univpm.it/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SvenS</id>
	<title>GretlWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://gretlwiki.econ.univpm.it/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SvenS"/>
	<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php/Special:Contributions/SvenS"/>
	<updated>2026-04-04T01:56:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=122</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=122"/>
		<updated>2025-02-05T16:32:03Z</updated>

		<summary type="html">&lt;p&gt;SvenS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in gretl 2024b ===&lt;br /&gt;
&lt;br /&gt;
==== gridplot title ====&lt;br /&gt;
You can add a title to a gridplot now.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open bikesharing&lt;br /&gt;
gpbuild bikers&lt;br /&gt;
    gnuplot temp --time-series&lt;br /&gt;
    gnuplot casual --time-series&lt;br /&gt;
end gpbuild&lt;br /&gt;
&lt;br /&gt;
gridplot bikers --title=&amp;quot;Cool bikers&amp;quot; --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Dynamic scaling of fonts in many gretl windows ====&lt;br /&gt;
 &lt;br /&gt;
You can enlarge or shrink the font size very much like in a web browser, for example using ctrl_+ or ctrl_- keys.&lt;br /&gt;
&lt;br /&gt;
==== Gamma distribution in distribution plotting tools ====&lt;br /&gt;
&lt;br /&gt;
The distribution plotting tool (under the Tools menu) now also supports the Gamma distribution.&lt;br /&gt;
&lt;br /&gt;
==== Panel dataset subsampling ====&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subsampling a panel dataset with the graphical dialogs, telling gretl to maintain the panel structure is now easier.&lt;br /&gt;
&lt;br /&gt;
=== New in gretl 2024a ===&lt;br /&gt;
(as always, just a selection)&lt;br /&gt;
&lt;br /&gt;
==== more flexible &#039;&#039;info&#039;&#039; command ====&lt;br /&gt;
&lt;br /&gt;
Not a huge new feature, but the &#039;&#039;info&#039;&#039; command now offers a scripting way to editing the meta data of a dataset. The GUI analog (which has always been possible) is to go to Data / Dataset info.&lt;br /&gt;
&lt;br /&gt;
The relevant new options are &#039;&#039;--to-file&#039;&#039; and &#039;&#039;--from-file&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==== matrix and time-series in &#039;&#039;gnuplot&#039;&#039; command ====&lt;br /&gt;
&#039;&#039;gnuplot&#039;&#039; command with --matrix and --time-series options show&lt;br /&gt;
dataset time on x-axis if possible.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
m = {LRM}&lt;br /&gt;
gnuplot --matrix=m --time-series --with-lines --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And also related to time series plots with matrices, you can now do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
m = {dataset}&lt;br /&gt;
tsplots --matrix=m --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New in gretl 2023c===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;gridplot&#039;&#039; command====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;tsplots&#039;&#039; (virtual) command====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
====plot multiple bands====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====cluster-robust standard errors generalized for panel models====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
*clustering by time period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(If you want to combine clustering by panel units/groups with another variable, you can use the keyword &amp;lt;code&amp;gt;$unit&amp;lt;/code&amp;gt; just like &amp;lt;code&amp;gt;$time&amp;lt;/code&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
*Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation. For scripting, the &#039;&#039;hac_lag&#039;&#039; setting is also relevant. See section 22.4. of the guide.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
====dark theme on Windows and MacOS====&lt;br /&gt;
An experimental dark theme option is now available on non-Linux systems.&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=121</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=121"/>
		<updated>2025-02-05T16:29:42Z</updated>

		<summary type="html">&lt;p&gt;SvenS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in gretl 2024b ===&lt;br /&gt;
&lt;br /&gt;
==== gridplot title ====&lt;br /&gt;
You can add a title to a gridplot now.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open bikesharing&lt;br /&gt;
gpbuild bikers&lt;br /&gt;
    gnuplot temp --time-series&lt;br /&gt;
    gnuplot casual --time-series&lt;br /&gt;
end gpbuild&lt;br /&gt;
&lt;br /&gt;
gridplot bikers --title=&amp;quot;Cool bikers&amp;quot; --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Dynamic scaling of fonts in many gretl windows ====&lt;br /&gt;
 &lt;br /&gt;
You can enlarge or shrink the font size very much like in a web browser, for example using ctrl_+ or ctrl_- keys.&lt;br /&gt;
&lt;br /&gt;
==== Gamma distribution in distribution plotting tools ====&lt;br /&gt;
&lt;br /&gt;
he distribution plotting tool (under the Tools menu) now also supports the Gamma distribution.&lt;br /&gt;
&lt;br /&gt;
==== Panel dataset subsampling ====&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subsampling a panel dataset with the graphical dialogs, telling gretl to maintain the panel structure is now easier.&lt;br /&gt;
&lt;br /&gt;
=== New in gretl 2024a ===&lt;br /&gt;
(as always, just a selection)&lt;br /&gt;
&lt;br /&gt;
==== more flexible &#039;&#039;info&#039;&#039; command ====&lt;br /&gt;
&lt;br /&gt;
Not a huge new feature, but the &#039;&#039;info&#039;&#039; command now offers a scripting way to editing the meta data of a dataset. The GUI analog (which has always been possible) is to go to Data / Dataset info.&lt;br /&gt;
&lt;br /&gt;
The relevant new options are &#039;&#039;--to-file&#039;&#039; and &#039;&#039;--from-file&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==== matrix and time-series in &#039;&#039;gnuplot&#039;&#039; command ====&lt;br /&gt;
&#039;&#039;gnuplot&#039;&#039; command with --matrix and --time-series options show&lt;br /&gt;
dataset time on x-axis if possible.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
m = {LRM}&lt;br /&gt;
gnuplot --matrix=m --time-series --with-lines --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And also related to time series plots with matrices, you can now do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
m = {dataset}&lt;br /&gt;
tsplots --matrix=m --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New in gretl 2023c===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;gridplot&#039;&#039; command====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;tsplots&#039;&#039; (virtual) command====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
====plot multiple bands====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====cluster-robust standard errors generalized for panel models====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
*clustering by time period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(If you want to combine clustering by panel units/groups with another variable, you can use the keyword &amp;lt;code&amp;gt;$unit&amp;lt;/code&amp;gt; just like &amp;lt;code&amp;gt;$time&amp;lt;/code&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
*Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation. For scripting, the &#039;&#039;hac_lag&#039;&#039; setting is also relevant. See section 22.4. of the guide.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
====dark theme on Windows and MacOS====&lt;br /&gt;
An experimental dark theme option is now available on non-Linux systems.&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=111</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=111"/>
		<updated>2024-01-16T10:11:56Z</updated>

		<summary type="html">&lt;p&gt;SvenS: Start section on gretl 2024a (and add the dark theme announcement to 2023c)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2024a ===&lt;br /&gt;
(as always, just a selection)&lt;br /&gt;
&lt;br /&gt;
==== more flexible &#039;&#039;info&#039;&#039; command ====&lt;br /&gt;
&lt;br /&gt;
Not a huge new feature, but the &#039;&#039;info&#039;&#039; command now offers a scripting way to editing the meta data of a dataset. The GUI analog (which has always been possible) is to go to Data / Dataset info.&lt;br /&gt;
&lt;br /&gt;
The relevant new options are &#039;&#039;--to-file&#039;&#039; and &#039;&#039;--from-file&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
===New in gretl 2023c===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;gridplot&#039;&#039; command====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====&#039;&#039;tsplots&#039;&#039; (virtual) command====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
====plot multiple bands====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====cluster-robust standard errors generalized for panel models====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
*clustering by time period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(If you want to combine clustering by panel units/groups with another variable, you can use the keyword &amp;lt;code&amp;gt;$unit&amp;lt;/code&amp;gt; just like &amp;lt;code&amp;gt;$time&amp;lt;/code&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
*Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation. For scripting, the &#039;&#039;hac_lag&#039;&#039; setting is also relevant. See section 22.4. of the guide.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;br /&gt;
&lt;br /&gt;
====dark theme on Windows and MacOS====&lt;br /&gt;
An experimental dark theme option is now available on non-Linux systems.&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=108</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=108"/>
		<updated>2023-12-07T11:14:00Z</updated>

		<summary type="html">&lt;p&gt;SvenS: Adjust to recent syntax changes in gretl 2023c.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== cluster-robust standard errors generalized for panel models ====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
* clustering by time period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=$time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
(If you want to combine clustering by panel units/groups with another variable, you can use the keyword &amp;lt;code&amp;gt;$unit&amp;lt;/code&amp;gt; just like &amp;lt;code&amp;gt;$time&amp;lt;/code&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
* Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation. For scripting, the &#039;&#039;hac_lag&#039;&#039; setting is also relevant. See section 22.4. of the guide.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=107</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=107"/>
		<updated>2023-11-02T13:37:09Z</updated>

		<summary type="html">&lt;p&gt;SvenS: /* cluster-robust standard errors generalized for panel models */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== cluster-robust standard errors generalized for panel models ====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
* clustering by period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=period&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
genr time  # can also use: series mytime = $obsminor&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
* Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation. For scripting, the &#039;&#039;hac_lag&#039;&#039; setting is also relevant. See section 22.4. of the guide.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=106</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=106"/>
		<updated>2023-11-02T13:35:24Z</updated>

		<summary type="html">&lt;p&gt;SvenS: add Driscoll-Kraay&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== cluster-robust standard errors generalized for panel models ====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
* clustering by period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=period&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
genr time  # can also use: series mytime = $obsminor&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
* Driscoll-Kraay robust standard errors, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
set panel_robust scc # scc: spatial-correlation consistent&lt;br /&gt;
panel WAGE const INDOUTPT --robust&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Driscoll-Kraay standard errors have also been available in the contributed package &#039;&#039;CSDpanel&#039;&#039;, now they are natively implemented. This is not the same as two-way clustering, but they are related. This is also available in the GUI by selecting the corresponding SCC option for the robust variance estimation.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=105</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=105"/>
		<updated>2023-11-02T12:29:54Z</updated>

		<summary type="html">&lt;p&gt;SvenS: add time-series GUI stacking&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== cluster-robust standard errors generalized for panel models ====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
* clustering by period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=period&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
genr time  # can also use: series mytime = $obsminor&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;br /&gt;
&lt;br /&gt;
====panel data handling: convert side-by-side time series in the GUI====&lt;br /&gt;
This is not so easy to explain, but suppose you have a variable &#039;GDP&#039; as several time series for several countries, say for France and the US. Then you want to convert this from a time-series dataset to a panel dataset with a single series spanning the two units (countries). This has always been possible with scripting, see section 4.5 of the user guide. Now you can also do it in the menu GUI interface.&lt;br /&gt;
[[File:Panel dataset structure dialog.png|left|thumb]]&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=File:Panel_dataset_structure_dialog.png&amp;diff=104</id>
		<title>File:Panel dataset structure dialog.png</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=File:Panel_dataset_structure_dialog.png&amp;diff=104"/>
		<updated>2023-11-02T12:27:42Z</updated>

		<summary type="html">&lt;p&gt;SvenS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;dialog screenshot&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=File:Panel_dataset_structure.png&amp;diff=103</id>
		<title>File:Panel dataset structure.png</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=File:Panel_dataset_structure.png&amp;diff=103"/>
		<updated>2023-11-02T12:24:46Z</updated>

		<summary type="html">&lt;p&gt;SvenS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;screenshot&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=102</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=102"/>
		<updated>2023-11-02T12:10:32Z</updated>

		<summary type="html">&lt;p&gt;SvenS: add clustered standard errors&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== cluster-robust standard errors generalized for panel models ====&lt;br /&gt;
For the &#039;&#039;panel&#039;&#039; command, the &#039;&#039;--robust&#039;&#039; option has always given you robust standard errors in the sense that clustering by panel units (groups, whatever you want to call them) is done by gretl. Several generalizations are now possible with the &#039;&#039;--cluster&#039;&#039; option; see also ch. 22 of the user guide.&lt;br /&gt;
&lt;br /&gt;
* clustering by period, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=period&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* clustering by a user-defined variable, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* two-way clustering, example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open abdata&lt;br /&gt;
genr time  # can also use: series mytime = $obsminor&lt;br /&gt;
panel WAGE const INDOUTPT --cluster=time,IND&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Please also check out the &#039;&#039;--no-df-corr&#039;&#039; option if you want to compare results with other software.&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=101</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=101"/>
		<updated>2023-11-02T11:29:01Z</updated>

		<summary type="html">&lt;p&gt;SvenS: /* plot multiple bands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()	# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1	# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=100</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=100"/>
		<updated>2023-11-02T11:26:34Z</updated>

		<summary type="html">&lt;p&gt;SvenS: add multiple bands feature&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open australia&lt;br /&gt;
strings temparr = array(2)&lt;br /&gt;
qqplot IAU --outbuf=temparr[1]&lt;br /&gt;
kdplot E --outbuf=temparr[2]&lt;br /&gt;
gridplot temparr --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open data4-10&lt;br /&gt;
gpbuild MyPlots&lt;br /&gt;
    gnuplot ENROLL CATHOL&lt;br /&gt;
    gnuplot ENROLL INCOME&lt;br /&gt;
    gnuplot ENROLL COLLEGE&lt;br /&gt;
end gpbuild&lt;br /&gt;
gridplot MyPlots --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
open denmark&lt;br /&gt;
tsplots LRM LRY --output=display&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;br /&gt;
&lt;br /&gt;
==== plot multiple bands ====&lt;br /&gt;
Plotting a single band to represent a confidence area or something similar has been possible for a long long time. Now you can also insert more than one band into a plot. The syntax relies on specifying a hansl bundle for each band and then passing all of them inside an array of bundles to the gnuplot call. Meaningless example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# create artificial data &lt;br /&gt;
nulldata 50&lt;br /&gt;
setobs 1 1 --time-series &lt;br /&gt;
series y = log(time)	# main line to be plotted&lt;br /&gt;
series w = normal()		# example width series &lt;br /&gt;
series x1 = y + 0.1 	# optional center different from y&lt;br /&gt;
series x2 = y - 0.1		# ditto&lt;br /&gt;
&lt;br /&gt;
# specify the band specs &lt;br /&gt;
bundle b1 = _(center=&amp;quot;x1&amp;quot;, width=&amp;quot;w&amp;quot;, style=&amp;quot;bars&amp;quot;) &lt;br /&gt;
bundle b2 = _(center=&amp;quot;x2&amp;quot;, width=&amp;quot;w&amp;quot;, factor=0.2, style=&amp;quot;fill&amp;quot;, color=&amp;quot;grey&amp;quot;)&lt;br /&gt;
bundles bandspecs = defarray(b1,b2)&lt;br /&gt;
&lt;br /&gt;
# execute the plot &lt;br /&gt;
gnuplot y --time-series --with-lines --output=display --bands=bandspecs &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=98</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=98"/>
		<updated>2023-10-31T18:05:50Z</updated>

		<summary type="html">&lt;p&gt;SvenS: Add tsplots&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;open australia&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;strings temparr = array(2)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;qqplot IAU --outbuf=temparr[1]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;kdplot E --outbuf=temparr[2]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gridplot temparr --output=display&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;open data4-10&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gpbuild MyPlots&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL CATHOL&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL INCOME&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL COLLEGE&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;end gpbuild&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gridplot MyPlots --output=display&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;tsplots&#039;&#039; (virtual) command ====&lt;br /&gt;
You can now use the new &#039;&#039;tsplots&#039;&#039; command to create several joint time-series plots easily. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;open denmark&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;tsplots LRM LRY --output=display&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has actually &amp;quot;always&amp;quot; been possible with the &#039;&#039;scatters&#039;&#039; command --and was duly documented-- but it was somewhat counterintuitive to use a command for scatter plots to draw time-series lines.&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
	<entry>
		<id>https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=97</id>
		<title>Blog</title>
		<link rel="alternate" type="text/html" href="https://gretlwiki.econ.univpm.it/index.php?title=Blog&amp;diff=97"/>
		<updated>2023-10-31T18:00:46Z</updated>

		<summary type="html">&lt;p&gt;SvenS: Started the page, added &amp;quot;gridplot&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;New features, fixed bugs, and software news are shown here&lt;br /&gt;
&lt;br /&gt;
A good concise list is provided in the official [https://gretl.sourceforge.net/ChangeLog.html changelog], here the aim is to be more explicit and sometimes give some examples. Before the respective new gretl version is released, the examples will only work in snapshots that are recent enough, or with self-compiled bleeding-edge versions. &lt;br /&gt;
&lt;br /&gt;
=== New in what will be gretl 2023c ===&lt;br /&gt;
(this is just a selection, not exhaustive)&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;gridplot&#039;&#039; command ====&lt;br /&gt;
This new native command makes it possible to arrange several subplots in a grid (rectangular) layout. As such it will pretty much replace the contributed function package &#039;&#039;multiplot&#039;&#039;. There are basically two ways of using it:&lt;br /&gt;
&lt;br /&gt;
First, using some other plotting commands, redirect the output to a string buffer inside a strings array. Then execute the gridplot command on that array. Example: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;open australia&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;strings temparr = array(2)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;qqplot IAU --outbuf=temparr[1]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;kdplot E --outbuf=temparr[2]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gridplot temparr --output=display&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secondly, use the companion command &#039;&#039;gpbuild&#039;&#039; in a block format, and then define the individual parts:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;open data4-10&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gpbuild MyPlots&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL CATHOL&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL INCOME&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; gnuplot ENROLL COLLEGE&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;end gpbuild&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gridplot MyPlots --output=display&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>SvenS</name></author>
	</entry>
</feed>