similar to: Bug in help(). (PR#10859)

Displaying 20 results from an estimated 500 matches similar to: "Bug in help(). (PR#10859)"

2008 Dec 10
1
First call to constructor fails (R.oo)
Hi all, I'm trying to do some object-oriented programming in R using the R.oo package. Right from the start I encountered a strange (at least for me) problem. I define a new class/constructor based on the R.oo documentation. However the first attempt to create an object fails: === Code: === library(R.oo); setConstructorS3("MyClass",function(param) { print(param);
2009 Nov 24
1
The "lib" argument in install.packages().
I was flummoxed for a long time by errors generated when I did something like install.packages(foo,lib="Rlib") where ``Rlib'' is my personalized directory of R packages, which lives in my home directory (from which I started R before issuing the foregoing install.packages() call. Recently someone (I forget who, but thanks very much to whomever it was) pointed out that I
2006 Jul 18
2
R-2.3.1.tar.gz does not contain VR bundle (PR#9084)
Full_Name: Jarno Tuimala Version: 2.3.1 OS: Solaris / Linux Submission from: (NULL) (193.166.2.98) Today I downloaded the latest source code release R-2.3.1.tar.gz, and it seems not to contain the VR bundle. After running ./configure I get the following error message: checking for recommended packages... ./src/library/Recommended/VR_*.tar.gz: No such file or directory no configure: error: Some
2004 Sep 24
5
using tcltk in R under ESS/XEmacs on Windows
Sorry for the cross-post. Not sure where the problem is... A while back I posted an R function to R-help: cd <- function (dir = tclvalue(tkchooseDirectory()), saveOld = FALSE, loadNew = TRUE) { stopifnot(require(tcltk)) if (saveOld) save.image(compress = TRUE) setwd(dir) rm(list = ls(all = TRUE, envir = .GlobalEnv), envir = .GlobalEnv) if (loadNew &&
2008 Sep 10
2
RSiteSearch for words ``as one entity''.
I tried to search for a string of words ``as one entity'' following the example in the help file: > RSiteSearch("{logistic regression}") and got the error message: 2008-09-11 08:55:41.356 open[823] No such file: /Users/rturner/http:/ search.r-project.org/cgi-bin/namazu.cgi?query={logistic+regression}
2005 Jun 30
6
McAfee 8 incompatible with Samba
I've parsed a whole year's worth of postings in this group and didn't find any previous reference to the problem. Since I've updated McAfee to version 8 many applications which open file chooser dialogs report "Access denied" when trying to open a Samba share, including the users's own home directory. At installation one can choose to exclude some apps from the
2005 Jan 25
2
Bug in Windows File Selector (PR#7561)
Full_Name: Paul Vet Version: 2.0.1 OS: Windows 2000 Submission from: (NULL) (65.95.10.51) The file selector for saving plots always starts in the R program directory. It is standard for Windows programs to start the file selector in the most recently saved-in directory. Steps to reproduce: 1. > plot (x) # for some data x 2. Right click new plot, choose "Save as postscript..."
2004 Feb 10
3
how to get the GUI directory chooser on Windows?
Dear R-help, Can anyone tell me if it's possible to call up the "directory chooser" (the one you get when you click on "File" -> "Change Dir...") in Rgui from the R command line? Seems like file.choose() can't be used to choose a directory. This is in R-1.8.1 on WinXPPro. Any help much appreciated! Andy
2010 May 06
2
Problem with install.packages(); getting out-of-date version.
I recently tried to install the latest version of spatstat, from CRAN, using the install.packages() function. It proceeded to install version 1.17-5 of spatstat, although the current version is 1.18-4. Checking the CRAN mirror that I used (New Zealand) via Firefox, I found that version 1.18-4 is indeed present on CRAN. I was able to download and install version 1.18-4 ``manually''
2007 Feb 28
4
Help with XDMCP over SSH
I am trying to get XDMCP working over SSH on CentOS 4.4 from a windoze box running Cygwin/Putty I have set Enable=true in /etc/X11/gdm/gdm.conf restarted the X server, logged in with Putty and X11 forwarding enabled. I then try to start the Xserver with the following commands # gdmXnestchooser localhost or # Xnest :1 -query localhost Both commands will successfully display a X window and show
2007 Oct 09
2
Help with gamm errors
Dear All Hopefully someone out there can point out what I am missing! I have a (large, several hundred) dataset of gardens in which over two years the presence/absence of a particular bird species is noted each week. I have good reason to believe there is a difference between the two years in the weekly proportion of gardens and would like to assess this, before going on to look in more detail at
2011 Jul 21
10
centos6 not using /etc/gdm/custom.conf
In CentOS5 you were able to create a server section in /etc/gdm/custom.conf such as [server-Standard] name=Standard server command=/usr/bin/Xorg -br -audit 4 -s 15 chooser=false handled=true flexible=true priority=0 After this change, Xorg would run with the -br -audit 4 -s 15 options. Unfortunately in CentOS6 this is not the case. It completely ignores anything put into custom.conf as far
2007 Oct 17
0
Problem loading spatstat.
I upgraded to R version 2.6.0 yesterday; now I find that I can't load spatstat. I re-installed spatstat (that part seemed to work without complaint) but when I execute > library(spatstat) I get the error message Error in dyn.load(file, ...) : unable to load shared library '/Users/rturner/Rlib/spatstat/libs/ i386/spatstat.so':
2007 Feb 06
3
installing packages and windows vista
I installed R (R-2.4.1-win32.exe) on a new computer with Windows Vista and a 64 bit operating system (hp dv9000 with intel core t7200). The base R runs fine, but I can not get any of the packages to load. From within R I choose install packages choose a site then a package. I tried installing 2 packages and get similar errors (see below), I just copied and pasted lines from R. Can anyone
2005 Aug 07
11
HABTM Movable Select Box
Hi, I found it a while ago, an add-on to Rails for supporting movable select boxes, but I searched through the wiki and the mailing list and couldnt find what I was looking for. I was hoping someone might know of or remember something about the project. Thanks, Dylan.
2008 Feb 01
6
Accessing the elements of a list
Hi R, I wanted to know how do we access the elements of a list. In particular, v=list(c(1,2,3,4,5),c(1,2,33,4,5),c(1,2,333,4,5),c(1,2,3333,4,5)) I want to access all the thirds items of the elements of the list. i.e., I want to access the elements, 3,33,333,3333. This can be done through sapply as: sapply(v,function(x) x[3]) But I need to access this without using
2016 Mar 24
2
Re: [virt-tools-list] [libvirt] Usability Enhancement: Import/Export VMs GUI
On 2016-03-14 11:00, Martin Kletzander wrote: > On Fri, Mar 11, 2016 at 10:32:15PM +0000, bancfc@openmailbox.org wrote: > > Cool, now I'm wondering whether we also mention distros that are based > on leveraging libvirt on our apps page [1] > >> The initial import process with virsh commands puts off many newbies >> who >> lack the technical skills to get up
2008 Mar 07
1
Multi domU Xen Box Network Transparent Sound
I have a new development box at home that I am working on. Currently it has CentOS 5.1 + Xen 3.2 running several domUs. I am using XDMCP on the domUs and an X Chooser on dom0 for connecting to them and it works well, but now I want to be able to get sound from my domUs and I have been struggling. I can get some from network transparent sound by using ESD, but I have no way of controlling the
2008 Mar 07
1
Multi domU Xen Box Network Transparent Sound
I have a new development box at home that I am working on. Currently it has CentOS 5.1 + Xen 3.2 running several domUs. I am using XDMCP on the domUs and an X Chooser on dom0 for connecting to them and it works well, but now I want to be able to get sound from my domUs and I have been struggling. I can get some from network transparent sound by using ESD, but I have no way of controlling the
2006 Apr 28
5
Newbie: using date-picker
Finally found a nice date chooser script (http://projects.exactlyoneturtle.com/date_picker), but am a little confused how to implement it. So I put this where I need the date picker: <a id="_name_link" href="#" onclick="DatePicker.toggleDatePicker(''name'')" class="demo_link">[ choose date ]</a> <div