search for: commonest

Displaying 13 results from an estimated 13 matches for "commonest".

2004 Dec 06
2
Which FM should beginners R? A suggestion.
We've recently had a thread on beginners and FAQs and the like. I decided that it might be a good idea to offer a short list of on-line help pages that beginners should read. Goals: - the list short be short (I think mine is too long) - many of the commonest questions should find answers there (fairish) - I should have found the pages helpful myself (no question about that) - it's a beginning R topic list, not a beginning statistics topic list You can find my first draft at http://www.cs.otago.ac.nz/staffpriv/ok/R-help.txt I think something...
2006 Apr 28
2
Device 0 (vif) could nto be connected: backend device not found
Hi, I have seen many posts regarding this but have not found the soultion. So please cna someone shed some light on this Thanks - padma I get this error when I do try to create a domU guest (xen 3.0.0, 2.6.12.6). The vif is set to vif = [ '' mac=aa:00:00:00:11, bridge=xenbr0'' ] and a "brctl show" shows xenbr0 8000,fefffffff interfaces vif0.0 peth0 Xend.log
2000 Feb 28
1
Parser Bug Somewhere.... (PR#460)
Full_Name: John P Cavanaugh Version: .99 OS: linux Submission from: (NULL) (24.116.10.99) dataset$ema12 <- EMA (dataset$Close,12) dataset$ema26 <- EMA (dataset$Close,26) dataset$MACD_fast <- dataset$ema26 - dataset$ema12 dataset$MACD_slow <- EMA(dataset$MACD_fast,9) dataset$MACD_hist <- dataset$MACD_fast - dataset$MACD_slow # This line doesnt work!!! But... if I does work if I
2007 May 29
0
Correct usage of nchar(): precautionary change for R 2.6.0
Remember that nchar() returns by default the number of *bytes* and not the number of characters. I've recently spotted many cases in which nchar() has been used with substr() which works in characters; this can lead to incorrect results. (This seems the commonest use of nchar() in packages.) There were two reasons why nchar() was left defaulting to bytes when we allowed MBCSs in R: 1) Many of the uses are of the form if(nchar(x)) or if(nchar(x)==0) or even if nchar(x) != 0. Computing the length of a string is an inefficient way to find out if it is n...
2006 Apr 28
0
Re: SOLVED: Device 0 (vif) could nto be connected: backend device not found
...n many posts regarding this but have not found the soultion. So > please cna someone shed some light on this > > Thanks > > - padma > > The usual reason is that the networking set up has failed > at some point and exited prematurely (e.g. from network-bridge > script). Commonest problem is that brctl wasn''t found, > but there are a few others. > > Unfortunately, no logs go into xend-debug.log. This seems > to be something that changed a while ago (will look into it). > > What usually happens is that things might appear to be > kosher when th...
2003 Nov 01
1
which TDM to use? DID line from telco with no dial tone and no voltage
as my first project with *, i would like to replace our old neax2400(sds) with an * server. i've got an X100p and a TDM400 on hand already. for the CO lines, the X100p works ok with fxsks signaling though there are still strange things happening every now and again but more testing is on the way. my real big problem is the DID lines which our telcos call DDI lines; (incoming calls only) i
2010 Mar 03
1
Change current plot window size. Or - saving/loading current device plotting history
Hello dear R-help members, Very soon I am to give a lecture on R. And in that lecture I intend to move between: par(mfrow = c(1,1)) to par(mfrow = c(1,2)) back and forth. I anticipate this will damage the image proportions and will force me to resize the window. So far I have found it is possible to close the window and then reopen it (bigger/smaller) by using: dev.off()dev.new(width=5,
2009 Oct 22
1
WXRuby crashes on Debian SID
Hello, When I install wxruby using the gem on my Debian Sid, I cannot make it work : $ ruby /usr/lib/ruby/gems/1.8/gems/wxruby-2.0.1-x86-linux/samples/minimal/minimal.rb /usr/lib/ruby/gems/1.8/gems/wxruby-2.0.1-x86-linux/lib/wxruby2.so: /usr/lib/ruby/gems/1.8/gems/wxruby-2.0.1-x86-linux/lib/wxruby2.so: symbol _ZN9wxListBox13EnsureVisibleEi, version WXU_2.8 not defined in file
2002 Nov 15
2
Why no colSDs etc
Hi people, If there is a fn "colMeans" why isn't there a "colSDs" etc Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia Mobile: +61:0411-185-652 Fax: +61:2:8923-5363 E-mail: pri at chu.com.au -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2011 Apr 17
3
timezone issue
hey list! having a slightly odd time issue on one host... can I get some help with this? This is the current time from a working system: Sun Apr 17 00:28:18 EDT 2011 However from the problem system this is the time: Sat Apr 16 20:30:01 EDT 2011 I have set the time zone as such: lrwxrwxrwx 1 root root 23 Apr 16 19:41 /etc/localtime -> /usr/share/zoneinfo/EST But when I run ntpdate
2008 Jan 25
2
"undefined symbol" with wxRuby gem on Fedora Core 5...
I''m trying to test on platforms other than Windows, starting with my Fedora Core 5 box. I''m getting this error when trying to run the Hello World script (http://wxruby.rubyforge.org/wiki/wiki.pl?Hello_World): undefined symbol: gtk_widget_is_composited - /usr/local/lib/ruby/gems/1.8/gems/wxruby-1.9.4-x86- linux/lib/wxruby2.so (LoadError) This happens with both the
2006 Sep 22
2
Merge problem
Hello all, I have read as many merge issues as I possibly could tonight and although I presume this is a small error, I have not found the solution to my problem. I'm trying to merge two data sets: dat0 and TransTable. As you can see below, dat0 has 8000 rows, whereas TransTable has 47296 rows. I would expect when I merge the two data sets, with all.x=F, and all.y=F, that the
2012 May 11
14
What is the point of using :format in routes?
Today I had a strange behavior that made me suspect of jQuery at first, but then it happened that I''ve faced two gotchas, one from CoffeeScript and one from Rails itself. I have something like this: routes.rb post ''/fields/:id.:format'' => ''fields#show'', as: :field, constraints: {id: /\d+/} post ''/fields/remove/:id''