Crash removing element in strings
by Federico Fiorani
Dear all,
Gretl on my Windows crashes running this script
<hansl>
strings s = null
s += "text"
s -= "text"
</hansl>
Does anyone have the same problem?
Federico
2 years, 2 months
Cambiar idioma de Gretl
by zixuan zhang
Hola buenas,
Soy un usuario de Gretl, les envio este correo electronico porque quería
preguntar cómo se puede cambiar el idioma de Gretl (dentro de Gretl).
Gracias por la cintestación.
Un saludo.
2 years, 2 months
Series and lists as bundle members
by Federico Fiorani
Dear all,
in my opinion a brief description in the manual of how series, bundles
and restrictions work might be helpful.
As example:
<hansl>
nulldata 10
s = index % 2 ? NA : 1
bundle b = null
smpl 1 5
b.s1 = s
smpl full
smpl --no-missing
b.s2 = s
smpl full
print b
</hansl>
<output>
bundle b:
s1 (series: length 10)
s2 (series: length 5)
</output>
I suppose that the series "s1" has 10 element for "preserving
information", because in "smpl 1 5" you could use only a part of "s",
but you cannot do that with "--no-missing" because the series after
sampling is completely different.
Anyway, it isn't obvious at first sight why series s1 and s2 have
different length.
What do you think?
Regards
Federico Fiorani
2 years, 2 months