search for: carrington

Displaying 6 results from an estimated 6 matches for "carrington".

Did you mean: harrington
2013 Apr 17
3
Error: could not find function "invlogit" and "bayesglm"
...dependents (e.g MATRIX, etc), but cannot use the functions "invlogit" and "bayesglm" because it gives me the error message "Error: could not find function "invlogit" or Error: could not find function "invlogit". What could be the problem. Regards Carrington [[alternative HTML version deleted]]
2010 May 18
1
issues with R Library on a Server
...tions are: Why are the packages downloading to the above location? What is the next step(s) I should take to setting up the server correctly. Thanks, Daisy -- Daisy Englert Duursma Room E8C156 Dept. Biological Sciences Macquarie University NSW 2109 Australia Tel +61 2 9850 9256 10A Carrington Rd Hornsby, NSW 2077 Mobile: 0421858456
2008 May 21
2
an unknown error message when using gamm function
...n about this error from the Internet. Hope some people who once encountered this problem can tell me what's wrong. Many thanks, LC -- Lung-Chang Chien Doctoral candidate, Department of Biostatistics Statistical assistant, School of Nursing University of North Carolina at Chapel Hill Office: Carrington Hall, RSC, Room 2014 TEL: 919-843-2480 [[alternative HTML version deleted]]
2005 Mar 23
1
winetools (and x86_64) problems
Hi, winetools 2.1.1 (installed from wine.sf.net deb recently) has a few missing double quotes on line 2568. Here's the diff: tjzeeman@carrington:~$ diff /chroot/ia32-sid/root/winetools.orig /chroot/ia32-sid/usr/bin/winetools 2568c2568 < if [ $WINEVER -lt 20040914 ] || [ $WINEVER -gt 20050111 ]; then --- > if [ "$WINEVER" -lt "20040914" ] || [ "$WINEVER" -gt "20050111" ]; then Unfortunately I s...
2010 May 24
2
excluding on element from a list
Dear List, I am making a list of all the files in a folder and I want to exclude one file called "proj.current". This is the 31st file in a folder. Currently I use the command: tdirs <- list.files(pattern="proj.")[-31] However I would like to exclude it based on its name and not the position. Any advice would be useful. Thanks, Daisy Daisy Englert Duursma Room
2010 Aug 25
4
degree C symbol in a function
Hello help, I have changed around some graphing code and made it into a function. Previously they y label of the axis was inserted as text in its own layout box. text(1,1, expression(~degree~C),cex=1) This worked great and resulted in the symbol for degree. In the function, I have changed it so: text(1,1,paste(b_unit),cex=1) and b_unit<-expression(~degree~C) This now inserts ~degree~C