Search found 5 matches
- Wed Oct 04, 2023 10:42 pm
- Forum: Estimation
- Topic: Confidence intervals in quantile regression
- Replies: 0
- Views: 143144
Confidence intervals in quantile regression
Hello, I am wondering how is Eviews12 calculating the confidence intervals for coefficients in the quantile regression? also on the same line how the probability for Wald test on coefficients is calculated? I am running a quantile AR model, when I look at the confidence intervals that I obtain for t...
- Sat Aug 19, 2023 11:10 pm
- Forum: Programming
- Topic: building formula using strings
- Replies: 2
- Views: 11004
Re: building formula using strings
if someone could help me with this question i will really appreciate it. my formulas need 15+ lags inclucded (and it varies) if I always need to input manually it takes lots of time and leave room for input errors. So I need to give the number of lags and receive an autoregressive formula based on t...
- Wed Aug 09, 2023 11:18 pm
- Forum: Programming
- Topic: building formula using strings
- Replies: 2
- Views: 11004
building formula using strings
I want to build a loop that receives number of required lags and returns the regression formula based on that In Eviews 12 i.e. lag=3 : y c x(-1) x(-2) x(-3) and then I want to feed it to my regression analysis. So I was thinking of using a loop that constructs this formula in the format of strings ...
- Tue Jul 11, 2023 8:08 pm
- Forum: Programming
- Topic: assigning a row of the table from a vector of strings
- Replies: 2
- Views: 10749
Re: assigning a row of the table from a vector of strings
Thanks, Gareth
So it will be something like this
So it will be something like this
Code: Select all
table tab01
scalar a=@wcount(svec01)
for !i=1 to a
tab01(!i,1)=svec01(!i,1)
next
- Mon Jul 10, 2023 10:48 pm
- Forum: Programming
- Topic: assigning a row of the table from a vector of strings
- Replies: 2
- Views: 10749
assigning a row of the table from a vector of strings
Hi
I want to store the name of my columns in a separate object for strings (I'm guessing an svector is suitable)
I would like to fill the first row of my table using the values stored in this object. if this operation is possible in eviews12, could someone help me with the syntax?
I want to store the name of my columns in a separate object for strings (I'm guessing an svector is suitable)
I would like to fill the first row of my table using the values stored in this object. if this operation is possible in eviews12, could someone help me with the syntax?
