Displaying 20 results from an estimated 1000 matches similar to: "Memory problem:Failing to increase dynamic memory"
2003 Nov 14
2
installing the next version of R while in an older version
Hello -
I am a fairly new user of R. I currently have R1.7 installed. I tried to
install the KernSmooth package but a message tells me I need R1.8. Is there
a way to update to R1.8 while in R1.7 in the same manner that I can use
"update.packages", or do I have to install R1.8 in a separate directory and
re-install the many packages I have already installed in R1.7? Thanks in
advance for
2003 Oct 15
3
Design and Hmisc
I'm looking for design and hmisc version 2.0 for R 1.8 for windows. I've
found design 2.0 in the downloads for R1.7 but not hmisc.
I've also checked Dr. Harrell's site and it only goes to 1.6 for windows.
Any thoughts?
Shawn Way
2003 Apr 20
2
Win binaries
Hi,
I m trying to down load the binary for Win of R1.7 (called R 0.8... ?) from
few mirrors but all are down... Is it normal ?
Regards
Philippe
[[alternate HTML version deleted]]
2003 Jun 03
2
winMenuAdd misbehaving?
Microsoft Windows R users,
I am operating Windows 2000 (build2195) with R1.7. It may be pertinent that
I am using a dual head screen with the initial RGui filing the entire area
of both screens.
When starting R I use the .First() function to add menu items to the RGui
interface using winMenuAdd() and winMenuAddItem(). The menus do not display
until the RGui window is physically manipulated in
2003 May 06
4
Questons about R capabilities
Hello,
1) I am interested in performing a limited-dependent variable linear regression. By this I mean a classical linear regression, but for the case where the values of the dependent variable cannot vary from -infinity to +infinity, but are truncated and so are between two finite limits L1 and L2. Does R1.7 have this capability? If so what is (are) the relevant command(s)?
2) I am also
2005 Apr 06
1
makeActiveBinding warning
A while ago Luke Tierney remarked that the warning associated with
'makeActiveBinding'-- "saved workspaces with active bindings may not
work properly when loaded into older versions of R"-- should probably be
removed in R-devel. It's still cropping up *sporadically* with R-alpha
of 3/4/2004, but not every time I call 'makeActiveBinding'.
So, two questions:
(i) is it
2002 Jun 13
1
[2.PATCH]: Eliminate typo in bsd-misc.*
Hi,
the following patch eliminates a typo in bsd-misc.* which disallows
building for Cygwin.
Corinna
Index: openbsd-compat/bsd-misc.c
===================================================================
RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-misc.c,v
retrieving revision 1.7
diff -u -p -r1.7 bsd-misc.c
--- openbsd-compat/bsd-misc.c 12 Jun 2002 16:57:15 -0000 1.7
+++
2004 Nov 11
1
"<<-" assignment no long work in class methods
Hi-
I used to use "<<-" to do assignment inside a class method, and
just found that now it is broken in R 2.0. For example, the
following code
-----------------------------------------------------------------------
setClass( "myclass", representation(x="numeric") )
setGeneric("incrXByOne", function(obj) standardGeneric("incrXByOne"))
2003 Oct 06
1
Re: Use of the Foreign package to import Stata files
Long ago (Sat, 2 Nov 2002), Bill Hart <w.hart at sbcglobal.net> wrote:
> An R newbie here. I am using R 1.6 currently and have
> (successfully, I think) installed the Foreign package.
> Tried to import a data file created with Stata 7.0
> SE. Had minor problems with syntax then R decided
> that my file was not really a Stata file. It rejected
> the file saying
2009 Aug 27
1
[patch] ssh-copy-id: improve error reporting with -i and documentation
The "ssh-copy-id" program requires that the argument to -i end in
.pub, by appending that extension itself if it is missing. But
if the file with .pub appended does not exist, ssh-copy-id
reports the misleading message "ERROR: No identities found".
This patch improves the error message by mentioning the name of
the actual file that does not exist.
Also, document that the
2003 Oct 29
1
R installation problems on Windows XP (PR#4842)
Full_Name: Yongchao Ge
Version: 1.8
OS: Windows XP profesional
Submission from: (NULL) (146.203.2.152)
The R installation is fine on Windows XP, but when I started to open the R
program, then it pops out this message:
"R for Windows GUI front-end has encountered a problem and needs to close. We
are sorry for the inconvenience....."
The error signature is:
AppName: rgui.exe AppVer:
2018 Aug 20
6
Call for testing: OpenSSH 7.8
Hi,
Michael Felt wrote on Mon, Aug 20, 2018 at 05:00:17PM +0200:
> ./nl_langinfo
> setlocale -> "C"
> nl_langinfo -> "ISO8859-1"
Thanks, that is helpful.
So i think i was wrong and Damien was right. This means that
OpenSSH returns truncated messages when non-ASCII bytes occur
in them, even when the user requests LC_CTYPE=POSIX.
That's not good.
While
2004 Sep 10
2
1.0 candidate checked in
On Sun, Jul 22, 2001 at 12:28:52AM -0700, Josh Coalson wrote:
> 2. Applied Matt's last cleanup patch of 8 files. I did not apply the patch
> to src/test_unit/main.c since it looks wrong. main.c is supposed to include
> the local bitbuffer.h, not src/libFLAC/private/bitbuffer.h; I think the
> current version is correct.
Ah, I missed that there was a local bitbuffer.h. In that
2004 Mar 09
3
update forgets about offset() (PR#6656)
In R1.7 and above (including R 1.9 alpha), 'update.formula' forgets to copy any offset(...) term in the original '.' formula:
test> df <- data.frame( x=1:4, y=sqrt( 1:4), z=c(2:4,1))
test> fit1 <- glm( y~offset(x)+z, data=df)
test> fit1$call
glm(formula = y ~ offset(x) + z, data = df)
test> fit1u <- update( fit1, ~.)
test> fit1u$call
glm(formula = y ~ z,
2003 Jun 10
5
bug in glm()? (PR#3223)
Full_Name: Bonnie
Version: 1.6.1
OS: Windows
Submission from: (NULL) (160.129.25.106)
glm() seems to converge, even when it shouldn't. I am trying to fit a model
where $converge=FALSE and I am fitting models that do not converge in SAS,
but they seem to converge in R ...
Thank you.
2004 Nov 10
3
[LLVMdev] LLVM and the "static initialization order fiasco"
Hello, I'm getting bitten by the "static initialization order fiasco"
http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12
The static data causing the problem is the static
TypeMap<PointerValType, PointerType> PointerTypes; and other typemaps.
The background is that in our product we are using an overridden new
operator to track memory allocations. This system is
2005 Feb 05
2
Std Err on Concentration measures
Hi,
I'm using the ineq package to calculate some concentration measures (Gini, Herfindal, ...) and I was wondering if there's around also a function to calculate standard error on these measures. If not, is anybody aware of where I can find a reference on this point?
Thanks.
--
========================================================
Angelo Secchi PGP Key ID:EA280337
2003 Jun 13
1
Lattice levelplots and (partial) failure on some devices ----Long
Dear Community,
(win XP home, sp1; R1.7 -- patched version, binary download, version of
lattice obtained with patched version; the following applies to 1.6.2 as
well.)
The following message was originally composed to seek help. However I
have 'hacked' a solution to the following behavior, but none the less
someone might find this interesting.
To reproduce my 'problem' you
2014 Jul 14
14
[Bug 81363] New: Black screen after UDEV is intialized
https://bugs.freedesktop.org/show_bug.cgi?id=81363
Priority: medium
Bug ID: 81363
Assignee: nouveau at lists.freedesktop.org
Summary: Black screen after UDEV is intialized
QA Contact: xorg-team at lists.x.org
Severity: major
Classification: Unclassified
OS: Linux (All)
Reporter: jrsx13 at gmail.com
2008 May 01
4
Boot into dom0 "Failed to parse block device name"
I am trying to install the binary version of xen 3.1.
When I boot, after some console output, I get the following:
:: Loading Initramfs
scsi_mod: no version for "struct_module" found: kernel tainted.
SCSI subsystem intialized
:: Running Hook [udev]
:: Loading udev...input: AT Translated Set 2 keyboard as /class/inpt/input0
done.
:: Running Hook [keymap]
:: Loading keymap...Cannot find