Displaying 4 results from an estimated 4 matches for "heidemann".
Did you mean:
hedemann
2006 Jun 29
1
Cointegration Test in R
....
Unfortunately, the hypothesis (restrictions on beta)
specifies the same restriction on all cointegration vectors.
Is there any possibility to specify different restrictions on
the cointegration vectors?
Are there any other packages in R using cointegration tests?
Thanks and best regards.
Dennis Heidemann
[[alternative HTML version deleted]]
2000 Dec 19
1
setup debugging suggestion and offer to help
...buted by me to
accomplish this task? I certainly don't want to jepordize the code
base or break the (US) law about crypto code.
(I have a preliminary patch for the case I outlined, but what is
really called for is a comprehensive audit of where crypto methods are
turned on and off.)
-John Heidemann
2006 Dec 14
17
Should Event.stopObserving() remove itself from cache?
Just wondering why Event.stopObserving() doesn''t remove the itself from
the Event.obervers array?
Is there a reason for this?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
To post to this group, send email to
2007 Oct 05
7
Easy AR association stubbing
I''ve added a method to the mock class that makes it pretty easy to
stub associations in rails. I''ve been using it for awhile and it seems
to cut down on a lot of setup code for the controller and model specs
that use associations.
#before
@person = mock_model(Person)
posts = mock(''post_proxy'')
posts.stub!(:build).and_return(mock_model(Post, :save => true))