search for: syskern

Displaying 20 results from an estimated 25 matches for "syskern".

2001 Mar 07
1
syskern
The bug list summary reported an error in syskern which I finally realized is due to a badly chosen example in the help rather an error in the code. However, I have taken the opportunity to re-evaluate what I have been trying to do with syskern, since some parts may no longer be important. Since syskern was intended to address certain problems in...
2001 Sep 28
2
problems with new checks in R-devel
...is in my R code so I don't get these warnings? 3/ I have a few general introduction .Rd files which do not have a usage line and they produce * checking for undocumented arguments in \usage ... WARNING Error in parse(file, n, text, prompt) : parse error Error in checkDocArgs(dir = ".../syskern") : cannot source usages in file .../syskern/man/00Intro.syskern.Rd Execution halted Should that be expected or is it a bug? Paul Gilbert -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/...
2000 Dec 20
1
syskern fails Rcmd check on Windows, gives incorrect information (PR#781)
syskern (`Functions for writing code that is OS and R/S independent', an amazing description given the reality) fails Rcmd check on Windows, and also gives incorrect information where it does work. There are already correct OS-independent functions for these purposes in R. It appears not to be needed...
2000 Jun 28
1
Rd2dvi
I'm trying to use R CMD Rd2dvi and I end up at a Latex (I think) command prompt. What's missing or what am I suppose to do? Paul Gilbert _______ paul at breman:/apps/dse-versions/2000.6/dse#R CMD Rd2dvi syskern This is TeX, Version 3.14159 (Web2C 7.3) (Rd2.tex LaTeX2e <1998/12/01> Babel <v3.6k> and hyphenation patterns for american, french, german, ngerman, nohyphenation, loaded. (/usr/share/texmf/tex/latex/base/book.cls Document Class: book 1999/01/07 v1.4a Standard LaTeX document class (/usr...
1999 Aug 07
1
INSTALL script does not handle spaces in pathnames correctly (PR#242)
...a directory whose pathname includes spaces. The INSTALL script interprets spaces in the pathname as a separator. For example: [lyndon@beat Rdse]$ pwd /home/lyndon/doc/uni/415.704 Computer Systems Peformance Analysis/R/Rdse [lyndon@beat Rdse]$ ~/src/cvs-stuff/R/bin/R INSTALL --no-docs -l ../lib/ syskern /home/lyndon/src/cvs-stuff/R/bin/INSTALL: /home/lyndon/doc/uni/415.704: No such file or directory Installing package `415.704' ... No man pages found in package `415.704' DONE (415.704) Installing package `Computer' ... No man pages found in package `Computer' DONE (Computer)...
2003 Jul 29
5
Sending emails from R under Windows
Hi Does anyone know of any R routines to send emails from R, under Windows? I thought about writing such a facility using the R(D)COM package to drive e.g. MS Outlook, but I don't want to reinvent the wheel. I have found a function Sys.mail in the library syskern, but this only works under Unix by shelling out a mail command. Thanks, David
2003 Jul 29
5
Sending emails from R under Windows
Hi Does anyone know of any R routines to send emails from R, under Windows? I thought about writing such a facility using the R(D)COM package to drive e.g. MS Outlook, but I don't want to reinvent the wheel. I have found a function Sys.mail in the library syskern, but this only works under Unix by shelling out a mail command. Thanks, David
1999 Dec 21
1
DSE revised for R 0.90.1
A slightly revised version of my DSE package for multi-variate time series analysis is now available at <www.bank-banque-canada.ca/pgilbert>. This version works with R 0.90.1 (and not with R 90.0 or earlier versions). It can also be installed with install.packages(c("syskern", "tframe", "dse"), contriburl="http://www.bank-banque-canada.ca/pgilbert/dse/R") A draft version of the new users guide is also available at the web site. Comments would be appreciated. I will put a version of the libraries on CRAN in the new year. Paul Gilber...
1999 Dec 21
1
DSE revised for R 0.90.1
A slightly revised version of my DSE package for multi-variate time series analysis is now available at <www.bank-banque-canada.ca/pgilbert>. This version works with R 0.90.1 (and not with R 90.0 or earlier versions). It can also be installed with install.packages(c("syskern", "tframe", "dse"), contriburl="http://www.bank-banque-canada.ca/pgilbert/dse/R") A draft version of the new users guide is also available at the web site. Comments would be appreciated. I will put a version of the libraries on CRAN in the new year. Paul Gilber...
1999 Jul 27
2
Memory profiling/benchmarking
Hi, As a project for a computer performance analysis paper I am taking this semester, I am going to look at the performance of the memory manager in R, with the aim of determining how fast it is and which areas most need improvement. The idea is that I will compare various versions of R, starting with 0.64.2, and then at a few stages in the implementation of the new memory management scheme (of
2000 Jun 21
3
OS calls
I've just been reviewing some functions in my syskern library. This library was set up originally to provide me with a way to program around small R/S differences and to encapsulate some operating system requests in one place, so that these problems would not be spread throughout my code. Over the years the need for many of the programs in this libr...
2000 Jan 17
3
RNG initialization
It would be nice to be able to initialize the random-number generator with a single long argument; I can see that in principle this could be done by writing an access method, do_RNGinit (or whatever) for RNG_Init. I had trouble with the technical details, possibly because of long/int incompatibilities. Any chance of this happening? -- Ben Bolker
2001 May 24
1
tframe question - latest.start
I'm having some trouble figuring out latest.start in the tframe package. The results seem a bit cloudy. Sample session: > library(ts) > library(tframe) Loading required package: syskern > t1<-ts(c(1,2,3,4,5),start=1) > t2<-ts(c(1,2,3,4,5),start=2) > earliest.start(tbind(t1,t2)) [1] 1 1 > earliest.start(tbind(t2,t1)) [1] 1 1 > latest.start(tbind(t2,t1)) [1] 1 1 > latest.start(tbind(t2,t1)) [1] 1 1 Same results if the series are tframed. Any ideas, comme...
1999 Oct 21
0
require - warn.conflicts
I am trying to straighten up my DSE package to use require() as that seems to be a good mechanism. I have several packages: dse requires tframe which requires syskern which masks a few methods in base ( RNGkind rnorm runif). If I do require(dse) I get 3 copies of a six line warning (lots of white space) about syskern methods masking base methods. If I use library(dse) I only get 2. (I've simplified the situation somewhat, I really have five or six levels...
2001 Mar 08
1
bug.report/mail
One of the functions I would like to clean out of my syskern package is a program to send mail. This is a common feature other programs (e.g. bug.report) may use so I would like it to be included in R/base. I will volunteer to do this as it looks like a fairly straightforward dissection of bug.report but I have some questions: Has anyone done this already?...
2001 Apr 18
1
Problem with Rcmd check
In Windows, I tried to build and check Paul Gilbert's dse bundle with the command rcmd check ../library/dse It ran for a while and built the packages, then failed at the end with this: ** checking Rd files ... OK ** checking for undocumented objects ... OK ** creating syskern-Ex.R ... ERROR I get similar errors checking packages, but there make pkgcheck-foo works. I don't think there's a "bundlecheck-foo" target, is there? Any workarounds, or hints where I should look to figure out what went wrong? Duncan Murdoch -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2000 Dec 18
1
1.2.0 segfault
...th many contributors. Type `contributors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. > library(curve) Loading required package: dse1 Loading required package: syskern Loading required package: tframe > Program received signal SIGWINCH, Window size changed. 0xef5b7400 in poll () (gdb) dsecurvature.function.testsA() Undefined command: "dsecurvature". Try "help". (gdb) continue Continuing. > dsecurvature.function.testsA() Random number g...
2001 Apr 06
0
Re: closing a bug report (PR#781)
...da.ca> writes: > Peter > > I'm not sure how to close a bug report. This problem should be fixed in the version > now loaded on CRAN, although there may be other still to be discovered problems under > Windows. > > Paul Gilbert > _____ > * PR# 781 * > Subject: syskern fails Rcmd check on Windows, gives incorrect information > From: Prof Brian Ripley <ripley@stats.ox.ac.uk> > Date: Wed, 20 Dec 2000 11:12:47 +0000 (GMT) > --Partially fixed by dse_2000.12, but still uses "ls" and gives > --incorrect information Mailing to r-bugs with (P...
2001 Apr 07
0
Re: closing a bug report (PR#781)
...; > I'm not sure how to close a bug report. This problem should be fixed in the version > > now loaded on CRAN, although there may be other still to be discovered problems under > > Windows. > > > > Paul Gilbert > > _____ > > * PR# 781 * > > Subject: syskern fails Rcmd check on Windows, gives incorrect information > > From: Prof Brian Ripley <ripley@stats.ox.ac.uk> > > Date: Wed, 20 Dec 2000 11:12:47 +0000 (GMT) > > --Partially fixed by dse_2000.12, but still uses "ls" and gives > > --incorrect information > &...
2003 Jan 14
1
Random number generator in R compared to S
I''m doing some simulations for which i need to use both S-plus and R. I generate in S+ some random normal distributions to define one dataset by iteration. I need to use the same dataset generated in S-plus in R. I was first thinking to generate in R the same dataset by using the same random number generator with a fixed seed. But It seems that S-plus and R don''t use the same