Bivariate GARCH with Varying correlations

sas

    Next

  • 1. Tabulation format
    Dear SAS-L Because of a tabulation I have three variable types in a new variable, for instance var1 has range 1-10,000 and vars2&3 have range 0.001-10.000. How do I apply a format to the new tabulated variable x that will selectively apply comma9.0 to the values that come from var1 and 8.3 to values from var2&3? Vars1-3 are now the class for the table such that var x is the var. Being more specific than this could pose a problem! Any suggestions much appreciated.
  • 2. Local MACRO VAR with code
    I have a local macro variable that is created in a data _null with a call symput. Each time it goes through the loop, this macro var should become a new value. I noticed that this was not the case. The value of the local macro var reset for the first 6 by pass but than stay the same value for the remained of the loop. Anyone have any ideas why this is happening. Thanks I have a local macro variable that is created in a data _null with a call symput. Each time it goes through the loop, this macro var should become a new value. I noticed that this was not the case. The value of the local macro var reset for the first 6 by pass but than stay the same value for the remained of the loop. Anyone have any ideas why this is happening. Thanks Here is the code %Macro MonthlyAnalysis(obDates = RefDateList) ; proc sql noprint ; select count(*) as obsMos into :obsMos from &obDates ; select put(refdate, yymmdd4.) as Mo into :m1-:m9999 from &obDates; quit ; %global totobsmth; %let totobsmth=&obsMos; %do i = 1 %to &obsMos ; %global mth&i; %let mth&i=&&m&i; data _null_; call symput("perdate",put(sum(&&m&i + 100),Z4.)); run; **more code here.... %mend;
  • 3. Suppress "empty" anchor-tag with ODS HTML
    Hi, ODS HTML creates an anchor-tag like this : <A NAME="IDX"> </A> I don't need this tag, but I don't know how to suppress it. Do You ? Thanks Jan Selchau-Hansen
  • 4. Right time at the right place.
    Hello fellow computer and internet user, Its our time to EARN residual income from the computer repair and internet expensis we have.I don't want to waste important your time, just give me a chance to reveal these honest to goodness "Internet Money Earning Secrets!". Our system is AUTOMATED so you don't have to worry about personal rejection. And, when you do find someone who's really serious about improving their finances, our automated system presents your business opportunity to them, one step at a time. People that have read this same email just 1-2 months ago, are now making the kind of income they knew they were worth! What would you do, and whom would you spend your time with, when you're earning the kind of profits you'd like? It's easy to get started as a FREE member NO OBLIGATION. Just Email me. XXXX@XXXXX.COM with subjext line "Register me for free demo" and please include your: First name: Last Name: Country you represent: And just check your inbox for confirmation. If you don't want the business,you can unsubscribe anytime. Sincerely, Ferdinand Arche ***************************************************************** Note: Just hit reply with " REMOVE" in the subject for no further emails.
  • 5. Discunted 0EM Micros0ft, Ad0be, Autodesk, C0rel s0ftwarre from Flores's St0re
    bring schematic ramsey kuwait dodge latvia catnip coddington zap mudsling bryan marriage shameful consult intersect doltish bit client bid amp pyroelectric checkout debug xerox barbour rejecter cybernetics delusion forum irvine inexcusable doolittle fist cattle ascribe asynchrony eightfold adverse commotion divine magnesite dun aboard godkin locutor chart metabolite catcall esther geopolitic divulge lam wheedle knockdown narrow constantinople marijuana riemannian parenthetic temporal bayreuth lemonade always wit destabilize mineralogy veda pathogenesis infantry parkland wiseacre electrician proprioceptive anyone galen holdout balled effusion rockland valine dire vertigo whomsoever canine angie

Bivariate GARCH with Varying correlations

Postby nik » Tue, 16 May 2006 21:06:01 GMT

Hi,
Can someone guide me on how to run Bivariate GARCH model with varying
Correlations in SAS?

Nikhil


Similar Threads:

1.Bivariate and multivariate results

Hi

I've got a client who is running a lot of multiple regressions. She also wants to present the bivariate results.  I've run this as a PROC CORR with the WITH statement, for ease of programming and compact output.  I think this makes sense.
But I've not seen results presented this way (i.e. a table of correlations, and then a multiple regression).

Now, she wants to do a similar regression on a dichotomous DV, which, of course, calls for logistic regression.  I could recode the DV as 0 1, and again present the correlations.... again, this gives compact output, and a nice simple program.  It's meaningful, since the DV is dichotomous.  But will it fly in a journal?

Or am I missing something more fundamental?

TIA as always

Peter

Statistical Consultant
www DOT peterflom DOT com

2.Correlation estimates in bivariate probit

Hello,

I'm using "proc qlim" to estimate bivariate probit, using SAS 8.2.
Does anyone know how I can obtain the estimate for correlation between
error terms, or "rho", using qlim?

I'd appreciate your help!

kf

3.Using Proc Tabulate to generate binned bivariate distributions

Am trying to generate standardized bivariate distributions and to
include bins without data.  For instance,  for the following dataset

