search for: fnd

Displaying 20 results from an estimated 20 matches for "fnd".

Did you mean: and
2007 Feb 22
3
How to print a double quote
Can anyone tell me how to get R to include a double quote in the middle of a character string? For example, the following code is close: > fnd<-"Open fnd 'test'" > cat(fnd) Open fnd 'test'> > But instead of Open fnd 'test' I need: Open fnd "test". Difference seems minor, but I am writing batch files for another program to read in and it has to have the double...
2013 Apr 09
4
quotes in cat() within function
...located in directory", directory, sep=" ") The output R prints is The file Data labels is located in directory /home/mylaptop/ But I want "Data labels" and "/home/mylaptop/" to be in quotation marks. I find examples using "\", such as cat("Open fnd \"test\"") But in my case "test" is an argument. Thank you Daniel [[alternative HTML version deleted]]
2011 Jan 12
2
aggredating date data
I tried a date by date forecast of a time series and it seems to be too wild. How can I aggregate the date into weeks or months as required? Thanks. The input looks like ID datadate("YYYY-MM-DD") value_for_day -- ----- ------- -- ------ -------- and I want to be able to change it to ID dataweek value_for_week or
2009 Dec 04
2
two questions about ssh tunneling
if I: ssh -fND localhost:6000 somebody at 192.168.56.5 -p PORTNUMBER from computer "A" to computer "B" [B = 192.168.56.5] then I can set the SOCKS proxy for e.g.: Firefox to use "localhost:6000" on computer "A". Ok. I can surf the web through "B". But: - Ca...
2016 Feb 21
5
Database left unlocked by Tcl bindings
...bound as a Tcl extension. What happens is that fcntl with F_SETLK fails to get the lock, but reports success. If anyone is using the Tcl bindings you might need to be aware of this. Has anyone seen this with the Tcl (or any other) bindings? (Or indeed in any other context?) Thanks, Eric -- ms fnd in a lbry
2009 Oct 31
1
how to set default proxy?
hi I know that I could use ssh tunneling: ssh -fND localhost:6000 SOMEBODY at 192.168.56.5 -p PORTNUMBER to surf the web through another machines internet connection -> I just need to set Firefox to use proxy 6000. But: How can I set that on the client side, to e.g.: ping through the machine with openssh-server? Not just setting Firefox...
2016 Feb 24
4
Database left unlocked by Tcl bindings
...l presumably avoid whatever is > going on here. But the OFD locks were added in Linux 3.15, so your > kernel isn't quite new enough. Yes, I saw that, and it is good, but my chances of moving up soon are not good. And I would like to get to the bottom of this anyway. Thanx, Eric -- ms fnd in a lbry
2002 May 13
3
lib/debug.c:reopen_logs(349)
...else new_dbf = sys_fopen( debugf, "w" ); if (!new_dbf) æ log_overflow = True; DEBUG(0, ("Unable to open new log file %s: %sØn", debugf, strerror(errno))); log_overflow = False; Which means that sys_fopen fails. I cant fnd any documentation on sys_fopen. When users try to access shares where they would need their group-access rights to get in there is a 'access denied' message. In the log (log level 3) it shows: Æ2002/05/13 12:52:49, 3Å smbd/sec_ctx.c:set_sec_ctx(319) 1 user groups: 661 This is wrong...
2016 Feb 22
3
Database left unlocked by Tcl bindings
...in my script, and then added a destroy. No way of telling if it was first-to-close or last-to-close that was being lost. > There's some discussion of this in the Tcl bindings docs (section > "Destructors"): > > https://xapian.org/docs/bindings/tcl8/ Thanx, Eric -- ms fnd in a lbry
2016 Feb 25
2
Database left unlocked by Tcl bindings
...is should fail (and does for me) like so: > > terminate called after throwing an instance of 'Xapian::DatabaseLockError' > Aborted Got exactly that. Finally, it appears that it does work with Tcl 8.5 (actually a tclkit, but does not work with an 8.6 tclkit). Thanx, Eric -- ms fnd in a lbry
2016 Feb 27
2
Database left unlocked by Tcl bindings
....4 now, and it too has the problem. However with the very new Tcl 8.6.5rc2 it works! I still intend to try to find out what the problem was, but I can use the 8.5 tclkit for what I was doing when this all started, and then move to 8.6.5 when it becomes a real release. Thanx very much, Eric -- ms fnd in a lbry
2016 Feb 22
0
execl
...The sequence is definitely: open fork lock execl with the file showing up in lsof as 5w after the open, staying through the fork, changing to 5ww with the lock, and back to 5w with the execl. Which isn't supposed to happen according to any docs I can find. Thanx, Eric -- ms fnd in a lbry
2016 Mar 01
0
Database left unlocked by Tcl bindings
...corner cases: * fork + exec being expected to need to preserve a file lock. * early creation of a notifier thread expected to be without undesirable side-effects Anyway, the answer is to use Tcl versions as above, or to use Xapian/kernel combinations where OFD locks are available. Eric -- ms fnd in a lbry
2013 Jul 17
1
glmnet on Autopilot
Dear List, I'm running simulations using the glmnet package. I need to use an 'automated' method for model selection at each iteration of the simulation. The cv.glmnet function in the same package is handy for that purpose. However, in my simulation I have p >> N, and in some cases the selected model from cv.glmet is essentially shrinking all coefficients to zero. In this case,
2008 Jul 24
0
Errno::EBADF Send an Email in Rails using GMail
Hi, would someone please help me. I have been desperatley trying to fnd out for the last two days why the following code is not working. Any ideas. I''m running Instant Rails 1.4 / Rails version 1.2.5 / Ruby version 1.8.5 (i386-mswin32) / RubyGems version 1.1.1 / Action Mailer version 1.3.5 / Windows XP. Here is a description of my emailing application: in...
2003 Sep 24
6
Festival Problems
I am trying to use festival (latest version 1.4.3) I have downloaded all the files needed and patched it with the provided diff. festival does work and does tts fine. but when I call Festival either from an extention or an AGI script, I get this in my asterisk messages log, but no sound on the channels (H323 or SIP) - they (the clients) just say "trying" and then hangup... Sep 24
2010 Jan 09
4
parsing pdf files
I have a pdf file that I would like to parse into R: http://www.williams.edu/Registrar/geninfo/faculty.pdf For now, I open the file in Acrobat by hand, then save it "as text" and then use readLines(). That works fine but a) I am concerned that some information may be lost and b) I may be doing this a lot, so I would rather have R grab the information from the pdf file directly. So: is
2011 Apr 21
0
C source code question (Robustbase edition)
...t; sumq =: nl , new left[]\n"); #endif } else { /* sump < knew <= sumq */ found = TRUE; #ifdef DEBUG_qn REprintf("sump < knew <= sumq ---> FOUND\n"); #endif } } /* while */ if (found) return trial; else { #ifdef DEBUG_qn REprintf(".. not fnd -> new work[]"); #endif j = 0; for (i = 1; i < n; ++i) { for (jj = left[i]; jj <= right[i]; ++jj) { work[j] = y[i] - y[n - jj]; j++; }/* j will be = sum_{i=2}^n (right[i] - left[i] + 1)_{+} */ } #ifdef DEBUG_qn REprintf(" of length %d; knew-nl=%d\n", j, kn...
2007 Jun 24
2
matlab/gauss code in R
...ch in advance! > > Really neat package you've made. > > > > FYI, my plot command now looks like this: > > > > p = ggplot(y, aes(x=locus, y=Freq, fill=color)) > > p = p + geom_bar(position="fill") > > p = p + scale_fill_identity(labels=levels(y$Fnd), grob="tile", name="Fnd > > Results") > > p = p + coord_flip() > > > > And the data table is similar as before: > > > > > y > > Fnd locus Freq color > > 1 signeg DPB1 0.013071895 gray1 > > 2 neg DPB1...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...7PFwEQ~9)ZPR``a<~AD!nm*07dnFpEp|q-KF715mBd`Vw{f2P zj)_`HM0e?a+HX*cZXf+rPx*K2QZFb at htN5M==|7Gc1dog3YJoJmGTrc$H`8|N?A>8 zBYTS!Y?AUfkpf$wNiLOA<c=iw#!`tG$^~u}y+nK||NT-A$lV_31fF(^`t3r_2$2~{ zMM`d>meT?EqaGX6<grJuA8Ppb>N2RU;1Ql|wxF&qVnp=mX&0J7WKt0$;D=%h at t$nf z0p<&JYy}dfndsQ-T_xJBIfQL!AZ(*hjBbUId4~MeXKa7 at 8R4(C&d_qeXzN|xm^>QJ z+`lnn?%yO#)Mgkxhb3#0-jXUs9VK<eCseo1UhI){>_o&Kq1Y{mm3%iK=Y6^*b+#6( zoh_xabxUU}ud|ia*(#R^x~r}1|6<o8zmJ7pZ5z8)c+bv(j$QQ-3F-vYsqCEhpiU*+ z)o;?XX at PpbZmF|}(`S{s61KnpfG&5nu_lwcX|C5vCI?j;*{@3F4Y+*spbi#x6;5CB zSPxb0ZZZ^VvVW*...