similar to: Organizing the help files in a package

Displaying 20 results from an estimated 1000 matches similar to: "Organizing the help files in a package"

2002 Jul 30
1
Unable to install new package using local zip file (PR#1854)
Full_Name: Jagadish Rangrej Version: 1.5.1 OS: windows 2000 Submission from: (NULL) (192.139.231.5) I have produced one package using >Rcmd install pubbias (pubbias is the name of pkg), to move it to any new computer, I take the zip file of, "Program file\R\rw1051\library\pubbias" and install it using menu option in R for installing from local zip files. It gives the error :
2002 Dec 06
2
Unequal sized three plots in a window
Dear all: I want to divide the graphing window in to three plots such that two plots are on the top and one at the bottom. The upper two plots are of equal sizes that cover 50% of the Window, third plot spans the lower half portion of the Window completely. How do I do that, I tried layout and other options but they seem to have the matrix options which does not solve my problem. Any help or
2002 May 24
1
How to increases the Memory size for R in Batch mode
hello everybody!! I am using "Rcmd BATCH" command to run simulation on R in batch mode on win98 machine. Would it be possible to increase the memory size of R; if so how and what is the default memory size used, and what is the limit to which I can increase the memory size. My machine configurations: 512MB Ram with Intel P-III processor working at 1GHz speed. Win98 and R 1.4.1
2002 Mar 08
1
passing the reference in R functions
Hello! is it possible to send the vector in the r functions without making the function frame to actually have the replicate copy of it ? -Jag Jagadish Rangrej ( Statistician ) CHEO Research Institute, Ottawa, ON 613-7383951 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send
2002 Feb 25
0
RE: R crashes when .Fortran embeded function, is called twice in R --> solved
Hi all, Thanks to everybody who thought on this problem, there was slight mistake in the fortran code which lead to NULL pointer allocation error, but still it surprises me that why it does not crib in the first run. The compiler I am using is absoft fortran compiler. Cheers, -Jag Jagadish Rangrej ( Statistician ) CHEO Research Institute, Ottawa, ON 613-7383951 > -----Original Message-----
2004 Oct 15
2
add-on package/windows installation probLem
Hi, I have tried to download the bootstrap.tar.gz from the website below: http://cran.r-project.org/src/contrib/Old/0.50/INDEX.html I have extracted the folder to a zip file...and then use the load packages from local zip files. I use R2.0.0.0 and windows NT, i get the error: 1: error -1 in extracting from zip file 2: cannot open file `bootstrap/DESCRIPTION' ALso, when i use R CMD
2010 Sep 15
3
How to use PV on HVM
Hi, I am trying to setup Xen to use "PV on HVM". For this, I did the following. (1) I followed the tutorial at http://wiki.xensource.com/xenwiki/Fedora13Xen4Tutorial to setup Xen4.0.1 on Fedora13. I am able to run virt-manager and create a Fedora 13 guest. (2) I followed the tutorial at http://bderzhavets.wordpress.com/2010/05/27/pv-on-hvm-at-xen-4-0-on-top-of-fedora-13/to use PV on
2010 Apr 08
1
[LLVMdev] doubt regarding gvnpre
Hello, I am doing a course project of "Adding the strength reduction in existing GVNPRE implementation". But the problem which I am facing is that for many sample programs I tried, the "gvnpre" pass of opt doesn't perform PRE and it leaves the code as it is. This is my sample program and it should do PRE on it but opt is not performing it. Kindly help me out in this part.
2006 Mar 16
1
rsync: connection unexpectedly closed.
Dear Mr. Samir, We are using RedHat 7.2. We are getting same error as reported by you some time back (given below). Did you get any solution? Regards C Jagadish Your original message: ====================== I m running RedHat 9 Linux and I have the rsync-2.5.5-4 package. When I m trying to the following: [root at myhost_name root]# /usr/bin/rsync -va 10.0.8.190:usr/local/src
2006 Jan 23
6
undefined method assert_valid_keys
Guys, I''m having trouble understanding why I am getting the following error message. I''ve double checked my code and everything looks good. Can anyone share any insight into the message? Thanks! John ------------------------------------------------------------------------------ undefined method `assert_valid_keys'' for :hangars:Symbol (NoMethodError)
2002 Apr 01
3
svd, La.svd (PR#1427)
(I tried to send this earlier, but it doesnt seem to have come through, due to problems on my system) Hola: Both cannot be correct: > m <- matrix(1:4, 2) > svd(m) $d [1] 5.4649857 0.3659662 $u [,1] [,2] [1,] -0.5760484 -0.8174156 [2,] -0.8174156 0.5760484 $v [,1] [,2] [1,] -0.4045536 0.9145143 [2,] -0.9145143 -0.4045536 > La.svd(m) $d [1]
2002 Apr 16
2
multiple plot devices
Hello, sorry but i found no way or help to work with multiple graph devices (Rdocs,SearchIndex). When is use the function only the graphic device of the last variable is open. How is it possible to let the several plot-device open or save this in a file with different names ? (win 2000 - R1.4.1) thanks for advance & regards,Christian normal <- function(x) { par(mfrow=c(2,2))
2002 Mar 14
1
Row-binding factor variables looses the ordered attribute.
Hi everyone, I've just notice a problem with ordered factor variables. It appears that row-binding two ordered factors together looses the ordered attribute. The following example happens both in R1.3.1 and R1.4.1 (on RedHat 7.2): > y <- ordered(gl(3,6),labels=1:3) > y [1] 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 3 3 Levels: 1 < 2 < 3 > data <-
2002 Apr 01
1
An introduction to R (PR#1426)
(I sent this earlier, but it seems not to have come through, due to problems witkh my system) The following command from appendix A, "a sample session", isnt correct: contour(x, y, fa, nint=15) when used R protests: Warning message: parameter "nint" couldn't be set in high-level plot() function it should probably be nlevels, as used a few lines before. This is
2002 Mar 29
1
memory error with rpart()
Dear all, I have a 100 iteration loop. Within each loop, there are some calls to rpart() like: ctl <- rpart.control(maxcompete=0, maxsurrogate=0, maxdepth=10) temp <- rpart(y~., x, w=wt, method="class", parms=list(split="gini"), control=ctl) res <- log(predict.rpart(temp, type="prob")) newres <- log(predict.rpart(temp, newdata=newx,
2002 Apr 25
1
Rdbi package and PgSQL
I can use the Rdbi package to connect to a PostGreSQL server fine but when I use the dbDisconnect(), I get a segmentation error and it throws me out of R. I'm using RH7.2, R1.4.1, Rdbi 0.1-2, and Rdbi.PgSQL 0.1-2. Anyone else seen anything like this and have an possible answer? Andrew Schuh -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing
2010 Apr 11
0
[LLVMdev] doubt...sample program not working
Hello, I am doing a course project of "Adding the strength reduction in existing GVNPRE implementation". I know GVNPRE is not maintained and has been removed from trunk. But still can I get a single sample program for which it works correctly? Because for all the programs which I have tried it does not perform PRE.One such program is attached with this mail. It is important for my
2012 Apr 04
1
cross ivr is comming in my ivr system
hi all, i have gradwell DID i am using it for inbound dialing with IVR when ever customer call my DID some times other IVR is cumming on my IVR that IVR is not even related with my server .can u please help me on this -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Feb 20
1
What is your system for WorkFlow and Source Code Organizing in R ?
Hello dear R users, Recently there has been several fascinating threads on the website stackoverflow <http://stackoverflow.com> regarding the subject of R WorkFlow best practices: - What best practices do you use for programming in R?<http://stackoverflow.com/questions/2258092/what-best-practices-do-you-use-for-programming-in-r> - Workflow for statistical analysis and report
2002 May 06
1
Did something big change in 1.5?
I can't remember the programming term -- ``implicit declaration''? Has this changed between 1.4.1 and 1.5? This code used to run as is: for (i in 1:length(diff.time)) { if (diff.time[i] < 16) { total.time[i] <- ifelse(i==1, 7.5, total.time[i-1]) + diff.time[i] last.time[i] <- 0 } else { total.time[i] <- 7.5 last.time[i-1] <- 1 } } Now in 1.5 I