Speed , Dir
0-5         N
11-15        E

I'd like to generate the following.

Speed       Dir
                    N        E
  0-5            1          0
  6-10
  11-15         0          1

The 6-10 row could be either missing or null.  Other than adding some
dummy data with missing values, is there any way to do this (I have
data with real missing data and adding dummy missing data is a bit
messy).  SAS suggested using a proc tabulate rather than proc frequency
but I am still unable to generate such tables.  See following example
which has a skip at 20 (21 in the formatted table).

proc format ;
    value WSmps
     -9999 -< 0= ' Calm'
       0.0 -< 1.0= ' 01'
       1.0 -< 2.0= ' 02'
       2.0 -< 3.0= ' 03'
       3.0 -< 4.0= ' 04'
       4.0 -< 5.0= ' 05'
       5.0 -< 6.0= ' 06'
       6.0 -< 7.0= ' 07'
       7.0 -< 8.0= ' 08'
       8.0 -< 9.0= ' 09'
       9.0 -< 10.0= ' 10'
       10.0 -< 11.0= ' 11'
       11.0 -< 12.0= ' 12'
       12.0 -< 13.0= ' 13'
       13.0 -< 14.0= ' 14'
       14.0 -< 15.0= ' 15'
       15.0 -< 16.0= ' 16'
       16.0 -< 17.0= ' 17'
       17.0 -< 18.0= ' 18'
       18.0 -< 19.0= ' 19'
       19.0 -< 20.0= ' 20'
       20.0 -< 21.0= ' 21'
       21.0 -< 22.0= ' 22'
       22.0 -< 23.0= ' 23'
       23.0 -< 24.0= ' 24'
	   24.0 -< 25.0= ' 25'
       25.0 -< 26.0= ' 26'
	   26.0 -< 27.0= ' 27'
       27.0 -< 28.0= ' 28'
	   28.0 -< 29.0= ' 29'
       29.0 -< 30.0= ' 30'
	   30.0 -< 31.0= ' 31'
       31.0 -< 32.0= ' 32'
	   32.0 -< 33.0= ' 33'
       33.0 -< 34.0= ' 34'
       34.0 -< 35.0= ' 35'
       35.0 -< 36.0= ' 36'
       36.0 -< 37.0= ' 37'
       37.0 -< 38.0= ' 38'
       38.0 -< 39.0= ' 39'
       39.0 -< 40.0= ' 40'
       40.0 -< 41.0= ' 41'
       41.0 -< 42.0= ' 42'
       42.0 -< 43.0= ' 43'
       43.0 -< 44.0= ' 44'
	   44.0 -< 45.0= ' 45'
       45.0 -< 46.0= ' 46'
	   46.0 -< 47.0= ' 47'
       47.0 -< 48.0= ' 48'
	   48.0 -< 49.0= ' 49'
       49.0 -< 50.0= ' 50'
	   50.0 -< 98.0= ' 50+';


RUN;
Data test1;
input wS @;
mm=1;output;
mm=2;output;
cards;
      0.0
       1.0
       2.0
       3.0
       4.0
       5.0
       6.0
       7.0
       8.0
       9.0
       10.0
       11.0
       12.0
       13.0
       14.0
       15.0
       16.0
       17.0
       18.0
       19.0
       21.0
       22.0
       23.0
	   24.0
       25.0
	   26.0
       27.0
	   28.0
       29.0
	   30.0
       31.0
	   32.0
       33.0
       34.0
       35.0
       36.0
       37.0
       38.0
       39.0
       40.0
       41.0
       42.0
       43.0
	   44.0
       46.0
       47.0
	   48.0
       49.0
	   50.0
;


PROC TABULATE data=test1 noseps order=formatted ;
CLASS ws mm ;
Format ws WSmps.;
TABLE (ws all), (mm all)*n=' '*f=6.0 / rts=10 box='Total Counts';
TABLE ws, (mm all)*pctn<mm all>*f=7.2
      / rts=15 box='Conditional probs for col given row';

run;

4.Bivariate probit with IV (proc qlim)

Can proc qlim estimate bivariate probit IV models? Eg where both y and
z are 0/1 variables, X and N are sets of variables
prob(y=1)  = f(a + bX + cz)
prob(z=1)  = g(d + eN)
and at least one element of N does not appear in X (the identifying
instrument).

The syntax seems to suggest this is possible, but I cannot see any
explicit discussion in the documentation of having an endogenous
variable on the RHS. (I note that the corresponding Stata routine can
estimate these models).

5.Bivariate Zero-Inflated Poisson Regression Model

Hi SAS users,

Does any one have SAS coding experience in bivariate zero-inflated Poisson
regression model?

Can PROC NLIMIXED do the similar modeling work for multivariate case?



Thank you.



Paul Chin

Risk Management Analytics/ GDS

D&B

Tel:  973-921-5347

Fax: 866-504-6449

6. Bivariate probit with sample selection using PROC QLIM

7. bivariate probit

8. Proc QLIM (bivariate probit)



Return to sas

 

Who is online

Users browsing this forum: No registered users and 71 guest