Search found 13319 matches

by EViews Gareth
Sat Mar 20, 2010 1:54 pm
Forum: Data Manipulation
Topic: How to convert quarterly data into monthly data
Replies: 3
Views: 11474

Re: How to convert quarterly data into monthly data

With regards to question 1, simply create a monthly page in your workfile, and then copy the data into the monthly page. As Jim said, it is fairly well documented in the manual.

As for the second question, I think we'd have to see the workfile.
by EViews Gareth
Sat Mar 20, 2010 1:51 pm
Forum: Data Manipulation
Topic: PANEL DATA
Replies: 19
Views: 16657

Re: PANEL DATA

by EViews Gareth
Fri Mar 19, 2010 2:21 pm
Forum: Estimation
Topic: System specification
Replies: 2
Views: 2277

Re: System specification

You appear to be estimating a state space model in a System object.
by EViews Gareth
Fri Mar 19, 2010 2:19 pm
Forum: Data Manipulation
Topic: Fetch from Bloomberg
Replies: 1
Views: 3089

Re: Fetch from Bloomberg

Last I checked, and this was a while ago, there wasn't an ODBC driver for Bloomberg. If there is an ODBC driver available, then EViews Enterprise should be able to connect directly to it through that. Otherwise, you can always download into Excel and then open up that Excel file in EViews.
by EViews Gareth
Thu Mar 18, 2010 10:50 pm
Forum: Estimation
Topic: Non-linear restriction on the intercept
Replies: 3
Views: 4406

Re: Non-linear restriction on the intercept

Code: Select all

y=-c(1)*c(2)+c(1)*x
by EViews Gareth
Thu Mar 18, 2010 1:34 pm
Forum: Bug Reports
Topic: @uidialog - Radio buttons
Replies: 2
Views: 3978

Re: @uidialog - Radio buttons

Latest patch should fix it.
by EViews Gareth
Thu Mar 18, 2010 10:16 am
Forum: Estimation
Topic: Testing multiple restrictions in system window
Replies: 10
Views: 8353

Re: Testing multiple restrictions in system window

Yes.

(By the way, wouldn't it just be easier to try these things rather than post here?! :wink: )
by EViews Gareth
Thu Mar 18, 2010 9:58 am
Forum: Estimation
Topic: Testing multiple restrictions in system window
Replies: 10
Views: 8353

Re: Testing multiple restrictions in system window

Yep, through the Wald Coefficient Restrictions window.
by EViews Gareth
Thu Mar 18, 2010 9:11 am
Forum: Bug Reports
Topic: @uidialog - Radio buttons
Replies: 2
Views: 3978

Re: @uidialog - Radio buttons

Nice catch. Will get it fixed.
by EViews Gareth
Thu Mar 18, 2010 9:09 am
Forum: Data Manipulation
Topic: exporting data to excel
Replies: 1
Views: 2784

Re: exporting data to excel

Just save your workfile as an Excel file (File->Save As, then change the "save as type" to Excel).
by EViews Gareth
Thu Mar 18, 2010 8:52 am
Forum: Data Manipulation
Topic: Matching dates in importing data
Replies: 10
Views: 10866

Re: Matching dates in importing data

Leave it irregular.
by EViews Gareth
Wed Mar 17, 2010 10:58 am
Forum: Programming
Topic: Obtaining coefficients only
Replies: 10
Views: 9098

Re: Obtaining coefficients only

You need Startz's fix for that:
@coefs(2)
by EViews Gareth
Wed Mar 17, 2010 9:40 am
Forum: Programming
Topic: Obtaining coefficients only
Replies: 10
Views: 9098

Re: Obtaining coefficients only

Code: Select all

equation eq{!i}.ls y{!i} c x{!i}
coefs(!rowcounter) = eq.@coef


You're creating an equation called eq{!i}, but you're referencing an equation called eq.

You probably want to change your code to be:

Code: Select all

equation eq{!i}.ls y{!i} c x{!i}
coefs(!rowcounter) = eq{!i}.@coef
by EViews Gareth
Wed Mar 17, 2010 9:37 am
Forum: Data Manipulation
Topic: Eviews 7 cannot read Excel 2007 data?
Replies: 3
Views: 6154

Re: Eviews 7 cannot read Excel 2007 data?

Try:

Code: Select all

import "L:\temp.xls" range="Data_Dailyt!b4:C100"


(Note this will read data from B4 to C100 - you might want to change the ending point to something else).
by EViews Gareth
Wed Mar 17, 2010 9:29 am
Forum: Estimation
Topic: Fully Modified OLS (Phillips-Hansen)
Replies: 5
Views: 5842

Re: Fully Modified OLS (Phillips-Hansen)

EV7

Go to advanced search