No, there are two problems here:
- The numeric optional parameter to the 'fractint' command must not be enclosed in brackets,
but with blanks, like this:
fractint ld_ELCNigeria 0 --all
- But this is not what you want, either, because the null hypothesis of the test is always I(0), as stated in the help text. Instead the numeric parameter AFAICS refers to a lag (truncation) order, not the integration order. (It is true that this is formulated a little bit confusingly in the help text and this probably should be changed.)
So if you want to run a test for I(0.1) you would have to fractionally difference the series first, with d=0.1, and then run the test above. Gretl has the 'fracdiff()' function to do that kind of differencing. So the following should work (untested):
series temp = fracdiff(ld_ELCNigeria, 0.1)
fractint temp --all
You can also manually specify the (lag) order if you like, but I
cannot tell you which value to choose for that.
Please provide a link to the code you have in mind, or if it is short, maybe you can also paste it into the mail message.
cheers
sven