Displaying 20 results from an estimated 10000 matches similar to: "memory management in R"
2004 May 13
3
storage of lm objects in a database
Hello,
I'd like to use DBI to store lm objects in a database. I've to analyze many of linear models and I cannot store them in a single R-session (not enough memory). Also it'd be nice to have them persistent.
Maybe it's possible to create a compact binary representation of the object (the kind of format created created by "save"), so that one doesn't need to write
2000 Feb 22
2
reproducing Box-Muller numbers
There seems to be a minor problem with reproducing numbers from rnorm with
Box-Muller. The pattern suggests it might have something to do with the value
that gets dropped when an odd number of numbers is requested. (Details below.)
Also, could "user-supplied" be added as an option for normal.kind in RNGkind.
I'm sure the Box-Muller in R is better than my own attempt, but I would
2010 Sep 27
1
[LLVMdev] [PATCH] Support for ARM Run-Time ABI (FP and Integer helper functions)
On Mon, Sep 27, 2010 at 5:02 PM, Evzen Muller <evzen.muller at arm.com> wrote:
>
> To make it easier to review & commit I have split and cleaned-up our
> original
> "Support for ARM Run-Time ABI" patch, this part adds support for calls which
>
> can be mapped using setLibcallName.
As noted in the earlier thread on this, I'm pretty sure that we need
to
2004 Jun 28
1
unbalanced design for anova with low number of replicates
Hello,
I'm wondering what's the best way to analyse an unbalanced design with a low number of replicates. I'm not a statistician, and I'm looking for some direction for this problem.
I've a 2 factor design:
Factor batch with 3 levels, and factor dose within each batch with 5 levels. Dose level 1 in batch one is replicated 4 times, level 3 is replicated only 2 times. all
2012 Jun 12
1
What is glustershd ?
Hi Gluster users !
In the process of upgrading a Gluster 3.0.0 platform to 3.3.0, I'm trying
to understand how GlusterFS 3.3.0 is working.
I can't find any documentation which explains what's the role of glustershd.
The only thing I (think I) understand is that the glustershd-server.vol is
only generated for replicated volumes. It contains a cluster/replicate
volume which replicate
2013 Jan 02
2
Read many cvs files
Hello R helpers,
I would like to automate this code for many files of the same type. But I
don´t know how to make it. In particular, i don´t know how to read many
files each one as an r object with the name of the file. Then a for loop
would be sufficient, right?
Many thanks and a happy new year.
Dominic
datos <- read.table('global2001.csv',head=T,sep=';',stringsAsFactors=F)
2010 Jan 10
2
[LLVMdev] Using a function from another module
On Sun, Jan 10, 2010 at 8:58 AM, Michael Muller <mmuller at enduden.com> wrote:
>
> Michael Muller wrote:
>>
>> Hi all,
>>
>> I'm trying to use a function defined in one LLVM module from another module
>> (in the JIT) but for some reason it's not working out. My sequence of
>> activity is roughly like this:
>>
>> 1) Create
2001 Aug 08
2
with-tcp-wrappers enable ?
Hello,
I try to compile openssh-2.9p1 on a SGI Origin 200 computer under IRIX
6.5 with the option --with-tcp-wrappers enable. I have also compiled
tcp-wrapper and have installed the library libwrap.a in /usr/lib and the
file tcpd.h in /usr/include.
When i run the ./configure script i have a error. The script asked me
that the libwrap is missing.
How can i resolve this ?
Thanks.
Bests Regards
2001 Aug 09
2
Problem with the --with-tcp-warppers option enable
Hello,
I have compiled with succes openssh on a SGI Origin 200 computer under
Irix 6.5 with the option --with-tcp-wrappers enable. When i try to
connect with ssh, i have the following message :
ssh_exchange_identification: Connection closed by remote host.
My files hosts.allow and hosts.deny are in /etc and look like this :
hosts.allow
ALL: LOCAL host1 host2 ect
hosts.deny
ALL: ALL:
2018 Jul 25
2
Search requests should ignore accents (C++ API)?
Hi,
I am using libxapian in a C++ project (hence I am using Xapian's C++ API)
and some user has requested that search requests should ignore accents.
E.g. when the user searches for "Herr Müller" he expects that "Herr Muller"
is also a search hit.
Is this possible in Xapian?
Do you have any links to the documentation of that feature?
Thanks for your help,
Kim
2004 Apr 01
4
gray background on jpegs using dev.print()
When I try writing the current device to a jpeg file I keep getting a gray background
for the jpeg images using dev.print.
I have tried using the option bg="white" and bg="#FFFFFF"
but neither seem to have any effect.
If instead of writing to a screen device I open a jpeg device I can get any background color
I want. This works, but I prefer to write to the screen and then
2007 Jun 30
3
Problem installing RGTK2 on ubuntu 7.04
Hello, all
I am trying to install RGTK2 on my Ubuntu 7.04 system. The installation
fails with a message that RGtk2 requires GTK 2.8. As far as I can tell I
have GTK+ 2.10.11 installed. Can anyone suggest a way to proceed?
Thanks very much.
Here is the failed installation:
> install.packages("RGtk2")
Warning in install.packages("RGtk2") : argument 'lib' is
2012 Sep 12
7
multinomial MCMCglmm
Dear all,
I would like to add mixed effects in a multinomial model and I am trying
to use MCMCglmm for that.
The main problem I face: my data set consits of a trapping data set,
where the observation at eah trap (1 or 0 for each species) have been
aggregated per traplines. Therefore we have a proportion of
presence/absence for each species per trapline.
ex:
ID_line mesh habitat Apsy Mygl
2004 May 14
1
help with memory greedy storage
Hello,
I've a problem with a self written routine taking a lot of memory (>1.2Gb). Maybe you can suggest some enhancements, I'm pretty sure that my implementation is not optimal ...
I'm creating many linear models and store coefficients, anova p-values ... all I need in different lists which are then finally returned in a list (list of lists).
The input is a matrix with 84 rows
2012 Nov 15
1
[LLVMdev] ValueMapper question: no type mapping for GlobalValue?
Hi Michael, did anything ever happen with this?
Ciao, Duncan.
On 17/01/12 14:45, Michael Muller wrote:
>
> So it looks like the verifier doesn't catch this condition - I think it
> should. The attached program reproduces the problem - verification succeeds,
> but the linker fails with a type assertion.
>
> BTW, if no one has the bandwidth to work on this I'm willing to
2010 Jan 10
0
[LLVMdev] Using a function from another module
Michael Muller wrote:
>
> Hi all,
>
> I'm trying to use a function defined in one LLVM module from another module
> (in the JIT) but for some reason it's not working out. My sequence of
> activity is roughly like this:
>
> 1) Create moduleA
> 2) Create moduleB with "func()"
> 3) execEng = ExecutionEngine::create(
> new
2018 Mar 05
1
Random Seed Location
On Sun, Mar 4, 2018 at 3:23 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
> On 04/03/2018 5:54 PM, Henrik Bengtsson wrote:
>>
>> The following helps identify when .GlobalEnv$.Random.seed has changed:
>>
>> rng_tracker <- local({
>> last <- .GlobalEnv$.Random.seed
>> function(...) {
>> curr <- .GlobalEnv$.Random.seed
2008 Jan 17
1
Requirements for btrfs
Hi,
i've just tested btrfs-0.10.
when i copyed my portage on btrfs volume, a have such
bug:
------------[ cut here ]------------
kernel BUG at
/home/muller/btrfs/btrfs-0.10/extent-tree.c:1651!
invalid opcode: 0000 [#1] PREEMPT SMP
Modules linked in: btrfs xt_mac xt_limit xt_multiport
ipt_owner ipaq usbserial nvidia(P)
Pid: 23376, comm: btrfs/0 Tainted: P
(2.6.24-rc8-fly #1)
EIP:
2005 Nov 17
2
R questions
Dear Sir/Madam,
I am a beginner in R. Here is my questions.
1. Can you give me one test for randomness (a name and descriptive
paragraph is sufficient).
2. I have learned a uniform random number generator [e.g. not the
algorithms: i)Wichmann-Hill, ii) Marsaglia-Multicarry, iii) Super-Duper
(Marsaglia), iv) Mersenne-Twister, v) TAOCP-1997 (Knuth), or vi) TAOCP-2002
(Knuth)] . Is there any other
2017 Jun 02
2
SAMBA AD and Google Cloud Directory Sync
I've successfully setup SAMBA AD following the guide at jimshaver.net and
have been able to create all of my users without a problem. When I launch
GCDS and attempt to test the LDAP connection via LDAP+SSL via port 636 I
get the following error:
*[2017-06-02 13:32:34,537] [SwingWorker-pool-1-thread-5] [DEBUG]
[plugin.ldap.AbstractLdapHandler] javax.naming.AuthenticationException:
[LDAP: error