Re: [Rd] cex.lab etc. ignored in plot.ts for multiple plots (PR#13315)

2008-11-22 Thread Gabor Grothendieck
As a workaround you could use plot.zoo:

library(zoo)
tt - ts(cbind(a = 1:10, b = 1:10))

plot(as.zoo(tt), plot.type=multiple, cex.lab = 0.5, col.lab = red)

On Fri, Nov 21, 2008 at 8:50 AM,  [EMAIL PROTECTED] wrote:
 Full_Name: Yan Wong
 Version: 2.8.0
 OS: Mac OS X 10.4
 Submission from: (NULL) (78.149.183.231)


 When plotting multiple time series in a single plot, via
 plot.ts(plot.type=multiple), the cex.lab, col.lab, and font.lab arguments 
 are
 ignored

 plot(ts(data.frame(a=1:10, b=1:10)), plot.type=single, cex.lab=0.5,
 col.lab=red)  #tiny red axis labels
 plot(ts(data.frame(a=1:10, b=1:10)), plot.type=multiple, cex.lab=0.5,
 col.lab=red) #should have tiny red axis labels, but does not.

 I think this a problem with lines 54-57 of plot.ts. In particular, the mtext
 functions should also be called with 'cex=cex.lab, col=col.lab, 
 font=font.lab',
 and the argument list of the plotts function should also contain
 'cex.lab=par(cex.lab), col.lab=par(col.lab), font.lab=par(font.lab)'

 __
 R-devel@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-devel


__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Computing minimal detectable differences for general ANOVA models

2008-11-22 Thread Duncan Temple Lang



Ali Baharev wrote:

Dear Developers,

For the attached (very simple) source package i get the following warnings:

* checking foreign function calls ... WARNING
Foreign function calls without 'PACKAGE' argument:
.C(fpow, ...)
See the chapter 'System and foreign language interfaces' of the 'Writing R
Extensions' manual.



The message is reasonably clear.
Calls to .C(), .Call(), .Fortran(), .External()
must identify the DLL/shared object so that the
native (compiled) symbol being invoked is correctly
found and we don't end up by chance finding another
with the same name in another DLL/shared object.
So you need

  .C(fpow,  PACKAGE = fpow)

If you had a NAMESPACE for the package, you can
chose to omit the PACKAGE = fpow if you want
as we infer that the DLL is the one associated with
this package.




* checking R code for possible problems ... NOTE
Error in firstlib(which.lib.loc, package) :
  Tcl/Tk support is not available on this system


This is just a note and of no concern.




After looking at the manual, i could not figure out how to fix them.

Please also point out other possible problems not found by R CMD check.

Many thanks,

Ali


__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Computing minimal detectable differences for general ANOVA models

2008-11-22 Thread Ali Baharev
Many thanks!

Otherwise did you find the source OK?

Please note that i have not used R. I just did what i could understand
from the manuals.

Thanks,

Ali

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Computing minimal detectable differences for general ANOVA models

2008-11-22 Thread Ali Baharev
Ooops, sorry. Just one more question.

Do i have to make a binary package for Win32 and Mac OS X? Or is it
done by some server side scripts?

For Win32 it seems to me

http://win-builder.r-project.org/

can build it for me.

Sorry for the dumb questions.

Ali

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Computing minimal detectable differences for general ANOVA models

2008-11-22 Thread Gabor Grothendieck
They will be built for you.  You only upload the .tar.gz file.
See section 1.5 of the Writing Extensions manual.

On Sat, Nov 22, 2008 at 5:35 PM, Ali Baharev [EMAIL PROTECTED] wrote:
 Ooops, sorry. Just one more question.

 Do i have to make a binary package for Win32 and Mac OS X? Or is it
 done by some server side scripts?

 For Win32 it seems to me

 http://win-builder.r-project.org/

 can build it for me.

 Sorry for the dumb questions.

 Ali

 __
 R-devel@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-devel


__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel