similar to: Is there someone working on an R interface for Numerical Recipes?

Displaying 20 results from an estimated 20000 matches similar to: "Is there someone working on an R interface for Numerical Recipes?"

2001 Jun 08
1
Are there binary for Caldera linux?
Hi there, Is there a binary-file installation of R-1.2.3 for Caldera Linux? I have Caldera Linux 2.3. The linux binary installation files at CRAN seems to be for Red Hat Linux only. Is there a way to make the Red Hat linux binary work for Caldera linux? I have tried and has no success so far. Thanks. Ming -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help
2008 Jul 27
2
equivalent R functions for Numerical Recipes fitxy and fitexy ?
Dear Folks, We need to fit the model y~x assuming there are random errors in both x and y. Numerical Recipes (Press et al.) have two useful functions, fitxy and fitexy, which handle cases of unspecified and specified errors respectively. Are there equivalent functions in base R or a installable package? Alternatively, has anyone written a wrapper to provide an interface to a
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
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
2002 Aug 05
4
Extracting Header From Table
I read a tab-delimited ASCII table, with a header, into R thus. Table <- read.table(FileName, header=TRUE, sep="\t"); Is there any way I can now retrieve the header. The header information is obviously there since I see it, along with the values of the first row of data, when I type Table[1, ] However, I cannot find an R function to retrieve the header information from
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
2010 Sep 21
3
bivariate vector numerical integration with infinite range
Dear list, I'm seeking some advice regarding a particular numerical integration I wish to perform. The integrand f takes two real arguments x and y and returns a vector of constant length N. The range of integration is [0, infty) for x and [a,b] (finite) for y. Since the integrand has values in R^N I did not find a built-in function to perform numerical quadrature, so I wrote my own after
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
2002 Dec 03
1
Is there plan to make R multithread?
Hello R Pioneers, I sometimes use R on a dual CPU PC runing Linux and find that only 1 CPU is used even when no other user/process competes for resources. Can we make R uses both CPUs to have the job done sooner? I know this is probably asking too much for something that is free. Has anyone else thought about it? Thanks. Ming Chow
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 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