Displaying 20 results from an estimated 7000 matches similar to: "Hard memory limit of 16GB under Windows?"
2020 Apr 07
4
Hard memory limit of 16GB under Windows?
Hi Tomas,
Many thanks for your answer.
Here is a copy of a fresh session under RStudio, and after a copy under
Rgui.
Strangely enough the result of memory.limit() is not the same. Without
your question I would not have looked to RGui, being used to work with
RStudio.
The value under RGui sounds to correspond to the total RAM of the
computer. It makes me noticing that the value is in MB.
2020 Apr 07
1
Hard memory limit of 16GB under Windows?
Agreed. I don't see any evidence of a "hard limit" here. It just looks
like the code you're running has exhausted the memory of your machine.
It doesn't require creating a lot of 12.6 Gb vectors to do that, even on
a machine with a lot of memory ;-)
H.
On 4/7/20 08:05, Thierry Onkelinx via R-devel wrote:
> Dear Samuel,
>
> The most important information from
2020 Apr 07
0
Hard memory limit of 16GB under Windows?
Dear Samuel,
The most important information from your mail was the actual error message:
"cannot allocate vector of size 12.6 Gb".
You'll need to know what code generated this error message. And then figure
out if the code does something sensible. Often that is not the case when
you get a similar error message.
Best regards,
ir. Thierry Onkelinx
Statisticus / Statistician
2020 Apr 07
0
Hard memory limit of 16GB under Windows?
Hi Samuel,
please also have a look at ?memory.limit. You can set this limit at R
startup. It is in megabytes. Maybe R Studio sets it at runtime.
Best
Tomas
On 4/7/20 3:57 PM, Samuel Granjeaud IR/Inserm wrote:
> Hi Tomas,
>
> Many thanks for your answer.
>
> Here is a copy of a fresh session under RStudio, and after a copy
> under Rgui.
> Strangely enough the result of
2020 Feb 29
3
tcl problem with R-3.6.3?
I knew I could work around. But this shouldn't happen.
And yes. Same problem with your example.
blurfle$ R --vanilla
R version 3.6.3 (2020-02-29) -- "Holding the Windsock"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain
2020 Feb 29
2
tcl problem with R-3.6.3?
Just built 3.6.3 from source and tcl doesn't work. Worked fine with the
same laptop in 3.6.2. Here's the exact error.
blurfle$ R --vanilla
R version 3.6.3 (2020-02-29) -- "Holding the Windsock"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to
2020 Oct 22
2
vanilla session in R Gui or RStudio
[env: Windows, R 3.6.6]
When I start R from the R Gui icon or from RStudio, I get a large number of packages loaded via a namespace. Not entirely clear where these come from.
As a result, I often run into problems updating packages because something is already loaded. How can start a new gui session with minimal packages loaded?
> sessionInfo()
R version 3.6.3 (2020-02-29)
Platform:
2020 Oct 23
3
vanilla session in R Gui or RStudio
As Jeff says, it might be that you have a ~/.Rprofile file with
instructions to load packages when R starts. It could also be that
you have a .RData file, which is saved if you answer yes to:
> Save workspace image? [y/n/c]: y
when you quit R. If this file exists, then R loads it and all the
objects you had when you saved it. If there are objects associated
with packages, then that will
2020 Oct 22
0
vanilla session in R Gui or RStudio
Have you looked into your .Rprofile file? Loading packages is not something R normally does without your telling it to do so, but many people forget that they have done so.
On October 22, 2020 3:47:04 PM PDT, Michael L Friendly <friendly at yorku.ca> wrote:
>[env: Windows, R 3.6.6]
>
>When I start R from the R Gui icon or from RStudio, I get a large
>number of packages loaded
2007 Oct 06
4
R-2.6.0 and RWinEdt
Dear Listers,
I have just installed R-2.6.0 and the RWinEdt package 1.7-6 under
Windows XP.
The R-WinEdt menu well appears at launching (the command
library(RWinEdt) is in .Rprofile), but WinEdt is NOT started
automatically (this was not the case in the earlier versions of R). When
WinEdt is started by hand (eg double-click on a RWinEdt alias after R
launching), syntax highlighting and
2018 Feb 15
3
Identify does sort the locations
Hi,
Using identify function, I think I should get the index of the selected
points in the order I clicked them. This is what I read in the help. But
I feel they are ordered. Please let me know what I missed.
In the following example, I clicked on the points labelled 7, 5 and 1,
but I get 1, 5, 7 as output.
> set.seed(0); x = rnorm(10); y = rnorm(10); plot(x,y); text(x, y,
> seq(x));
2020 Feb 29
3
R 3.6.3 is released
The build system rolled up R-3.6.3.tar.gz (codename "Holding the Windsock") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.3.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter Dalgaard
2020 Feb 29
3
R 3.6.3 is released
The build system rolled up R-3.6.3.tar.gz (codename "Holding the Windsock") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.3.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter Dalgaard
2020 Feb 29
3
R 3.6.3 is released
The build system rolled up R-3.6.3.tar.gz (codename "Holding the Windsock") this morning.
The list below details the changes in this release.
You can get the source code from
http://cran.r-project.org/src/base/R-3/R-3.6.3.tar.gz
or wait for it to be mirrored at a CRAN site nearer to you.
Binaries for various platforms will appear in due course.
For the R Core Team,
Peter Dalgaard
2020 Oct 23
0
vanilla session in R Gui or RStudio
Can you be more specific about what conditions cause R to automatically load a package when a .RData file is loaded? My experience has actually been the opposite.
On October 22, 2020 6:13:11 PM PDT, Henrik Bengtsson <henrik.bengtsson at gmail.com> wrote:
>As Jeff says, it might be that you have a ~/.Rprofile file with
>instructions to load packages when R starts. It could also be
2020 Apr 21
2
R not running under lldb? (osx)
I see:
Tims-Air:~ tkeitt$ R --version
R version 3.6.3 (2020-02-29) -- "Holding the Windsock"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information
2020 Mar 29
1
[BULK] Re: status of Java & rJava?
Hi, Simon et al.:
????? My attempts to install rJava 0.9-12 from source failed under both
macOS 10.15.4 and Windows 10.
????? Below please find what I got just now trying "update.packages()"
and selecting "install from sources" on both computers followed by
"sessionInfo()" in each case.
????? Thanks for your help.
????? Spencer Graves
2007 Nov 28
2
alternatives to traditional least squares method in linear regression ?
Dear list,
I have encountered a special case for searching a linear regression
where I'm not satisfied with the results obtained using the traditional
least squares method (sometimes called OLS) for estimating/optimizing
the residues to the regression line (see code below). Basically, a
group of my x-y data are a bit off the diagonal line (in my case the
diagonal represents the ideal or
2007 Oct 04
1
Problem with .libPaths & Rterm.exe (under Vista)
Dear list,
I?m using R embedded in another program (coded in tcl/tk) under Windows
Vista. In this context I don?t launch Rgui.exe but rather Rtem.exe.
Now I have a problem finding libraries not specifically installed as
administrator (and which are not in the path ?program files? but in
Contacts\Documents of the current user). To be precise, the user
launching my tcl/tk program can?t find
2008 Sep 19
1
readRegistry function (PR#12937)
Full_Name: Zivan Karaman
Version: 2.7.2
OS: Windows XP
Submission from: (NULL) (195.6.68.214)
I'm puzzled by the readRegistry function.
Shouldn't the "hive" argument be something like
c("HLM", "HCR", "HCU", "HU", "HCC", "HPD") rather than
c("HLM", "HCR", "HCU", "HU",