Page 1 of 1
Spool Objects
Posted: Wed Sep 22, 2010 3:20 pm
by norbert
Hi!
I have two questions related to spool objects (in Eviews7.1):
1) I can't make embedded spool objects, for example this code doesn't work:
Code: Select all
create u 10
series s=rnd
spool sp
sp.append(name=s_n) s.line
sp.insert(loc=s_n, offset=last) s.bar
2) Is there any command with which spool objects can be hidden?
Thanks in advance,
Norbert
Re: Spool Objects
Posted: Wed Sep 22, 2010 4:19 pm
by EViews Gareth
1.
I'm not sure your question makes sense. The offset=last option only works if you have embedded a spool object inside another spool object. The code example you provided did not embed a spool inside a spool. The following example shows it working ok:
Code: Select all
create u 10
series s=rnd
series x=rnd
spool sp
sp.append(name=s_n) s.line
spool xp
xp.append(name=sp_n) sp
xp.insert(loc=sp_n, offset=last) x.bar
2. What does "hidden" mean?
Re: Spool Objects
Posted: Wed Sep 22, 2010 11:43 pm
by norbert
Sorry for my English.
The question : Can I hide spool objects (with a command)?
Spool Objects
Posted: Wed Sep 22, 2010 11:55 pm
by EViews Gareth
Can you define what you mean by hide?
Re: Spool Objects
Posted: Fri Mar 30, 2012 5:00 am
by sbssx4
Hi, can you embed spool object (in your example) sp inside xp without declaring spool object sp?
I can do this by clicking(in spool object xp tool bar) proc/append/new spool/ then type sp. So that sp only shows in spool object xp but not in the workfile window. Can you use a code to do it please?
1.
I'm not sure your question makes sense. The offset=last option only works if you have embedded a spool object inside another spool object. The code example you provided did not embed a spool inside a spool. The following example shows it working ok:
Code: Select all
create u 10
series s=rnd
series x=rnd
spool sp
sp.append(name=s_n) s.line
spool xp
xp.append(name=sp_n) sp
xp.insert(loc=sp_n, offset=last) x.bar
2. What does "hidden" mean?
Re: Spool Objects
Posted: Fri Mar 30, 2012 8:53 am
by EViews Gareth
No, it has to be declared first.