[R] configure: WARNING: you cannot build info or HTML versions of the R manuals

2007-04-26 Thread W Eryk Wolski
Rusers,

I am trying to build R2.5 on my Kubuntu machine an configure concludes with
:

configure: WARNING: you cannot build info or HTML versions of the R manuals

What do I need to install on my machine to get rid of this warnings?


Eryk

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] tcltk support....

2007-04-26 Thread W Eryk Wolski
Rusers,

library(Rcmdr)
Loading required package: tcltk
Error in firstlib(which.lib.loc, package) :
Tcl/Tk support is not available on this system


While installing R I run configure with

configure --prefix=/bla/bla --with-tcltk
make
make install

configure did not returned any errors. Hence, I assume that the the tcl/tk
libraries have been found.


installin.packages(tcltk)
returns an error telling me that there is no package tcltk on CRAN. And
indeed there no such package on CRAN.

Whats wrong?

Eryk

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] configure: WARNING: you cannot build info or HTML versions of the R manuals

2007-04-26 Thread W Eryk Wolski


 Texinfo. Not sure if that is also the package name on *ubuntu/debian.


It's called texinfo on ubuntu/debian and it fixed the problem.

Thanks a lot Peter.

Eryk

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] tcltk support....

2007-04-26 Thread W Eryk Wolski
I use ubuntu/kubuntu...

I did not had the dev packages installed. The problem is no solved.

To my excuse I can say that I would have expected configure to issue an
error or warning.
I did run it  configure with --with-tcltk. But there was not a singel
message which would point me to the fact that some packages on my system are
missing.

cheers
Eryk



On 4/26/07, Stefan Grosse [EMAIL PROTECTED] wrote:

 tcltk must be installed on your system, it is not a R package. Which
 Linux are you using?

 W Eryk Wolski wrote:
  Rusers,
 
  library(Rcmdr)
  Loading required package: tcltk
  Error in firstlib(which.lib.loc, package) :
  Tcl/Tk support is not available on this system
 
 
  While installing R I run configure with
 
  configure --prefix=/bla/bla --with-tcltk
  make
  make install
 
  configure did not returned any errors. Hence, I assume that the the
 tcl/tk
  libraries have been found.
 
 
  installin.packages(tcltk)
  returns an error telling me that there is no package tcltk on CRAN. And
  indeed there no such package on CRAN.
 
  Whats wrong?
 
  Eryk
 
[[alternative HTML version deleted]]
 
  __
  R-help@stat.math.ethz.ch mailing list
  https://stat.ethz.ch/mailman/listinfo/r-help
  PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
  and provide commented, minimal, self-contained, reproducible code.
 
 



[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] Translating actxserver server commands to rcom

2007-03-23 Thread W Eryk Wolski
Dear R and R com user

I have the following matlab which acesses a com server, code which I
am trying to translate to R using the Rcom package:


clear all;
clear analysis;
analysis = actxserver('EDAL.MSAnalysis');
analysis.Open('E:\work\ChromPeakFinderdata\DatafromKlaus\E112L-cad13-PI-24h_pos_1-C,3_01_2562.d');
specCol = analysis.MSSpectrumCollection;
count = specCol.get('Count');


This is how far I got...

rm(analysis)
analysis - comCreateObject(EDAL.MSAnalysis)
comGetObjectInfo(analysis)
comInvoke(analysis,open,E:\work\ChromPeakFinderdata\DatafromKlaus\E112L-cad13-PI-24h_pos_1-C,3_01_2562.d)
specCol - analysis$MSSpectrumCollection
 specCol
function (...)
comInvoke(handle, ..FUN, ...)
environment: 0x022a4734
 comInvoke(specCol,get,Count)
NULL


Seems to be the wrong track ... What would be the equivalent of
analysis.Open('E:\work\ChromPeakFinderdata\DatafromKlaus\E112L-cad13-PI-24h_pos_1-C,3_01_2562.d');
specCol = analysis.MSSpectrumCollection;
or  of count = specCol.get('Count');
in Rcom?


Help is highly appreciated...

best wishes

Eryk

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.