Displaying 20 results from an estimated 10000 matches similar to: "R-alpha: jpn() port"
1997 Apr 08
2
R-alpha: CRAN source/contrib
I've put all ``current'' add-on packages into CRAN's source/contrib tree
and created an INDEX file (attached below).  As you can see, currently
we have
  acepack
  bootstrap
  ctest
  date
  e1071
  fracdiff
  gee
  jpn
  snns
  splines
  survival4
(Yes, e1071 and jpn are new ... more on the latter in a later mail.)
In the near future, I am hoping for the following:
  oz		(Bill
1997 Apr 22
3
R-beta: library(splines) in version 0.50 alpha
I am using the 0.50 alpha version of R packaged (in 3 parts) by Kurt
for Debian Linux.
 Package: r-base
 Status: install ok installed
 Priority: optional
 Section: local
 Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at>
 Version: 0.50b7-1
 Depends: libc5, xlib6, libreadline2
 Description: R, a language not entirely unlike the language S.
 Package: r-contrib
 Status: install ok
1997 Apr 16
0
R-alpha: CRAN announcement
Attached is an updated version of the CRAN announcement, also to be sent
out as soon as 0.50 is out.  Again, please have a look if possible.
-k
************************************************************************
This is the first announcement of the
		   Comprehensive R Archive Network 
			        (CRAN)
CRAN is a collection of sites which carry identical material, consisting
of the
2008 Dec 08
4
R and Scheme
I've read in many places that R semantics are based on Scheme semantics.  As
a long-time Lisp user and implementor, I've tried to make this more precise,
and this is what I've found so far.  I've excluded trivial things that
aren't basic semantic issues: support for arbitrary-precision integers;
subscripting; general style; etc. I would appreciate corrections or
additions from
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now
available at the usual site,
	http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
A plain text version of the FAQ is appended below.
-kh
****** snip snip snip **************************************************
  R FAQ
  Kurt Hornik
  v0.60-6, 1997/12/08
  This document contains answers to some of the most frequently asked
 
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now
available at the usual site,
	http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
A plain text version of the FAQ is appended below.
-kh
****** snip snip snip **************************************************
  R FAQ
  Kurt Hornik
  v0.60-6, 1997/12/08
  This document contains answers to some of the most frequently asked
 
1997 Dec 09
3
R-beta: R FAQ v0.60
An updated version of the R FAQ to accompany the new 0.60 release is now
available at the usual site,
	http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
A plain text version of the FAQ is appended below.
-kh
****** snip snip snip **************************************************
  R FAQ
  Kurt Hornik
  v0.60-6, 1997/12/08
  This document contains answers to some of the most frequently asked
 
1997 Aug 25
0
R-alpha: R FAQ
Attached is a snapshot of the new version of the FAQ.  What is still
missing is something on eval and .Options versus options().  As always,
feedback is greatly appreciated.
Best,
-k
***********************************************************************
  R FAQ
  Kurt Hornik
  v0.2-0, 1997/09/01
  This document contains answers to some of the most frequently asked
  questions about R.  Feedback
1997 Aug 21
3
R-alpha: a question on terminology
Whereas we typically refer to the add-on `modules' as `libraries' (viz
also the way these are represented in the search list, and the variable
.Libraries), S speaks about `sections'.
Shall we stay with our terminology?  Or instead, speak of `sections',
`packages', `modules', ...?
-k
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel
1997 Sep 07
2
R-alpha: R `make install-*'
Ross mentioned last week that it would be nice to eventually have a real
`make install'.  As a preparation, we should perhaps rename the current
	install-help install-latex install-html
targets to
	help latex [or dvi???] html
and perhaps
	test-Examples
to
	test
I can of course make the changes, but I thought I'd ask for a good new
name for the corresponding scripts in RHOME/etc. 
1997 Apr 22
1
R-alpha: contributed packages -- Yes, use library/<package>/.. !
>>>>> "Kurt" == Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> writes:
>>>>> Paul Gilbert writes:
    >> Friedrich
    >> Regarding the location of data for libraries it might be easier if
    >> everything for one library is included in one subdirectory. At least
    >> it would certainly be easier to clean-up, which I like to do
