search for: r_project

Displaying 3 results from an estimated 3 matches for "r_project".

Did you mean: __project
2004 Oct 29
1
Interfacing R_project from program languages
Hello, I need an information: is it possible to call the statistical R_project funtions from a C or Fortran application? In the r_exts.pdf manual I found that is possible to interface R-project with compiled C/Fortran routines, but I didn't found anything about the opposite situation. Thanks in advance Giovanni Colombo CESI spa - Funzione Informatica e Automazione Via Ru...
2008 Dec 31
3
Paste in a FOR loop
Hi All, I've been having a little trouble using R2HTML and a loop, but can't figure out where the problem lies, any hints gratefully received. My code at the minute, (Which does work) is in the following: library(R2HTML) HTMLStart(outdir = file.path("C://Example_work","R_projects","Dynamic_creative"),filename = "RMDC_mockup",Title="Mock up for RMDC") summary(z.out.1) summary(s.out.1) hist(s.out.1$qi$ev) HTMLplot() . . . summary(z.out.3) summary(s.out.3) hist(s.out.3$qi$ev) HTMLplot() HTMLStop() This seemed a rather long winded way of do...
2005 Jun 07
9
how to define functions in such a situation
hi R folks, I need read a file from hardisk or www web. Then I need to define some new functions according to the contents of the read file. For example, i need write a package name "mypackage" like this: >library(mypackage) >read(some_file_on_web) #to see its content, suppose it contains: eat.drink.sleep then 3 new functions need to be created and usable. the problem is, how