search for: townsend

Displaying 20 results from an estimated 41 matches for "townsend".

Did you mean: downend
2009 Jun 10
2
Vista + R = *!!?@
Hello People of R, Is there any way that I can get R to function properly using Vista. I get very strange output using lmer, as in no p-values. Is there ANY way I can fix this. Thank you for your time, John Townsend-Mehler PhD Candidate Department of Zoology Michigan State University
2002 Mar 21
2
bug in ssh-keyscan.c --
...thing. My personal approach converts the internal static variable to a global variable and allows the user cleanup function (fatal_callback) to clear it if desired. Other than kludginess, it should not affect the other executables and it will work with both static and dynamic linking. -- Paul Townsend (aab at purdue.edu) p.s., The first part of the patch is fluff so that I can tell which key is currently being processed. PT =-=-=-=-=-= --- ssh-keyscan.c.orig Mon Mar 4 20:54:53 2002 +++ ssh-keyscan.c Wed Mar 20 21:35:08 2002 @@ -538,7 +538,11 @@ confree(s); return; } - fprintf(s...
2018 May 08
0
Average of results coming from B=100 repetitions (looping)
...list() for (i in 1:10) lst[i] <- i mean(lst) # does not work The documentation for mean, ?mean, says that it is looking for a numeric or logical vector. To convert your list to a numeric vector you could unlist() it. mean(unlist(lst)) Hope this is helpful, Dan -- Daniel Nordlund Port Townsend, WA USA
2018 Feb 02
0
command line fails
...r" I don't know how rscript handles the '\' character (i.e. as an escape or not) so I changed the '\' to '/' just to be safe. And note, the program pathname and the file being passed need to be quoted separately. Hope this helps, Dan -- Daniel Nordlund Port Townsend, WA USA
2018 Feb 14
0
How to turn off warnings about class name conflicts
...inimal, self-contained, reproducible code. > I tried your example (in a clean session) under R-3.4.3 from CRAN and Microsoft R Open 3.4.3.0 and did not get the message you are getting. I suspect you have something in your workspace that is causing the problem. Dan -- Daniel Nordlund Port Townsend, WA USA
2006 Jun 01
3
Newbie: HABTM problems
I''m new to RoR and trying to make a HABTM relationship work. I have no problems with displaying the fields (after I pumped the data into MySQL manually outside of RoR), but when I try to edit a record, it =does= save the changes in the primary record, but =not= the join table. When I look in the development log, I see the update to the main table, but nothing about the join
2018 Feb 14
2
How to turn off warnings about class name conflicts
Hi, I am using two packages (quantmod and FRAPO) Quantmod and FRAPO both have a class names "zoo" R is displaying the following warning when I manipulate an object of class zoo: Found more than one class "zoo" in cache; using the first, from namespace 'quantmod' Also defined by ?FRAPO? The warning is displayed every time I manipulate a zoo object and becomes pretty
2018 Feb 02
4
command line fails
Hi - Think this is quick help. Not sure how to trap what is causing my simple script to run fine in R, but fail immediately when called from rscript. I can put all sorts of traps in the script itself, but when called from the command line the r window simply flashes and closes. There's probably a way to find out why rscript is failing, but I don't know it and can't seem to find it
2018 May 22
0
Using tryCatch in a for loop
...an error and SlopeDiff is not created. You need to correct these problems, and any others, so that your code runs correctly when there are no data problems. Then you can worry about trapping errors in the case where there are data problems. Hope this is helpful, Dan -- Daniel Nordlund Port Townsend, WA USA
2018 May 08
4
Average of results coming from B=100 repetitions (looping)
Dear R-experts, Here below the reproducible example. I am trying to get the average of the 100 results coming from the "lst" function. I have tried lst$mean and mean(lst). It does not work. Any help would be highly appreciated. #################### ?## R script for getting MedAe and MedAeSQ from HBR model on Testing data install.packages("robustbase") install.packages(
2006 Jun 08
0
RE: Rails Digest, Vol 21, Issue 160
> From: Thomas Townsend <tlt@vwg.com> > Subject: [Rails] adding a child record > Here''s a super-newbie question.... How do I go about adding > child records? > > I have a table called ''accounts'' to which I want to add > invoices (an account can have many invoices). I h...
2009 Sep 15
0
trouble installing qvalue package
...usr/X11R6/lib/libX11.6.dylib Referenced from: /Library/Frameworks/R.framework/Versions/2.9/Resources/library/tcltk/libs/i386/tcltk.so Reason: image not found Error : .onLoad failed in 'loadNamespace' for 'tcltk' Error: package 'tcltk' could not be loaded > -- Sheena Townsend PhD Candidate University of Otago Zoology Department 340 Great King Street P.O.Box 56 Dunedin New Zealand Phone: (64) (03) 64 3 479 7986 Fax: (64) (03) 64 3 479 7584 [[alternative HTML version deleted]]
2001 Feb 21
0
Private key files closed twice --
...in the rsa2 and ssh2 routines except that the ssh2 routine converts the file descriptor into a streams pointer. The following patch continues to allow the two routines to do their own closing but moves the `close(fd)' in "load_private_key" into the default position only. -- Paul Townsend (aab at purdue.edu) =-=-=-=-=-= --- authfile.c.orig Thu Feb 8 21:11:24 2001 +++ authfile.c Tue Feb 20 19:27:20 2001 @@ -446,6 +446,7 @@ fp = fdopen(fd, "r"); if (fp == NULL) { error("fdopen failed"); + close(fd); return 0; } pk = PEM_read_PrivateKey(fp, NULL, NU...
2001 Dec 11
0
Server problem - Temporary directory set wrong?
...(SMBtconX) eclass=2 ecode=6 [2001/12/11 11:50:17, 3] smbd/error.c:error_packet(143) error string = Permission denied Hopefully someone out there can let me know how to change what directory samba tries to use for whatever it is doing. Thanks in advance... Dave ---------------------- Mr. Dave Townsend Research Engineer Brass Bullet Ltd Pemchurch Chambers 30-32 Cradock Street Swansea SA1 3EP Phone: +44(1792) 417227 Fax: +44(8700) 558729 Website: www.brass-bullet.co.uk
2018 May 22
0
Bootstrap and average median squared error
...tau = 0.5, data = d) > ???? ypred <- predict(fit) > ???? y <- d$crp > ???? median(y - ypred)^2 > } since the OP is looking for the "median squared error", shouldn't the final line of the function be median((y - ypred)^2) Dan -- Daniel Nordlund Port Townsend, WA USA
2018 May 22
4
Using tryCatch in a for loop
Hi Bert, Thank you for the quick response!? In its current?state?the code?prints three lines that say "warning". What I was expecting is that I would?get?a matrix with 4 columns, 1. column names (from the original data, ex. Lake1) 2. breakpoint year 3. slope 4. slope difference from the first to the?second segment of the segmented regression. Each row in the matrix would be the results
2005 May 31
0
[Bug 2758] New: "File exists" error using options -b and --backup-dir with device files.
...with device files. Product: rsync Version: 2.6.4 Platform: All OS/Version: AIX Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: jonathan.townsend@telus.com QAContact: rsync-qa@samba.org Problem: rsync does not check for exisitence of device file (in backup-dir) before trying to recreate it with mknod using options -b and --backup-dir. Backups all have the following errors when device files are updated rsync: mknod "/dev/pts...
2018 May 22
2
Bootstrap and average median squared error
I forgot, you should also set.seed() before calling boot() to make the results reproducible. Rui Barradas On 5/22/2018 10:00 AM, Rui Barradas wrote: > Hello, > > If you want to bootstrap a statistic, I suggest you use base package boot. > You would need the data in a data.frame, see how you could do it. > > > library(boot) > > bootMedianSE <- function(data,
2008 Oct 10
1
xen 2.6.26 on amd64 console troubles
I just installed xen-linux-system-2.6.26-1-xen-amd64 2.6.26-7 on a freshly installed Debian Lenny AMD64 system, and when I create a Debian Lenny DomU with xen-tools I cannot attach to a console nor log in with SSH. When running # xm create -c test.cfg the system starts booting, but it seems to "freeze" after the kernel has booted. Googling a bit, shows that I seem to have the problem
2018 May 22
2
Using tryCatch in a for loop
...an error and SlopeDiff is not created. You need to correct these problems, and any others, so that your code runs correctly when there are no data problems.? Then you can worry about trapping errors in the case where there are data problems. Hope this is helpful, Dan -- Daniel Nordlund Port Townsend, WA? USA