1997 May 23
0
R-alpha: apropos() available
Martin and I have `written' a function apropos() for finding all objects
with names matching pattern.  I attach code and documentation.  Perhaps
one could include it in the distribution proper.
We are not sure about returning the position in the search list along
with the matching names found.  Martin thinks it should be on by
default, I think it should be off so that the functions does the
1997 Aug 19
2
R-alpha: A few bugs in R-0.50-a3.
A few problems in R-0.50-a3 (which were also in R-0.49):
1)
y <- c(10,11,12,13,14,NA,NA)
n <- length(y)
missed <- (1:n)[is.na(y)]
notmissed <- (1:n)[!is.na(y)]
blocks <- cut(missed,breaks=c(0,notmissed,n+1))
a <- function(v) {
	q <- range(v)
	c(q[1]-1,q[2]+1)
}
brackets <- tapply(missed,blocks,a)
This codes gives the following in S:
> brackets
$"0+ thru 1":
1997 Sep 02
1
R-alpha: Re: What are objects?
[I do think
  this discussion belongs to  R-devel  rather than anywhere else .. MM]
>>>>> "Kurt" == Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> writes:
>>>>> Peter Dalgaard BSA writes:
    >> Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> writes:
    KH>>>  While trying to write documentation for data.class(), I came
   
1997 Apr 28
3
R-alpha: R-0.49: 2 problems
I found the following 2 problems (no debugging, sorry).
* qt(0.975, 3) never returns.
Can someone please check that?  Happens for me on Debian GNU/Linux/ix86
compiled with CFLAGS="-O2 -g".
* Yet another stupid way to cause a segfault:
R> x
Error: Object "x" not found
R> debug(t.test)
R> t.test(rnorm(10))
debug: choices <- c("two.sided",
1997 Aug 04
1
R-alpha: Re: your mail
>>>>> Thomas Lumley writes:
> On Fri, 1 Aug 1997, Kurt Hornik wrote:
>> Thomas,
>> 
>> Could you add the "-lf2c" at the end of the line
>> @$(LD) $(SHLIBLDFLAGS) -o $(LIBNAME).so $(OBJS)
>> in acepack's src-c/Makefile?
>> 
>> I ran across an identical pow_dd problem recently with another package.
>> Did we always need
1997 Aug 11
1
R-alpha: R 0.50.a3: adj?
Not sure if I already reported this ... it seems that as of 0.50.a2, the
adj graphics parameter is completely ignored.  Try e.g.
	plot(1:10)
	title(main = "This is a title", adj = 0)
	title(main = "This is a title", adj = 1)
No difference ...
-k
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel mailing list -- Read
1997 Aug 11
1
R-alpha: R 0.50.a3 problem with `make tests'
Not really important, but ... `make tests' fails if a user's .Rprofile
asks for libraries which are not found by the binary in the compilation
tree (yes I know, we're here perhaps the only ones who use private
libraries ...).
Perhaps we should have options
	--no-site-file
	--no-init-file
which inhibit the loading of a global and a user's init file?
-k
1997 Aug 06
1
R-alpha: R color problem
There seems to be a small problem with the S-compatible small numbers
color specification, colors 0 and 2 are the same.
Have a look at e.g.
	barplot(rbind(1:3, 1), col = c(0,2))
-k
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2004 Sep 19
0
MFC compile problem
HI ALL:
I can not compile MFC successfully due to the resource file 'afxres.rc'. Can you give some suggestions to solve this problem or share your experience
on compiling MFC? Thank you. 
version of OS:
[ken@Linux80 mfc]$ uname -a 
Linux Linux80 2.4.18-14 #1 Wed Sep 4 12:13:11 EDT 2002 i686 athlon i386 GNU/Linux
version of MFC source is the MFC version released with VC 6.0
I compiled it