similar to: compiling a package on a pc - process is stalling

Displaying 20 results from an estimated 900 matches similar to: "compiling a package on a pc - process is stalling"

2005 Apr 24
0
utils::setRepositories bug when adding a local repository? (PR#7810)
Full_Name: John Gavin Version: 2.1.0 patched 18-04-05 OS: windows XP SP2 Submission from: (NULL) (139.149.1.203) Hi, I suspect that there may be a bug in utils::setRepositories(). Starting with > getOption("repos") CRAN CRANextra "@CRAN@"
2007 Jul 31
0
R Programmer - finance - London based
Hi, UBS Investment Bank are looking for a skilled R programmer, seeking a career that combines computer science, applied statistics and finance. This position requires a person with a strong background in - R programming and R package maintenance. - Software development. - Design and implementation of efficient algorithms. especially for handling large datasets. - Data visualisation and
2006 Jun 19
1
lattice xyplot - aligning date labels so that they align with the grid lines in panel.grid
Hi, I have a basic question about aligning date labels for the x-axis in an xyplot so that they align with the grid lines from the panel.grid argument. For example, with x <- data.frame( date = seq(as.Date("2005/01/01"), as.Date("2006/06/01"), length.out = 20), value = runif(20)) xyplot(value ~ date, data = x, panel = function(x, y, subscripts, ...) {
2007 Feb 05
2
Rconsole - setting the size and location of Windows help files (Rgui)
Hi, Using the Rconsole file I can specify the size and location of the Rgui windows on NT. e.g. # Dimensions (in characters) of the console. rows = 51 columns = 100 How can I specify the size of the help windows that popups when I ask for help? e.g. '?help' I would like the popup window to have say rows = 51 and columns = 100, just like the main window but a different location on the
2007 Feb 12
0
job advertisement - finance - London based
Hi, The following job advert was already incorrectly sent to r-help so I am reposting here. We are looking for a skilled statistician/programmer seeking a career at the intersection of finance, applied statistics and computer science. This position requires a person with a strong background in - data analysis, - design and implementation of algorithms, - software development - statistical
2007 Feb 12
0
job advertisement - finance - London based
Hi, We are looking for a skilled statistician/programmer seeking a career at the intersection of finance, applied statistics and computer science. This position requires a person with a strong background in - data analysis, - design and implementation of algorithms, - software development - statistical methodology. The primary responsibilities are to develop software, using the R
2006 Sep 28
2
calling R from within Java, using jri
Hi, I want to call R from within Java, using jri as per http://www.rosuda.org/software/jri/ So I am following the instructions in the README file for JRI 0.2-4. I have run 'sh configure.win' and 'make' and they seemed to be successful. (See below for the output from make, for example.) But when I try 'run.bat rtest' (with and without R command line arguments) the output
2018 Mar 10
1
quota-status: Issues with uppercase recipient address
Hello list, Dovecot Version: 2.2.34 (874deae) on FreeBSD MTA: Postfix 3.3.0 I've got an issue with the quota-status service: Something breaks when receiving mail with a recipient address that includes non-lowercase characters, for example foo at Example.com instead of foo at example.com: postfix log: postfix/smtp/smtpd[83387]: NOQUEUE: reject_warning: RCPT from
2005 Dec 21
2
CRAN and R v2.2.1 for Windows
Thanks for the new updates in v2.2.1. I just noticed a few "problems" on http://cran.r-project.org/bin/windows/base/. 1) The CHANGES and NEWS files for v2.2.1 does not include info on v2.2.1 but only details up until v2.2.0, cf. http://cran.r-project.org/src/base/NEWS 2) The patched version is now denoted "beta" (files and installation directory), which I believe is
2010 Dec 12
0
rspec-2.3.0 is released
rspec-2.3.0 is released (including rspec, rspec-core, rspec-mocks, rspec-expecations and rspec-rails). ### rspec-core-2.3.0 / 2010-12-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0) * Enhancements * tell autotest to use "rspec2" if it sees a .rspec file in the project''s root directory * replaces the need for ./autotest/discover.rb,
2009 Mar 15
1
Patch for NGROUPS_MAX on FreeBSD with more then 64 groups
Hi on FreeBSD it happens that without this patch the number of groups is limited to 32. Since we need a greater number of groups, we send this patch. Hope it is approved early. Bye diff -ruN /root/work/samba-3.2.8/source/lib/replace/system/passwd.h /usr/ports/net/samba32/work/samba-3.2.8/source/lib/replace/system/passwd.h --- /root/work/samba-3.2.8/source/lib/replace/system/passwd.h 2009-02-03
2017 Aug 03
1
Use case for HDF5 dataspace interface
1. This relates to the package *rhdf5* and its implementation of the HDF5 dataspace interface. I am asking for an example of how other people who use this package make use of the HDF5 data space interface exposed by the library. Longer answer: As per my understanding, the dataspace interface exposes data locations within a dataspace, but even while retrieving data from an hdf5 file using methods
2006 Feb 13
1
MinGW and the ld bug
Hi. I noticed that Brian Ripley found and corrected a bug in MinGW's ld.exe, see http://www.murdoch-sutherland.com/Rtools/. Thanks for this. I wonder if this is the same bug that cause my problems. I have tiny toy package with C code that installs perfectly on R Version 2.2.1 beta (2005-12-18 r36792) [this version was mislabelled "beta" the first few hours on CRAN when the stable
2004 Sep 29
2
defining a template for functions via do.call and substitute.
Hi, Given a function fun <- function(a, b) a + b how do I generate the function 'function(x, y) x + y'? Working from the help files and Bill Venables' R-news article (June 2002), I have tried various permutations with substitute without success. e.g. do.call("substitute", list(fun, list(a = as.name("x"), b = as.name("y")))) Regards, John.
2004 Sep 29
2
defining a template for functions via do.call and substit ute.
Here's one not-so-straightforward way: > f <- function(a, b) a + b > flist <- as.list(f) > names(flist)[1:2] <- c("x", "y") > flist[[3]] <- do.call("substitute", list(body(f), list(a=as.name("x"), b=as.name("y")))) > g <- as.function(flist) > g function (x, y) x + y HTH, Andy > From: john.gavin at ubs.com
2004 Oct 06
3
lapply with argument "X"
Hi, I am probably making a simple mistake but I can't see it > X Error: Object "X" not found > exists("X") [1] FALSE > lapply("X", exists) [[1]] [1] TRUE Why is lapply producing true? Is it something to do with the first argument of lapply also being called 'X'? > version _ platform i386-pc-mingw32 arch i386
2001 Oct 11
2
Where's MVA?
Hi All: Package TSERIES is stated to depend on MVA. However, there is no MVA package to be found under the list of package sources. Best wishes, ANDREW tseries: Package for time series analysis Package for time series analysis with emphasis on non-linear and non-stationary modelling Version: 0.7-6 Depends: ts, mva, quadprog Date: 2001-08-27 Author: Compiled by Adrian
2011 May 30
1
[LLVMdev] Build error for llvm-2.9 on RHEL5
*This is perl, v5.8.8 built for Linux-2.6c2.5-i686-64int* Thanks, Arjun On Sun, May 29, 2011 at 5:46 PM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Sun, May 29, 2011 at 5:13 PM, Arjun Singri <arjunsingri at gmail.com> > wrote: > > Oh ok. Here it is: > > #!/apollo/env/envImprovement/bin/perl > > Okay, now what's the output of
2017 Aug 01
2
Use case for HDF5 dataspace interface
This question is a clone of my stackoverflow question which never got answered (o_O). Therefore I am posting it here. I would really like some inputs if possible. I am currently building some applications which make use of HDF5 files. I have already taken a look at the hdfgroup website with regards to dataspace <https://support.hdfgroup.org/HDF5/doc/H5.user/Dataspaces.html> and I think I
2017 Aug 01
0
Use case for HDF5 dataspace interface
1. What does this have to do with R? 2. If it concerns computational biology, the Bioconductor Help list may be a better place to post. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, Aug 1, 2017 at 2:28 AM, Koustav Pal