search for: 99s

Displaying 10 results from an estimated 10 matches for "99s".

Did you mean: 99
2008 Jul 15
3
Melt (reshape) question
...(reshape) PopDens$Latitude <- rownames PopDens.long <- melt(PopDens, id.var = "Latitude", na.rm = TRUE) names(PopDens.long) <- c("Latitude", "Longitude", "PopDensity") head(PopDens.long) Am I right in thinking that this *should* also remove the -99s (NA values)? Because at present, the lower end ot the file looks like this: > tail(PopDens.long) Latitude Longitude PopDensity 232658 -87.25 V720 -99 232659 -87.75 V720 -99 232660 -88.25 V720 -99 232661 -88.75 V720 -99 232662 -89....
2010 Jan 13
0
No subject
...a presentation on one display, while allo= wing an audience to watch the presentation on a second display or projector. Due to display mirroring, the external monitor could have black borders dur= ing mirroring, depending on the supported timings between the two displays and = on the monitor=E2=80=99s selection algotithm. Both displays show full-sized im= ages only when the display resolution for the second monitor is set to the first display=E2=80=99s native resolution: 1440x900 on the 17-inch display and 10= 24x768 on the 15-inch display. The external monitor supports user-selectable display...
2008 Apr 22
0
No subject
I=E2=80=99m gonna close that one as NOTABUG, since we try to be bug-for-bug compatible with Adobe=E2=80=99s Flash Player. And if Adobe says #FFF is blu= e, then it is blue. If you want standards compliance, don=E2=80=99t use Flash=E2=80=A6 --=20 Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=3Demail ------- You are receiving this mail because: ------- You are the QA contact for the bu...
2008 Nov 07
1
two kind of Hosmer and Lemeshow’s test
...Df = g - 2, "P(>Chi)" = P) } I want to know how can i use the another method which is not use the probability of success. i want to know how can i revise above program to achieve an objective. -- View this message in context: http://www.nabble.com/two-kind-of-Hosmer-and-Lemeshow%E2%80%99s-test-tp20380578p20380578.html Sent from the R help mailing list archive at Nabble.com.
2011 Jun 03
0
Rack Middleware support for Rails 2.0.2? If not what is the alternative to implement similar functionality in Rails 2.0.2..
Hello all, I am using Rails 2.0.2 and Ruby 1.8.7 and I need to make use of rack middleware for integrating an ajax file upload plugin(https:// github.com/valums/file-uploader) with paperclip in Rails( As given in this tutorial:- http://mooooooooooo.wordpress.com/2010/12/03/paperclip-valums%E2%80%99s-file-uploader-and-middleware-continued/). I have referred to the rack-middleware Railscast by Ryan Bates(http:// railscasts.com/episodes/151-rack-middleware). I accordingly tried out a `rake middleware` command in my config env. to check out the middleware available wrt my rails app. I go the fol...
2007 Nov 09
2
RubyConf 2007 - Thoughts?
Hi, For those of you that attended RubyConf 2007, what were your impressions? Any more thoughts on JRuby, Rubinius, IronRuby or Wuby? Regards, Dan
2010 Dec 05
1
[PATCH 4/5][REPOST][BTRFS-PROGS] Avoid to scan cdrom and floppy
...23, proc_partitions)){ + fprintf(stderr, "Unable to read ''/proc/partitions'' for scanning\n"); + fclose(proc_partitions); + return -ENOENT; + } + + strcpy(fullpath,"/dev/"); + while(fgets(buf, 1023, proc_partitions)) { + + i = sscanf(buf," %*d %*d %*d %99s", fullpath+5); + ret = lstat(fullpath, &st); + if (ret < 0) { + fprintf(stderr, "failed to stat %s\n", fullpath); + continue; + } + if (!S_ISBLK(st.st_mode)) { + continue; + } + if (checklist && !test_device(fullpath)){ + continue; + } + fd = open(fullp...
2003 May 03
0
Storing rsync secrets in LDAP
...dap support: unset \"ldap auth usergroup\" +for anonymous access\n"); + return NULL; + } + return ""; + } +#endif gen_challenge(addr, challenge); @@ -234,24 +341,39 @@ if (sscanf(line,"%99s %29s", user, pass) != 2) { return NULL; } - - users = strdup(users); - if (!users) return NULL; - for (tok=strtok(users," ,\t"); tok; tok = strtok(NULL," ,\t")) { - if (fnmatch(tok, user, 0) == 0) break; +#ifd...
2008 Jan 22
6
recoding one variable into another - but differently for different cases
Hello, I have 2 variables in my sample Data: Data$A and Data$B Variable Data$A can assume values: 1, 2, 3, and 4. Variable Data$B identifies my cases and can assume values: 1 and 2. I need to recode my variable Data$A into a new variable Data$new such that: People who are Data[Data$B %in% 1, ] are recoded like this: Value on Data$A Value on Data$new 1 +1 2
2003 Feb 12
2
rsync & ldap authentication
Hi, I'm trying to get rsync 2.5.6 to authenticate users via openldap-2.0.23. I was looking through the mailing list archives and found a patch for rsync-2.4.6 that does this for me. I was just wondering if this is still valid, or if there has been a new patch or new implementation that has superceded this patch. Any help would be great. The message I am referring to is as follows: