Displaying 3 results from an estimated 3 matches for "fuyaonv".
2007 Jan 19
8
kate editor for R
Like kile for LaTeX, Linux/KDE's kate editor is an excellent editor for
R, with easy code submission to a running R process. Syntax
highlighting is good. I have not been able to figure out two things:
- how to automatically reformat a line or region of text using good
indentation rules (Emacs/ESS make this so easy by just hitting Tab while
the cursor is in a line, or highlighting a
2006 Mar 13
2
S-Plus Essentials April 24th-27th 2006
S-PLUS ESSENTIALS
24-27th April 2006
Venue : Insightful UK Office, Network House, Basing View, Basingstoke, Hants
RG21 4HG
We are pleased to be taking registrations for the next scheduled S-PLUS
Essentials course being held in Basingstoke 24-27th April 2006. If you are
unfamiliar with S-PLUS or have been meaning to upgrade your S-PLUS skills,
this is the course for you. This course will be
2005 Nov 03
1
multidimensional integration not over a multidimensionalrectangle
Hi,
anyone knows about any functions in R can get multidimensional integration
not over a multidimensional rectangle (not adapt).
For example, I tried the following function f(x,n)=x^n/n!
phi.fun<-function(x,n)
{ if (n==1) {
x
}else{
integrate(phi.fun, lower=0, upper=x, n=n-1)$value
}
}
I could get f(4,2)=4^2/2!=8, but failed in f(4,3)=4^3/3! Thanks
Best,
Lynette