search for: wser

Displaying 7 results from an estimated 7 matches for "wser".

Did you mean: user
2001 Oct 02
0
An example (was RE: file connection, while, readLines and bro wser)
...0 stu 0.72 0 lmn 0.80 0 R call: trycon("C:/home/data.txt", 4) Error in while (length(readln <- readLines(f.con, 1)) > 0) { : missing value where logical needed The "if(...) next" line seems to be the source of the problem, but the error message and the behaviour of browser() really throw me off. Can you shed some light on this? (I have a hunch that I'm missing something *real* obvious...) Regards, Andy > -----Original Message----- > From: Robert Gentleman [mailto:rgentlem at jimmy.harvard.edu] > Sent: Tuesday, October 02, 2001 9:50 AM > To: Liaw...
2012 Feb 13
11
stale records with integration testing?
Hi, I was writing an integration test for my user signup form (with capybara), and found that my test was failing due to a validation error: "email is already taken". I''m a bit confused because I thought when I run "rspec spec/some_spec.rb", the test database would be wiped clear? Is that not the case? Patrick J. Collins http://collinatorstudios.com
2009 Jan 20
1
Problem with FAME
...from the manual: > seriesA <- tis(1:24,start=c(2002,1),freq =12) > seriesB <- tis(1:104, start = c(2002, 1), tif = "wmonday") > documentation(seriesB) <- paste("Line", 1:4, "of seriesB documentation") > putfame(c(mser = "seriesA", wser = "seriesB"), db = "myfame.db") Warning message: In system(paste("test -r", path), intern = F) : test nicht gefunden In the CRAN webpage I read that ? The fame package can access Fame time series databases (but also requires a Fame backend). The tis package pr...
2001 Oct 02
1
problem with while loop with next (was RE: file connection, w hile, readLines and browser)
...help! Cheers, Andy > -----Original Message----- > From: Liaw, Andy [mailto:andy_liaw at merck.com] > Sent: Tuesday, October 02, 2001 10:30 AM > To: 'Robert Gentleman' > Cc: r-help (E-mail) > Subject: An example (was RE: [R] file connection, while, readLines and > bro wser) > > > Prof. Gentleman (and R-help), > > Here's an example of what didn't work. I still don't understand why. > > Function: > trycon <- function(file, n) { > f.con <- file(file, open="rt") > on.exit(close(f.con)) > i <- 0 &g...
2001 Oct 02
1
RE: problem with while loop with next
...dy > -----Original Message----- > From: Luke Tierney [mailto:luke at nokomis.stat.umn.edu] > Sent: Tuesday, October 02, 2001 3:36 PM > To: Liaw, Andy > Cc: r-help (E-mail) > Subject: Re: problem with while loop with next (was RE: [R] file > connection, w hile, readLines and browser) > > > It does look like `next' does not work properly with while loops in > versions through 1.3.1. We did some reorganizing of looping internals > in the development branch and that fixed the problem, so it will be > fixed in 1.4. > > luke > > On Tue, Oct 02...
2009 Aug 10
3
A bit more on the Firefox 3.5.issue
I set up a CentOS desktop computer for my brother and his kids. When Firefox 3.5 came out he decided to download and install it like he would Windows (he doesn't yet understand the repository system). He's been telling me that it works fine, even though I was skeptical due to my experience with Firefox 3.5 on CentOS 5.3. Then today, he says, "Oh, by the way, the CentOS computer has
2008 Jul 17
2
nested calls, variable scope
Below is an example of a problem I encounter repeatedly when I write functions. A call works at the command line, but it does not work inside a function, even when I have made sure that all required variables are available within the function. The only way I know to solve it is to make the required variable global, which of course is dangerous. What is the elegant or appropriate way to solve