search for: zhesi

Displaying 8 results from an estimated 8 matches for "zhesi".

2005 Feb 01
1
Error in load(dataFile, myEnv)
...set. as the package can not be matched in search(). If I comment the line load(dataFile, myEnv), then the package is loaded without errors but there no functions is loaded at all. It probably is something trivial. Can some one help, please? ___________________________________________________ Zhesi He Computational Biology Laboratory, University of York York YO10 5YW, U.K. Phone: +44-(0)1904-328279 Email: zh107@york.ac.uk ___________________________________________________ [[alternative text/enriched version deleted]]
2006 Feb 26
0
R2.2.1 source compile problem in MacOS10.3
...ve files called R and R2.0 in /usr/local/bin/ and linked R and R2.0 directories each containing "library" directory in /usr/local/lib Hope they are not affecting the installation of R2.2.1. Any suggestion would help. Thanks a lot. ___________________________________________________ Zhesi He S-Block Biology, YCCSA, University of York York YO10 5YW, U.K. Phone: +44-(0)1904-328554 Email: zh107@york.ac.uk ___________________________________________________ [[alternative text/enriched version deleted]]
2008 Jul 29
0
mac install no font found problem in quartz display
...duplicate dylib /usr/local/lib/libfreetype.6.dylib I used macport to install cairo and pango and gtk before, and I think these libraries are duplicated in /usr/lib somehow. I don't know if R looked into the wrong directory to search for libraries or not. Please advise! Thanks a lot. -- Zhesi He Graham Group, CNAP Department of Biology (Area 7) University of York PO Box 373, York YO10 5YW, UK Phone: +44-(0)1904-328774 Email: zh107 at york.ac.uk
2005 Apr 19
2
pl/R and MacOS X using R binary
I'm sorry if this is too off-topic--feel free to ignore. I am interested in using pl/R, an amazing "plugin" for the postgresql database. As is typical of these types of applications, pl/R needs to link against a shared library. However, it appears that the MacOS R binary does not build a static (.so) shared library. Is there an accepted, general way (read, a way that works)
2005 Apr 19
2
pl/R and MacOS X using R binary
I'm sorry if this is too off-topic--feel free to ignore. I am interested in using pl/R, an amazing "plugin" for the postgresql database. As is typical of these types of applications, pl/R needs to link against a shared library. However, it appears that the MacOS R binary does not build a static (.so) shared library. Is there an accepted, general way (read, a way that works)
2006 Feb 24
1
RGtk2 install in Mac
...* Removing '/Library/Frameworks/R.framework/Versions/2.0.1/Resources/library/ RGtk2' ** Restoring previous '/Library/Frameworks/R.framework/Versions/2.0.1/Resources/library/ RGtk2' Any suggestions would be helpful. Thanks ___________________________________________________ Zhesi He S-Block Biology, YCCSA, University of York York YO10 5YW, U.K. Phone: +44-(0)1904-328554 Email: zh107 at york.ac.uk
2006 Jan 18
2
Help with mixed effects models
Dear R-users I have problems using lme The model i want to fit can be viewed as a two-level bivariate model Two-level bivariate: bivariate (S coded as -1,T coded as 1) endpoint within trial OR It can equivalently be considered as a three-level model.Three-level: endpoint within patient, patient within trial. My code tries to model the levels through a RANDOM statement and a
2005 Feb 24
4
r: functions
hi all i have a function that uses two inputs, say xdata and ydata. An example is the following, simple1<-function(xdata,ydata) { ofit<-lm(ydata~xdata) list(ofit) } say i use arbitray number for xdata and ydata such that D = x1 x2 y 1 1 10 2 6 6 3 10 7 x<-D[,1:2] and y<-D[,3] if one uses these inputs and rund the program we get the following: >simple(xdata=x,ydata=y)