Search found 13305 matches

by EViews Gareth
Tue Mar 05, 2024 9:39 am
Forum: Programming
Topic: Sum by Iterating through Variables by Name
Replies: 4
Views: 252

Re: Sum by Iterating through Variables by Name

I'm not sure I follow exactly, but I think the way to go is to create groups using the group wildcard constructor, and then use the @rsum function to generate the sums. So, for example, if you want to create a sum of all the series who match the pattern "amuseXX_area", you'd have: group my...
by EViews Gareth
Wed Feb 28, 2024 12:09 pm
Forum: Data Manipulation
Topic: import data with the delimiter |
Replies: 5
Views: 3409

Re: import data with the delimiter |

I think you're out of luck.
by EViews Gareth
Tue Feb 27, 2024 1:56 pm
Forum: Estimation
Topic: Maximum Group Size for Regression
Replies: 5
Views: 5402

Re: Maximum Group Size for Regression

Create a new coefficient vector (not a vector, but a coef) called G, then use g instead of c
by EViews Gareth
Tue Feb 27, 2024 12:27 pm
Forum: Programming
Topic: maximum number of coefficients in a system
Replies: 5
Views: 9246

Re: maximum number of coefficients in a system

Use

Code: Select all

coef
instead of

Code: Select all

vector
by EViews Gareth
Fri Feb 23, 2024 2:13 pm
Forum: Estimation
Topic: Seasonal adjustment with national calendar
Replies: 1
Views: 161

Re: Seasonal adjustment with national calendar

The EViews implementation of X-13 allows you to assign a workfile series as a user-variable in the X-13 pre-adjustment regression. You can create at calendar variable similar to those built in to X-13, but supporting you specific calendar. Recommend reading the X-13 documentation to see how they def...
by EViews Gareth
Fri Feb 23, 2024 11:09 am
Forum: Data Manipulation
Topic: Trouble Importing Excel file
Replies: 2
Views: 226

Re: Trouble Importing Excel file

Sounds like the Python code is creating a file that isn’t 100% compliant with the xlsx file format. Excel is able to handle the lack of compliance better than EViews is.

Easiest fix might be to save as csv from Python instead.
by EViews Gareth
Thu Feb 22, 2024 2:07 pm
Forum: Bug Reports
Topic: Not receiving all series requested from FRED db
Replies: 4
Views: 701

Re: Not receiving all series requested from FRED db

Is this consistently happening? I just tried, and seemed to retrieve all?
by EViews Gareth
Fri Feb 16, 2024 9:45 am
Forum: Programming
Topic: Diebold Mariano Test for Panel Data
Replies: 1
Views: 142

Re: Diebold Mariano Test for Panel Data

There's nothing built in that will do it, you'll need to write your own code.
by EViews Gareth
Tue Feb 13, 2024 2:23 pm
Forum: Bug Reports
Topic: Patches
Replies: 1
Views: 302

Re: Patches

No, just install the latest patch.
by EViews Gareth
Fri Feb 09, 2024 9:01 am
Forum: Programming
Topic: Variable naming importing from csv
Replies: 4
Views: 389

Re: Variable naming importing from csv

I can't really see how that worked in EViews 12 (and I ran it in 12, and the same behaviour as 13 occurred).

But, you probably want to use the colheadnames=( ) argument of the important statement to say which rows contain name information.
by EViews Gareth
Thu Feb 08, 2024 10:52 am
Forum: Programming
Topic: Variable naming importing from csv
Replies: 4
Views: 389

Re: Variable naming importing from csv

Could you provide the csv?
by EViews Gareth
Thu Feb 08, 2024 10:51 am
Forum: Installation and Registration
Topic: INSTALLATION ISSUES
Replies: 4
Views: 1065

Re: INSTALLATION ISSUES

It looks like you're running the patch installer, rather than the full application installer.
by EViews Gareth
Wed Feb 07, 2024 10:41 am
Forum: Data Manipulation
Topic: Automatic update of a workfile based on Excel files
Replies: 4
Views: 552

Re: Automatic update of a workfile based on Excel files

Appears to work ok for me. Is there something else you're doing?
by EViews Gareth
Tue Feb 06, 2024 4:35 pm
Forum: Programming
Topic: Importing data from .csv files, prompt and matched dates
Replies: 8
Views: 506

Re: Importing data from .csv files, prompt and matched dates

More specifically, when issuing a command, EViews presumes you're sat there willing to input something, so if there is a doubt about what's going on, EViews is more willing to prompt you with some options. If you're running a program, EViews assumes you don't want to be prompted, so goes with a defa...
by EViews Gareth
Tue Feb 06, 2024 3:15 pm
Forum: Programming
Topic: Importing data from .csv files, prompt and matched dates
Replies: 8
Views: 506

Re: Importing data from .csv files, prompt and matched dates

Try running it in an program, not as a command.

Go to advanced search