similar to: equivalent R functions for Numerical Recipes fitxy and fitexy ?

Displaying 20 results from an estimated 5000 matches similar to: "equivalent R functions for Numerical Recipes fitxy and fitexy ?"

2000 Nov 09
1
Alternative to Numerical Recipes
Some time ago I mentioned the online version of the book "Numerical Recipes in C" http://www.ulib.org/webRoot/Books/Numerical_Recipes/ and inadvertantly stirred up a hornets' nest. I obtained from this book code to calculate the Incomplete beta function. It appears in: 6.4 Incomplete Beta Function, Student?s Distribution, F-Distribution, Cumulative Binomial Distribution, p.226, and
2001 Nov 27
1
Is there someone working on an R interface for Numerical Recipes?
Or can I easily call the routines in Numerical Recipes from within R? Thanks. Ming Chow -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at
2008 Jan 28
2
Package simex
Dear R-helpers, It is not clear to me how you get measurement.error SD when you have a single dataset, and it is not clear to me how sensitive SIMEX is to errors in the estimates of measurement error. Could someone please point me to the relevant literature? _____________________________ Professor Michael Kubovy University of Virginia Department of Psychology USPS: P.O.Box 400400
2011 Apr 19
1
How to Extract Information from SIMEX Output
Below is a SIMEX object that was generated with the "simex" function from the "simex" package applied to a logistic regression fit. From this mountain of information I would like to extract all of the values summarized in this line: .. ..$ variance.jackknife: num [1:5, 1:4] 1.684 1.144 0.85 0.624 0.519 ... Can someone suggest how to go about doing this? I can extract the
2007 Feb 09
2
Numerical Recipes in R
Dear All, So far I have mainly used R for data analysis and simple numerics (integration of functions, splines etc...). However, I have recently been astonished at finding out that many things I thought were only achievable with Fortran or C can be done e.g. entirely using MatLab. When I try asking around if the same could be achieved by R, inevitably the answer is that either people do not know R
2008 Apr 29
1
Webistrano recipes association (was: [Capistrano] Webistrano 1.3 released)
I see at some point recipes were changed from project-associated to stage-associated, is there some explanation or examples of that use-case? Could I request we have both? In my current cap scripts, we don''t have any stage-specific recipes, but maybe I''m just not understanding this completely. On Tue, Apr 29, 2008 at 1:04 PM, Jonathan Weiss
2006 Apr 23
2
Rails Recipes
Rails Recipes ... has got some very appetizing recipes. However, I have a hard time starting. For example, the very first recipe, InPlaceEditing, how and where do I run this code to create the table? Thanks! class AddContactsTable < ActiveRecord::Migration def self.up create_table :contacts do |t| t.column :name, :string t.column :email, :string t.column :phone,
2006 Feb 21
1
[ADV] Next beta of Rails Recipes is available
The second beta of Rails Recipes, Chad Fowler''s killer book or writing real-world Rails, is now available. It features seven new recipes: * In Place Editing * Making Your Own JavaScript Helper * Many To Many With Attributes On The Relationship * Dealing With Time Zones * Living On The Edge * Making Your Own Rails Plugins (contributed by Rick Olson, aka technoweenie) * Polymorphic
2006 Mar 16
1
[ADV] New Beta of Rails Recipes available
Folks: The fourth beta of Rails Recipes, Chad Fowler''s book or writing real- world Rails, is now available. It features nine new recipes (and fixes the PDF bookmark problem): - Secret URLs - Integration Testing - Cheap And Easy Theme Support - Lightning Fast JavaScript Auto Completes - Use Active Record Outside Of Rails - Sharing Models Between Applications - Keeping Track Of Who Did
2006 Jan 18
2
categories/recipes & books/descriptions - has_many vs has_one => id question
People, In the cookbook eg, categories has_many recipes but in a book eg, book has_one description - doesn''t that mean that the id of the description should be the same as the id of the book (instead of having it''s own "description_id" in the book table? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney
2007 Jun 07
4
Adding recipes...
Hi all Ok, maybe it''s just me, but - how on earth do I add recipes to the wiki...?? When I go into the list of recipes, I don''t find a "Edit this page button". How should I add to the list? -- Med venlig hilsen Juri Rischel Jensen Fab:IT ApS Vesterbrogade 50 DK-1620 København Tlf: 70 202 407 / Fax: 33 313 640 www.fab-it.dk / juri@fab-it.dk
2006 Apr 02
2
Problem with RSS feed from Rails Recipes
I''m trying to add an RSS feed to my app, and am going through the Rails Recipes chapter on doing so. I get the following error when I request the feed: undefined method `gmtime'' for #<DateTime: 1963061961/800,0,2299161> ... 7: xml.pubDate CGI.rfc1123_date(@posts.first.created_on) Any idea what''s up? Pat
2007 Jul 09
8
Capistrano mongrel recipes and /usr/local/bin
Hello, I''m trying to deploy my application with Capistrano using Mongrel recipes. Since I''ve installed Ruby from source code, mongrel scripts are found in /usr/local/bin. But the recipes can''t find mongrel_rails : "bash: mongrel_rails: command not found". The path of the user account used to deploy is OK. For sure, I can redefine
2006 Mar 09
6
[ADV] New version of Rails Recipes Beta is available
Folks: For your cooking pleasure, I''m happy to announce that Chef Fowler has added eight new recipes to his book: * DRY Up Your Database Config * Adding Behavior to Your ActiveRecord Associations * Keep An Eye On Your Session Expiry * Make your URLs Meaningful (and pretty) * Syndicate Your Site With RSS * Handling Bounced Email * Dynamic Database Configuration * Quickly Inspect Your
2006 Mar 08
3
migrations schema_info table, Rails Recipes Bug?
I have the rails recipes book and i was going through the migrations recipe. Everything seemed to work except for the last part in trying to do a rake migrate with a migration file version 1 and the schema_info version set to 0. Without the force attribute, the rake migration fails, as expected. So the recipe says to run this: ruby script/runner
2006 May 05
11
Rails Recipes or AWDWR 2 ?
Hi, I bougth the Agile Web Development with rails First Edition and now want buy rails recipes but what is the best decision buy rails recipes or the new edition de Agile Web Development With Rails? Jean Carlo Schechnner www.idvirtual.com -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Aug 07
3
Acts_as_taggable / Rails Recipes bug?
I''m following the acts_as_taggable chapter from the Rails Recipes book. I want my view form to have a text_field that correlates to an attribute in the Model that accepts a string of space delimited tags. The book uses tag-_list, but from what I can tell this attribute can''t be written to. I''ve added this to the plugin code itself - am I missing something, is there a
2006 Feb 12
7
ROR Recipes Beta: Why use taggings instead of tags_contacts? NoMethodError tag_with?
I have gotten acts_as_taggable to work for a test application as documented on taggable.rubyforge.org I am following Chad''s excellent examples in ROR Recipes Beta book. I have a few questions and hope that Chad or some other expert can help clarify them. 1. Why is the book suggesting to use taggings table instead of tags_contacts, as mentioned on taggable.rubyforge.org?
2006 Apr 12
0
[ADV] New Rails Recipes Beta Available
Folks: The fifth beta of Rails Recipes, Chad Fowler''s book on writing real-world Rails, is now available. The book now has its full quota for 70 recipes. Here''s the complete list. Part I--User Interface Recipes In-Place Form Editing Making Your Own JavaScript Helper Live Preview Live Search Creating a Drag-and-Drop Sortable List (extract) Update
2006 Feb 06
6
ActionMailer - ROR Recipes - Multipart/alternative
I am using the SaltedHashLoginGenerator. and would like to send the e-mail in multipart/alternative format. By default my application is using forgot_password_en.rhtml template. I read in the ROR Recipes book "ActionMailer sees these templates, recognizes the pattern in their file names, and automatically sets the MIME type of the message to multipart/alternative and adds