Displaying 2 results from an estimated 2 matches for "cruisepak".
2003 Dec 02
3
check WARNING...
...mmand:
* checking S3 generic/method consistency ... WARNING
plot:
function(x, ...)
plot.summaries:
function(trees, sp)
* checking for replacement functions with final arg not named 'value' ... OK
* checking Rd files ... OK
...blah, blah, blah...
* checking examples ... OK
* creating cruisepak-manual.tex ... OK
* checking cruisepak-manual.tex ... OK
WARNING: There were 3 warnings, see
C://cruisepak.Rcheck/00check.log
for details
C:\>
I can fix the other two warnings with no problem, but the S3 generic/method
consistency warning is puzzling me... .
I have a function called
plot...
2003 Nov 06
2
created data doesn't remain when split...
I've been trying to figure out why the following is happening....
I've got some data I'll load in from a file...
rm(list=ls(all=TRUE))
trees <- read.table( "c:/cruisepak/data.txt", header=T)
trees$ct <- 1
And when I create some temp variable, then split the data to perform further
processing, the additional column doesn't maintain the data correctly....
mtrees <- trees[trees$m == 1,]
ctrees <- trees[trees$m == 0,]
The results are as follows......