similar to: dyn.load and function calls without 'PACKAGE' argument

Displaying 20 results from an estimated 1000 matches similar to: "dyn.load and function calls without 'PACKAGE' argument"

2007 Jun 05
1
Can configure.ac detect 64 bit R?
My fame package has to link to the libchli.so that comes with FAME. However, FAME is now supplying both 32 and 64 bit versions of the library. The 32-bit version is $FAME/hli/libchli.so while the 64-bit version is $FAME/hli/64/libchli.so. To set the right flags, it seems that I need to know, from within configure.ac, whether the R installation is 32 bit or 64 bit. Is there a way to detect this?
2009 Jan 20
1
Problem with FAME
Dear All, I wonder whether anyone has an experience with FAME package written by Jeff Hallman. All my attempts to send him the following problem report did not succeed (the mail system says that my e-mail could not be delivered), so I turn for help to this list. I tried to use your FAME package written for R, but somehow I cannot get it working. I am using Windows XP and the newest R
2007 Feb 02
2
Help with OS X (BSD) ps command
My fame package has a function that checks to see if a FAME SERVER process is already running. On Linux, I can do this in one of two ways: pid <- Sys.getpid() user <- Sys.info()["user"] cmd <- paste("pgrep -fU", user, "-P", pid, "'FAME SERVER'") fameRunning <- as.logical(length(system(cmd, intern = T))) or I can use cmd
2007 Jul 12
5
In creating a Windows binary package (zip), how do I make the installation configurable
I would like to create a binary package for Windows which when installed will give the user an option of whether to install one version or another. Here is the problem, I have a package 'FAME' that can run in two different modes on Windows. An old mode that uses R to connect to a remote linux machine and a new way that uses a locally installed database. I would allow this decision to be
2008 Nov 17
2
Cannot quit R - fame package issue?
Hello list member: I've recently had a problem in that I'm unable to quit an R Session. I noticed this after the update to 2.8.0, but I believe I also noticed it on another machine, in the previous version. It occurs on both linux and Mac platforms. It only occurs when I start R in some particular workspaces that have alot of objects in them; it does not occur if I start R in an
2003 Mar 28
2
rsync ignoring some new files
I have found several instances where rsync refuses to copy a new file. I am using it to sync changes from a staging web server to production servers, and there are certain files that it just plain won't copy. The file is totally new. No such name has ever existed on the target server(, or on the source server until now). In this instance, I added 3 completely new files to the same
2010 Sep 28
2
Reshape
Hello, helpeRs, I've been trying, unsuccessfully, to change a dataframe from long to wide format using reshape (the original). I would appreciate it if someone could demonstrate the correct syntax. The script below will create a toy example. The new wide data should have a column name for each unique entry in the "fame" column. Under each column should be either the
2009 Aug 17
4
Calling C functions with value parameters
One hassle I could do without is the necessity of writing C wrapper functions like this: void fameInit(int *status){ cfmini(status); return; } when I want to call a library function (cfmini, in this case) that takes an int argument. The .C interface only lets me pass a pointer to an int, rather than the int itself. Is there any chanch that .C could be enhanced to allow passing arguments by
1997 Sep 18
2
R-alpha: Re: R-Mailing lists ok again. ..sorry..
Martin Maechler <maechler@stat.math.ethz.ch> writes: > This caused 3 postings (1 to R-help, 2 to R-devel) to be aborted. > For some reason, it also seems majordomo did not save the postings in > a 'dead.letter' or something. > So could you please re-submit them? > These are the sendmail entries: > Sep 17 21:14:21 .. sendmail[9364]: VAA09363:
2004 Dec 15
2
Bugtracker Karma Hall Of Fame
The Karma Hall Of Fame is now available at: http://bugs.digium.com/karma_halloffame.php Users with negative karma aren't named'n'shamed.. YET.. but congrats to all the users with positive karma on the current list! The list shows all users holding the top 10 karma scores in the system. Right now you need a 12 or above to feature on the list, and there's a boat load of people just
2013 Dec 26
1
New thunderbird and ligntning on CentOS 5...
Hey, anybody found a way to run the new Thunderbird Lightning calendar addon on CentOS 5...? From my debugging, it seems like the lightning addon is compiled with a newer version of glibc... ? Failed to load native module at path '.../Linux_x86-gcc3/libcalbasecomps.so': (80004005) /lib/libc.so.6: version `GLIBC_2.7' not found? Tried older versions, 2.6 and 2.5b2, but they seem not
2005 Jun 05
2
data transformation
i have data fame da: > da x y 1 1 a 2 2 a 3 3 a 4 4 a 5 5 a 6 6 b 7 7 b 8 8 b 9 9 b 10 10 b > str(da) `data.frame': 10 obs. of 2 variables: $ x: num 1 2 3 4 5 6 7 8 9 10 $ y: Factor w/ 2 levels "a","b": 1 1 1 1 1 2 2 2 2 2 and i want to generate new variable da$z,when y=="a",da$z=da$x-mean(x[y=="a"]) ,when
2005 May 10
2
bug, feature of mistery?
I have two machines a linux_amd64_x86 (gentoo_amd64) and a linux_x86. Both run R-2.1.0. I have a very long program (hopefully will become a package) that works perfectly on the linux_amd_x64. Great means no error, no problems and results that, where the analytic solution exists, coincide with it. I have problem making the code run on the x64 machine. I am baffled. The same code on the same version
2004 Jan 29
3
Developmental version of Matrix package for R-1.9.0
I recently uploaded a developmental version of the Matrix package, Matrix_0.6-1.tar.gz, to CRAN where it is in the src/contrib/1.9.0/Other directory. It requires some of the packages that will appear in R-1.9.0. This version marks a major redesign of the Matrix package to use S4 classes and methods and to incorporate sparse matrix manipulations using routines from TAUCS
2008 Nov 18
0
Packages for time series databases
I recently put several packages for time series databases on CRAN. The main package, TSdbi, provides a common interface to time series databases. The objective is to define a standard interface so users can retrieve time series data from various sources with a simple, common, set of commands, and so programs can be written to be portable with respect to the data source. The SQL
2008 Nov 18
0
Packages for time series databases
I recently put several packages for time series databases on CRAN. The main package, TSdbi, provides a common interface to time series databases. The objective is to define a standard interface so users can retrieve time series data from various sources with a simple, common, set of commands, and so programs can be written to be portable with respect to the data source. The SQL
2009 Jan 24
2
Is abline misbehaving?
Hi experts, I was graciously offered a function to enhance abline by restricting the extent of the line to less than the plotting region. This seems a useful idea, and it looked like the easiest way to program it was to set up a clipping region with "clip", draw the abline and then restore the previous clipping region. Let us call this function ablineclip. After quite a bit of
2009 Jan 24
2
Is abline misbehaving?
Hi experts, I was graciously offered a function to enhance abline by restricting the extent of the line to less than the plotting region. This seems a useful idea, and it looked like the easiest way to program it was to set up a clipping region with "clip", draw the abline and then restore the previous clipping region. Let us call this function ablineclip. After quite a bit of
2000 Mar 03
5
StatDataML
Hi, we have a first draft of R functions reading/writing data to XML files including a rather general DTD ... which borrows heavily from the data types of a certain programming language :-) The basic idea is to create an XML standard for data exchange, together with import/export functions for as many applications as possible. We here will need R, Matlab & Octave for our research program,
2004 Feb 27
4
[OT] Fyodor terminates SCO nmap rights -- how about Samba?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 As you all may know Fyodor of nmap fame has terminated SCO's rights to distribute namp with its products. See: http://www.smh.com.au/articles/2004/02/27/1077676955381.html I know this is off-topic, but I am interested in opinions on the subject of SCO using Samba in it's products while they declare the GPL is unconstitutional and invalid.